function drupalchat_page_alter in DrupalChat 7
Same name and namespace in other branches
- 7.2 drupalchat.module \drupalchat_page_alter()
File
- ./
drupalchat.module, line 149 - Module code for DrupalChat.
Code
function drupalchat_page_alter(&$page) {
global $user;
if (drupalchat_verify_access() && variable_get('drupalchat_polling_method', DRUPALCHAT_AJAX) != DRUPALCHAT_COMMERCIAL) {
//return theme('drupalchat');
//echo theme('drupalchat');
//if (variable_get('dev_query', 0)) {
$page['page_bottom']['devel'] = array(
'#type' => 'markup',
'#markup' => '<div style="clear:both;">' . theme('drupalchat') . '</div>',
);
//}
}
}