You are here

function date_repeat_field_theme in Date 7.3

Same name and namespace in other branches
  1. 8 date_repeat_field/date_repeat_field.module \date_repeat_field_theme()
  2. 7.2 date_repeat_field/date_repeat_field.module \date_repeat_field_theme()

Implements hook_theme().

File

date_repeat_field/date_repeat_field.module, line 27
Creates the option of Repeating Date fields and manages Date Repeat fields.

Code

function date_repeat_field_theme() {
  $themes = array(
    'date_repeat_display' => array(
      'variables' => array(
        'field' => NULL,
        'item' => NULL,
        'entity_type' => NULL,
        'entity' => NULL,
        'dates' => NULL,
      ),
      'function' => 'theme_date_repeat_display',
    ),
  );
  return $themes;
}