function rocket_chat_admin_page in Rocket.Chat 7
Same name and namespace in other branches
- 7.2 rocket_chat.module \rocket_chat_admin_page()
Admin Page Render.
Return value
array Drupal render Array for the admin page.
1 string reference to 'rocket_chat_admin_page'
- rocket_chat_menu in ./
rocket_chat.module - Implements hook_menu().
File
- ./
rocket_chat.module, line 48 - Rocket.Chat Livechat Module.
Code
function rocket_chat_admin_page() {
// Make sure the Included class File is loaded.
module_load_include('class.inc', 'rocket_chat', 'RocketChat');
return RocketChat::renderAdminPage();
}