You are here

function drupalchat_help in DrupalChat 6

Same name and namespace in other branches
  1. 8 drupalchat.module \drupalchat_help()
  2. 6.2 drupalchat.module \drupalchat_help()
  3. 7.2 drupalchat.module \drupalchat_help()
  4. 7 drupalchat.module \drupalchat_help()

Implementation of hook_help().

File

./drupalchat.module, line 23
Module code for DrupalChat.

Code

function drupalchat_help($path, $arg) {
  if ($path == 'admin/help#drupalchat') {
    return '<p>' . t('Provides one on one chat.') . '</p>';
  }
}