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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2019 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* Class to create a date textbox and calendar button.
*/
class CDateSelector extends CTag {
/**
* Default date format.
*
* @var string
*/
private $date_format = ZBX_FULL_DATE_TIME;
/**
* Set aria-required to textbox.
*
* @var bool
*/
private $is_required = false;
/**
* Placeholder for date textbox field.
*
* @var string
*/
private $placeholder = null;
/**
* Date and time set from view. Absolute (Y-m-d H:i:s) or relative time (now+1d, now/M ...).
*
* @var string
*/
private $value = null;
/**
* Enabled or disabled state of HTML element.
*
* @var bool
*/
private $enabled = true;
/**
* Create array with all inputs required for date selection and calendar.
*
* @param string $name Textbox field name and calendar name prefix.
* @param string $value Date and time set from view. Absolute (Y-m-d H:i:s) or relative time (now+1d, now/M ...).
*
* @return CDateSelector
*/
public function __construct($name = 'calendar', $value = null) {
parent::__construct('div', true);
$this->name = $name;
$this->value = $value;
}
/**
* Set or reset element 'aria-required' attribute to textbox (not the container).
*
* @param bool $is_required True to set field as required or false if field is not required.
*
* @return CDateSelector
*/
public function setAriaRequired($is_required = false) {
$this->is_required = $is_required;
return $this;
}
/**
* Set date format which calendar will return upon selection.
*
* @param string $format Date and time format. Usually Y-m-d H:i:s or Y-m-d H:i
*
* @return CDateSelector
*/
public function setDateFormat($format) {
$this->date_format = $format;
return $this;
}
/**
* Add placeholder to date textbox field.
*
* @param type $text Placeholder text for date textbox field.
*
* @return CDateSelector
*/
public function setPlaceholder($text) {
$this->placeholder = $text;
return $this;
}
/**
* Set enabled or disabled state to field.
*
* @param bool $enabled Field state.
*
* @return CDateSelector
*/
public function setEnabled($enabled) {
$this->enabled = $enabled;
return $this;
}
/**
* Gets string representation of date textbox and calendar button.
*
* @param bool $destroy
*
* @return string
*/
public function toString($destroy = true) {
$this
->addItem(
(new CTextBox($this->name, $this->value))
->setId($this->name)
->setAttribute('placeholder', $this->placeholder)
->setAriaRequired($this->is_required)
->setEnabled($this->enabled)
)
->addItem((new CButton($this->name.'_calendar'))
->addClass(ZBX_STYLE_ICON_CAL)
->setEnabled($this->enabled)
->onClick('toggleCalendar(this, "'.$this->name.'", "'.$this->date_format.'");'));
return parent::toString($destroy);
}
}
|