Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 35
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
tao_helpers_form_elements_xhtml_Calendar
0.00% covered (danger)
0.00%
0 / 35
0.00% covered (danger)
0.00%
0 / 3
110
0.00% covered (danger)
0.00%
0 / 1
 render
0.00% covered (danger)
0.00%
0 / 22
0.00% covered (danger)
0.00%
0 / 1
20
 getEvaluatedValue
0.00% covered (danger)
0.00%
0 / 9
0.00% covered (danger)
0.00%
0 / 1
20
 getDateOutput
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung
19 *                         (under the project TAO-TRANSFER);
20 *               2009-2012 (update and modification) Public Research Centre Henri Tudor
21 *                         (under the project TAO-SUSTAIN & TAO-DEV);
22 *
23 */
24
25use oat\tao\helpers\form\elements\xhtml\XhtmlRenderingTrait;
26
27/**
28 * The XHTML implementation of the Calendar Widget.
29 *
30 * @author Bertrand Chevrier, <bertrand@taotesting.com>
31 * @package tao
32 */
33class tao_helpers_form_elements_xhtml_Calendar extends tao_helpers_form_elements_Calendar
34{
35    use XhtmlRenderingTrait;
36
37    /**
38     * Rendering of the XHTML implementation of the Calendar Widget.
39     *
40     * @author Bertrand Chevrier, <bertrand@taotesting.com>
41     * @return string The XHTML stream of the Calendar Widget.
42     */
43    public function render()
44    {
45        $returnValue = $this->renderLabel();
46
47        $uniqueId = uniqid('calendar_');
48        $elementId = tao_helpers_Display::TextCleaner($this->getDescription()) . '_' . $uniqueId;
49
50        if ($this->isDisabled()) {
51            return $returnValue . sprintf(
52                '<input type="text" 
53            name="%s"
54            id="%s"
55            data-testid="%s"
56            value="%s"
57            %s
58            >',
59                $this->name,
60                $elementId,
61                $this->getDescription(),
62                $this->getDateOutput(),
63                $this->renderAttributes()
64            );
65        }
66
67        if (! isset($this->attributes['size'])) {
68            $this->attributes['size'] = 20;
69        }
70
71        $returnValue .= "<div class='form-elt-container'><input class='datepicker-input' type='text' "
72            . "name='{$this->name}' id='$elementId";
73        $returnValue .= $this->renderAttributes();
74
75        if (! empty($this->value)) {
76            $returnValue .= ' value="' . $this->getDateOutput() . '"';
77        }
78
79        $returnValue .= ' /></div>';
80
81        return $returnValue;
82    }
83
84    public function getEvaluatedValue()
85    {
86        $returnValue = $this->getRawValue();
87
88        if (is_numeric($returnValue)) {
89            return $returnValue;
90        }
91
92        if (!empty($returnValue)) {
93            $tz = new DateTimeZone(common_session_SessionManager::getSession()->getTimeZone());
94            try {
95                $returnValue = (string) (new DateTime($returnValue, $tz))->getTimestamp();
96            } catch (Exception $e) {
97                $returnValue = '';
98            }
99        }
100
101        return $returnValue;
102    }
103
104    private function getDateOutput(): string
105    {
106        $timeStamp = $this->getEvaluatedValue();
107
108        return !empty($timeStamp) ?
109            _dh(tao_helpers_Date::displayeDate($timeStamp, tao_helpers_Date::FORMAT_DATEPICKER)) :
110            '';
111    }
112}