You are here

function shoutbox_help in Shoutbox 7

Same name and namespace in other branches
  1. 5 shoutbox.module \shoutbox_help()
  2. 6 shoutbox.module \shoutbox_help()
  3. 7.2 shoutbox.module \shoutbox_help()

Implements hook_help().

File

./shoutbox.module, line 24
Shoutbox module displays a block for users to create short messages for the whole site. Uses AHAH to update the database and display content.

Code

function shoutbox_help($path, $arg) {
  switch ($path) {
    case 'admin/help#shoutbox':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The shoutbox help is under construction. Please visit <a href="@page_url">shoutbox module</a> page for more info.', array(
        '@page_url' => 'https://drupal.org/project/shoutbox',
      )) . '</p>';
      return $output;
  }
}