You are here

function notifications_theme in Notifications 6.4

Same name and namespace in other branches
  1. 6 notifications.module \notifications_theme()
  2. 6.2 notifications.module \notifications_theme()
  3. 6.3 notifications.module \notifications_theme()
  4. 7 notifications.module \notifications_theme()

Implementation of hook_theme()

File

./notifications.module, line 1936
Notifications module

Code

function notifications_theme() {
  return array(
    '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(
        'elements' => NULL,
      ),
      'file' => 'notifications.pages.inc',
    ),
    'notifications_subscription_fields' => array(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'notifications.pages.inc',
    ),
  );
}