You are here

function notifications_ui_theme in Notifications 7

Same name and namespace in other branches
  1. 6.4 notifications_ui/notifications_ui.module \notifications_ui_theme()
  2. 6 notifications_ui/notifications_ui.module \notifications_ui_theme()
  3. 6.2 notifications_ui/notifications_ui.module \notifications_ui_theme()
  4. 6.3 notifications_ui/notifications_ui.module \notifications_ui_theme()

Implementation of hook_theme()

File

notifications_ui/notifications_ui.module, line 396
User Interface for subscriptions modules

Code

function notifications_ui_theme() {
  return array(
    'notifications_ui_subscription_types' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'notifications_ui.admin.inc',
    ),
    'notifications_ui_content_types' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'file' => 'notifications_ui.admin.inc',
    ),
    'notifications_ui_add_list' => array(
      'arguments' => array(
        'content' => NULL,
      ),
      'file' => 'notifications_ui.admin.inc',
    ),
  );
}