Classes

File builder/form/field/FormFieldDateTime.class.php

File builder/form/field/FormFieldDateTime.class.php

 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
/**
 * This class is able to retrieve a date and a hour (hours & minutes).
 * @package     Builder
 * @subpackage  Form\field
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Benoit SAUTEL <ben.popeye@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2018 11 19
 * @since       PHPBoost 3.0 - 2010 01 24
 * @contributor Julien BRISWALTER <j1.seth@phpboost.com>
 * @contributor Arnaud GENET <elenwii@phpboost.com>
 * @contributor Sebastien LARTIGUE <babsolune@phpboost.com>
*/

class FormFieldDateTime extends FormFieldDate
{
    /**
     * @var boolean
     */
    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');
    }

    /**
     * @return string The html code for the input.
     */
    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;
    }

    /**
     * {@inheritdoc}
     */
    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);
    }
}
?>