You are here

function ddblock_help in Dynamic display block 6

Same name and namespace in other branches
  1. 7 ddblock.module \ddblock_help()

Implementation of 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 Easing plugin') . '</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;
  }
}