You are here

function headerimage_help in Header image 5

Same name and namespace in other branches
  1. 6 headerimage.module \headerimage_help()
  2. 7 headerimage.module \headerimage_help()

Implementation of hook_help

File

./headerimage.module, line 730
headerimage.module Conditionally display an node in a block.

Code

function headerimage_help($section) {
  switch ($section) {
    case 'admin/help#headerimage':
      $output = "<p>" . t('Header Image module allows you to to display an image on selected pages. It can display one image on the front page, a different one on the FAQ pages and yet an other on the about us all remaining pages.') . "</p>\n";
      $output .= "<p>" . t('Visibility of each image, included in a node, can be based on node id, path, taxonomy, book, node type or PHP code. Header Image uses an arbitrary node type.') . "</p>\n";
      $output .= "<p>" . t('Multiple images (nodes) can be displayed in one block, with each image having its own conditions. Using a weight per node the order of selection can be controlled.') . "</p>\n";
      $output .= "<p>" . t('For more information please read the configuration and customization handbook <a href="@headerimage">Header Image page</a>.', array(
        '@headerimage' => 'http://drupal.org/node/201426/',
      )) . "</p>\n";
      return $output;
  }
}