function drupalchat_help in DrupalChat 7
Same name and namespace in other branches
- 8 drupalchat.module \drupalchat_help()
- 6.2 drupalchat.module \drupalchat_help()
- 6 drupalchat.module \drupalchat_help()
- 7.2 drupalchat.module \drupalchat_help()
Implements hook_help().
File
- ./
drupalchat.module, line 103 - Module code for DrupalChat.
Code
function drupalchat_help($path, $arg) {
if ($path == 'admin/help#drupalchat') {
return '<p>' . t('Provides one on one chat.') . '</p>';
}
}