drupalchat_notifications.module in DrupalChat 7.2
Same filename and directory in other branches
Module code for DrupalChat Notifications.
File
drupalchat_notifications/drupalchat_notifications.moduleView source
<?php
/**
* @file
* Module code for DrupalChat Notifications.
*/
/**
* @todo Please document this function.
* @see http://drupal.org/node/1354
*/
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'),
),
);
}
/**
* Implements hook_theme().
*/
function drupalchat_notifications_theme() {
return array(
'drupalchat_notifications_contents' => array(),
);
}
/**
* @todo Please document this function.
* @see http://drupal.org/node/1354
*/
function theme_drupalchat_notifications_contents() {
return 'hey testing here';
}
Functions
Name | Description |
---|---|
drupalchat_notifications_drupalchat_subpanel | @todo Please document this function. |
drupalchat_notifications_theme | Implements hook_theme(). |
theme_drupalchat_notifications_contents | @todo Please document this function. |