1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85:
<?php
class FormFieldDateTime extends FormFieldDate
{
private $five_minutes_step = false;
public function __construct($id, $label, Date $value = null, array $field_options = array(), array $constraints = array())
{
parent::__construct($id, $label, $value, $field_options, $constraints);
$this->set_css_form_field_class('form-field-datetime');
}
public function display()
{
$template = parent::display();
$template->put_all(array(
'C_HOUR' => true,
'C_FIVE_MINUTES_STEP' => $this->five_minutes_step,
'HOURS' => $this->get_value() ? $this->get_value()->get_hours() : '0',
'MINUTES' => $this->get_value() ? $this->get_value()->get_minutes() : '00',
'L_AT' => LangLoader::get_message('at', 'main'),
'L_H' => LangLoader::get_message('unit.hour', 'date-common'),
'L_MN' => LangLoader::get_message('unit.minute', 'date-common')
));
return $template;
}
public function retrieve_value()
{
parent::retrieve_value();
$request = AppContext::get_request();
$date = $this->get_value();
if ($date !== null)
{
$date->set_minutes($request->get_int($this->get_html_id() . '_minutes', 0));
$date->set_hours($request->get_int($this->get_html_id() . '_hours', 0));
}
$this->set_value($date);
}
protected function compute_options(array &$field_options)
{
foreach ($field_options as $attribute => $value)
{
$attribute = TextHelper::strtolower($attribute);
switch ($attribute)
{
case 'five_minutes_step':
$this->five_minutes_step = (bool)$value;
unset($field_options['five_minutes_step']);
break;
}
}
parent::compute_options($field_options);
}
}
?>