You are here

function shoutbox_help in Shoutbox 5

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

Describe the shoutbox module.

Parameters

$section: Which help screen is requested.

Return value

HTML fragment for help text.

File

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

Code

function shoutbox_help($section) {
  switch ($section) {
    case 'admin/build/modules#description':
      return t("This module enables you to display a shoutbox.");
  }
}