You are here

function notifications_theme in Notifications 6.2

Same name and namespace in other branches
  1. 6.4 notifications.module \notifications_theme()
  2. 6 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 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_digest_short_body' => array(
      'arguments' => array(
        'text' => NULL,
        'list' => NULL,
      ),
      'file' => 'notifications.cron.inc',
    ),
    'notifications_digest_short_line' => array(
      'arguments' => array(
        'line' => NULL,
        'group' => NULL,
      ),
      'file' => 'notifications.cron.inc',
    ),
    'notifications_digest_long_body' => array(
      'arguments' => array(
        'header' => NULL,
        'content' => NULL,
        'footer' => NULL,
      ),
      'file' => 'notifications.cron.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',
    ),
  );
}