function notifications_theme in Notifications 7
Same name and namespace in other branches
- 6.4 notifications.module \notifications_theme()
- 6 notifications.module \notifications_theme()
- 6.2 notifications.module \notifications_theme()
- 6.3 notifications.module \notifications_theme()
Implementation of hook_theme()
File
- ./
notifications.module, line 1227 - Notifications module
Code
function notifications_theme() {
return array(
'notifications_table_form' => array(
'render element' => 'form',
'file' => 'notifications.pages.inc',
),
'notifications_subscription_fields' => array(
'render element' => 'element',
'file' => 'notifications.pages.inc',
),
'notifications_admin_table_form' => array(
'render element' => 'form',
'file' => 'notifications.admin.inc',
),
'notifications_admin_subscription_list' => array(
'variables' => array(
'sids' => NULL,
'limit' => 10,
),
'file' => 'notifications.admin.inc',
),
);
}