You are here

function date_theme in Date 6

Same name and namespace in other branches
  1. 8 date.module \date_theme()
  2. 6.2 date/date.module \date_theme()
  3. 7.3 date.module \date_theme()
  4. 7 date.module \date_theme()
  5. 7.2 date.module \date_theme()

Implementation of hook_theme().

File

date/date.module, line 136
Defines date/time field types for the Content Construction Kit (CCK).

Code

function date_theme() {
  return array(
    'date_combo' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'date_text_parts' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'date' => array(
      'arguments' => array(
        'element' => NULL,
      ),
    ),
    'date_formatter_default' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_long' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_medium' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_short' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_timestamp' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_iso' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_ical' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_feed' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_display_combination',
    ),
    'date_formatter_format_interval' => array(
      'arguments' => array(
        'element' => NULL,
      ),
      'function' => 'theme_date_format_interval',
    ),
  );
}