You are here

function talk_help in Talk 5

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

Implementation of hook_help().

File

./talk.module, line 12
Comments are displayed in a separate 'talk' tab, for node types you wish Made for Drupal 5.x

Code

function talk_help($section) {
  switch ($section) {
    case 'admin/help#talk':
      $output = '<p>' . t('The talk module gives you the option to display comments on a seperate tab. The option is per content type and can be set in the workflow options of a content type.') . '</p>';
      return $output;
  }
}