function drupalchat_ur_help in DrupalChat 6
Implementation of hook_help().
File
- ./
drupalchat_ur.module, line 11 - Provides integration with User Relationship.
Code
function drupalchat_ur_help() {
if ($path == 'admin/help#drupalchat') {
$help_text = 'Provides integration with User Relationships.';
return '<p>' . t($help_text) . '</p>';
}
}