function drupalchat_notifications_drupalchat_subpanel in DrupalChat 6.2
Same name and namespace in other branches
- 7.2 drupalchat_notifications/drupalchat_notifications.module \drupalchat_notifications_drupalchat_subpanel()
- 7 drupalchat_notifications/drupalchat_notifications.module \drupalchat_notifications_drupalchat_subpanel()
@file Module code for DrupalChat Notifications.
File
- drupalchat_notifications/
drupalchat_notifications.module, line 10 - Module code for DrupalChat Notifications.
Code
function drupalchat_notifications_drupalchat_subpanel() {
return array(
'notifications' => array(
'name' => 'notifications',
'icon' => theme('image', drupal_get_path('module', 'drupalchat_notifications') . '/icon.png', NULL, NULL, array(
'class' => 'icon',
)),
'text' => t('Notifications'),
'contents' => theme('drupalchat_notifications_contents'),
),
);
}