You are here

function rocket_chat_help in Rocket.Chat 7.2

Same name and namespace in other branches
  1. 8.2 rocket_chat.module \rocket_chat_help()
  2. 8 rocket_chat.module \rocket_chat_help()
  3. 7 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

\hook_help()

File

./rocket_chat.module, line 37
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', 'src/RocketChat');
  return RocketChat::renderHelpPage($path, $arg);
}