You are here

function drupalchat_page_alter in DrupalChat 7.2

Same name and namespace in other branches
  1. 7 drupalchat.module \drupalchat_page_alter()

File

./drupalchat.module, line 171
Module code for DrupalChat.

Code

function drupalchat_page_alter(&$page) {
  global $user;
  if (drupalchat_verify_access() && check_plain(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>',
    );

    //}
  }
}