Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
The Views comments thread module is a very simple module providing the ability to select a specific thread for a comment view. It also provides a comment id validator.
The PagePeeker Screenshots module uses the PagePeeker.com service to fetch and display thumbnails of web pages.
The module works very smoothly with the Link module. Simply go to the display management page and select the "Pagepeeker thumbnail" format. Same formatter works in Views as well. There is an additional option to choose the screenshot image size.
The module provides function theme_pagepeeker_image() to request and display web pages screenshots. The theme function could be executed as follows:
<?php
$options = array(
'url' => 'http://drupal.org', //URL of the site
'size' => 'l', // size of the generated screenshot.
'image_options' => array(
'attributes' => array('class' => 'my-class') // image "class" attribute
),
'url_options' => array(
'attributes' => array(
'class' => array('class1 class2'), // link "class" attributes
'title' => 'this is the URL title',
'target' => '_blank'
)
)
);
echo theme_pagepeeker_image($options);
?>
Message Notify provides a method for sending a message via a notifier plugin. Message Notify comes with plugins for email and SMS and may be extended to other transport mechanisms as required. Message Notify is part of the message stack, a suite of modules that provide a framework for messaging and notifications.
Development of this theme has been abandoned in favour of the Omega start theme. If you need this project namespace for another project please get in touch.