function drupalchat_notifications_drupalchat_subpanel in DrupalChat 7
Same name and namespace in other branches
- 6.2 drupalchat_notifications/drupalchat_notifications.module \drupalchat_notifications_drupalchat_subpanel()
- 7.2 drupalchat_notifications/drupalchat_notifications.module \drupalchat_notifications_drupalchat_subpanel()
@todo Please document this function.
See also
File
- drupalchat_notifications/
drupalchat_notifications.module, line 15 - Module code for DrupalChat Notifications.
Code
function drupalchat_notifications_drupalchat_subpanel() {
//JON COMMENTS
return array(
'notifications' => array(
'name' => 'notifications',
'icon' => theme('image', array(
'path' => drupal_get_path('module', 'drupalchat_notifications') . '/icon.png',
'width' => NULL,
'height' => NULL,
'alt' => array(
'class' => 'icon',
),
)),
'text' => t('Notifications'),
'contents' => theme('drupalchat_notifications_contents'),
),
);
}