You are here

function drupalchat_theme in DrupalChat 7

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

Implements hook_theme().

7 string references to 'drupalchat_theme'
drupalchat_init in ./drupalchat.module
@todo Please document this function.
drupalchat_return_pic_url_any_user in ./drupalchat.module
drupalchat_settings_form in ./drupalchat.admin.inc
Callback for admin/settings/drupalchat.
drupalchat_uninstall in ./drupalchat.install
@todo Please document this function.
_drupalchat_buddylist_online in ./drupalchat.module

... See full list

File

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

Code

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