summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/bureaucracy/helper/fieldtime.php
blob: 164e71f08fcc7dd11be4d56ab50d7376fba912db (plain)
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
<?php
/**
 * Class helper_plugin_bureaucracy_fieldtime
 *
 * A time in the format (h)h:mm(:ss)
 */
class helper_plugin_bureaucracy_fieldtime extends helper_plugin_bureaucracy_fieldtextbox {
    /**
     * Arguments:
     *  - cmd
     *  - label
     *  - ^ (optional)
     *
     * @param array $args The tokenized definition, only split at spaces
     */
    public function initialize($args) {
        parent::initialize($args);
        $attr = array(
            'class' => 'timefield edit',
            'maxlength'=>'8'
        );
        if(!isset($this->opt['optional'])) {
            $attr['required'] = 'required';
            $attr['class'] .= ' required';
        }
        $this->tpl = form_makeTextField('@@NAME@@', '@@VALUE@@', '@@DISPLAY@@', '@@ID@@', '@@CLASS@@', $attr);
    }

    /**
     * Validate field input
     *
     * @throws Exception when empty or wrong time format
     */
    protected function _validate() {
        parent::_validate();

        $value = $this->getParam('value');
        if (!is_null($value) && !preg_match('/^\d{1,2}:\d{2}(?::\d{2})?$/', $value)) {
            throw new Exception(sprintf($this->getLang('e_time'),hsc($this->getParam('display'))));
        }
    }
}