function notifications_ui_theme in Notifications 6.2
Same name and namespace in other branches
- 6.4 notifications_ui/notifications_ui.module \notifications_ui_theme()
- 6 notifications_ui/notifications_ui.module \notifications_ui_theme()
- 6.3 notifications_ui/notifications_ui.module \notifications_ui_theme()
- 7 notifications_ui/notifications_ui.module \notifications_ui_theme()
Implementation of hook_theme()
File
- notifications_ui/
notifications_ui.module, line 670 - User Interface for subscriptions modules
Code
function notifications_ui_theme() {
return array(
'notifications_ui_subscription_types' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'notifications_ui.pages.inc',
),
'notifications_ui_content_types' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'notifications_ui.pages.inc',
),
'notifications_ui_add_list' => array(
'arguments' => array(
'content' => NULL,
),
'file' => 'notifications_ui.pages.inc',
),
);
}