You are here

function drupalchat_page_bottom in DrupalChat 8

File

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

Code

function drupalchat_page_bottom(array &$page_bottom) {
  if (drupalchatController::drupalchat_verify_access() && \Drupal::config('drupalchat.settings')
    ->get('drupalchat_polling_method') != DRUPALCHAT_COMMERCIAL) {
    $drupalchat = array(
      '#theme' => 'drupalchat',
    );
    $page_bottom['drupalchat'] = [
      '#theme' => 'drupalchat',
    ];
  }
}