function date_all_day_theme in Date 8
Same name and namespace in other branches
- 7.3 date_all_day/date_all_day.module \date_all_day_theme()
- 7.2 date_all_day/date_all_day.module \date_all_day_theme()
Implements hook_theme().
File
- date_all_day/
date_all_day.module, line 24 - 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;
}