function talk_help in Talk 7
Same name and namespace in other branches
- 5 talk.module \talk_help()
- 6 talk.module \talk_help()
Implements hook_help().
File
- ./
talk.module, line 11 - Comments are displayed in a separate 'talk' tab, for node types you wish
Code
function talk_help($path, $arg) {
switch ($path) {
case 'admin/help#talk':
$output = '<p>' . t('The talk module gives you the option to display comments on a separate tab. The option is per content type and can be set in the workflow options of a content type. You can control the text that shows in the tab, title, and link to the "talk" page. You may use tokens in the patterns you set such as [node:title], [node:comment-count], or [node:comment-count-new].') . '</p>';
return $output;
}
}