You are here

function drupalchat_help in DrupalChat 6.2

Same name and namespace in other branches
  1. 8 drupalchat.module \drupalchat_help()
  2. 6 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 31
Module code for DrupalChat.

Code

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