function ddblock_help in Dynamic display block 7
Same name and namespace in other branches
- 6 ddblock.module \ddblock_help()
Implements hook_help().
File
- ./
ddblock.module, line 12 - Enables your site to display dynamic content in a block.
Code
function ddblock_help($path, $arg) {
switch ($path) {
case "admin/help#ddblock":
$output = '<p>' . t('Display content dynamically in a block using the jQuery Cycle plugin and the jQuery UI plugin for easing') . '</p>';
$output .= '<p>' . t('There are three methods to provide content for a dynamic display block. An input folder with images, a node from a content type or by making an instance of any block to use the block content of the original block as content for the dynamic display block') . '</p>';
return $output;
}
}