You are here

function drupalchat_theme in DrupalChat 8

Same name and namespace in other branches
  1. 6.2 drupalchat.module \drupalchat_theme()
  2. 6 drupalchat.module \drupalchat_theme()
  3. 7.2 drupalchat.module \drupalchat_theme()
  4. 7 drupalchat.module \drupalchat_theme()

Implements hook_theme().

5 string references to 'drupalchat_theme'
drupalchatController::drupalchat_return_pic_url_any_user in src/Controller/drupalchatController.php
drupalchatController::_drupalchat_buddylist_online in src/Controller/drupalchatController.php
drupalchatController::_drupalchat_chat in src/Controller/drupalchatController.php
drupalchatSettingsForm::buildForm in src/Form/drupalchatSettingsForm.php
Form constructor.
drupalchat_page_attachments in ./drupalchat.module

File

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

Code

function drupalchat_theme() {
  return array(
    'drupalchat' => array(
      'variables' => array(
        'drupalchat' => NULL,
      ),
      'template' => 'drupalchat',
    ),
    'drupalchat_subpanel' => array(
      'variables' => array(
        'subpanel' => NULL,
      ),
      'template' => 'drupalchat-subpanel',
    ),
  );
}