function notifications_theme in Notifications 6.3
Same name and namespace in other branches
- 6.4 notifications.module \notifications_theme()
- 6 notifications.module \notifications_theme()
- 6.2 notifications.module \notifications_theme()
- 7 notifications.module \notifications_theme()
Implementation of hook_theme()
File
- ./
notifications.module, line 1850 - Notifications module
Code
function notifications_theme() {
return array(
'notifications_form_table' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'notifications.admin.inc',
),
'notifications_send_intervals_form' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'notifications.admin.inc',
),
'notifications_manage_subscriptions' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'notifications.manage.inc',
),
'notifications_subscriptions_filter_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'notifications.manage.inc',
),
'notifications_table_form' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'notifications.admin.inc',
),
'notifications_subscription_fields' => array(
'arguments' => array(
'form' => NULL,
),
'file' => 'notifications.pages.inc',
),
);
}