function rocket_chat_help in Rocket.Chat 7
Same name and namespace in other branches
- 8.2 rocket_chat.module \rocket_chat_help()
- 8 rocket_chat.module \rocket_chat_help()
- 7.2 rocket_chat.module \rocket_chat_help()
Implements hook_help().
Parameters
$path: Path to render help for.
$arg: Arguments on this Path.
Return value
string
See also
File
- ./
rocket_chat.module, line 36 - Rocket.Chat Livechat Module.
Code
function rocket_chat_help($path, $arg) {
// Make sure the Included class File is loaded.
module_load_include('class.inc', 'rocket_chat', 'RocketChat');
return RocketChat::renderHelpPage($path, $arg);
}