You are here

function date_all_day_theme in Date 7.2

Same name and namespace in other branches
  1. 8 date_all_day/date_all_day.module \date_all_day_theme()
  2. 7.3 date_all_day/date_all_day.module \date_all_day_theme()

Implements hook_theme().

File

date_all_day/date_all_day.module, line 21
Adds All Day functionality to the Date field.

Code

function date_all_day_theme() {
  $themes = array(
    'date_all_day' => array(
      'variables' => array(
        'field' => NULL,
        'instance' => NULL,
        'which' => NULL,
        'date1' => NULL,
        'date2' => NULL,
        'format' => NULL,
        'entity_type' => NULL,
        'entity' => NULL,
        'view' => NULL,
      ),
    ),
    'date_all_day_label' => array(
      'variables' => array(),
    ),
  );
  return $themes;
}