Index: headerimage.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/headerimage/headerimage.module,v retrieving revision 1.13.2.7 diff -u -p -r1.13.2.7 headerimage.module --- headerimage.module 28 Jul 2008 09:31:00 -0000 1.13.2.7 +++ headerimage.module 29 Jul 2008 19:20:19 -0000 @@ -588,43 +588,67 @@ function headerimage_nodeapi(&$node, $op function headerimage_help($path, $arg) { switch ($path) { case 'admin/help#headerimage': - // Determine the status of the installation - $type_is_set = count(variable_get('headerimage_node_type', array())) ? t('(DONE)') : t('(TO DO)'); - $block_is_created = count(headerimage_get_blocks()) ? t('(DONE)') : t('(TO DO)'); + $output = "
". t('Header Image allows you to to display an image on selected pages. It can display one image at the front page, a different one at FAQ pages and yet another at all other pages.') ."
\n"; + $output .= "". t('Visibility of each image, included in a node, can be determined by node ID, path, taxonomy, book, node type or custom PHP code. Header Image uses an arbitrary node type.') ."
\n"; + $output .= "". 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.') ."
\n"; + $output .= "
';
+ }
+ $rows[] = array($icon, $message);
+ }
+ $output .= theme('table', $header, $rows);
+
- $output = "". t('Header Image allows you to to display an image on selected pages. It can display one image at the front page, a different one at FAQ pages and yet another at all other pages.') ."
\n"; - $output .= "". t('Visibility of each image, included in a node, can be determined by node ID, path, taxonomy, book, node type or custom PHP code. Header Image uses an arbitrary node type.') ."
\n"; - $output .= "". 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.') ."
\n"; - $output .= "". t('
". t('For more information please read the configuration and customization handbook on Header Image.', array('@handbook' => 'http://drupal.org/node/201426/')) ."
\n"; return $output; }