function drupalchat_theme in DrupalChat 7.2
Same name and namespace in other branches
- 8 drupalchat.module \drupalchat_theme()
- 6.2 drupalchat.module \drupalchat_theme()
- 6 drupalchat.module \drupalchat_theme()
- 7 drupalchat.module \drupalchat_theme()
Implements hook_theme().
6 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
File
- ./
drupalchat.module, line 191 - Module code for DrupalChat.
Code
function drupalchat_theme() {
return array(
'drupalchat' => array(
'template' => 'drupalchat',
),
'drupalchat_subpanel' => array(
'variables' => array(
'subpanel' => NULL,
),
'template' => 'drupalchat-subpanel',
),
);
}