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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2012-2016 FusionDirectory
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 St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*! \brief This class allow to handle easily an Integer LDAP attribute
*
*/
class IntAttribute extends Attribute
{
protected $min;
protected $max;
protected $step = 1;
protected $example;
/*! \brief The constructor of IntAttribute
*
* \param string $label The label to show for this attribute
* \param string $description A more detailed description for the attribute
* \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
* \param boolean $required Is this attribute mandatory or not
* \param int $min The minimum value it can take
* \param int $max The maximum value it can take
* \param mixed $defaultValue The default value for this attribute
* \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
*/
function __construct ($label, $description, $ldapName, $required, $min, $max, $defaultValue = "", $acl = "")
{
parent::__construct($label, $description, $ldapName, $required, $defaultValue, $acl);
$this->min = ($min === FALSE ? FALSE : $this->inputValue($min));
$this->max = ($max === FALSE ? FALSE : $this->inputValue($max));
$this->example = "";
if (($min !== FALSE) && ($max !== FALSE)) {
$this->example = sprintf(_("An integer between %d and %d"), $min, $max);
} elseif ($min !== FALSE) {
$this->example = sprintf(_("An integer larger than %d"), $min);
} elseif ($max !== FALSE) {
$this->example = sprintf(_("An integer smaller than %d"), $max);
}
}
function setStep ($step)
{
$this->step = $step;
}
function inputValue ($value)
{
if (!$this->isRequired() && empty($value) && !is_numeric($value)) {
// value is "" or array()
return "";
}
if (is_object($this->plugin) && $this->plugin->is_template) {
return $value;
} else {
return intval($value);
}
}
function check ()
{
$error = parent::check();
if (!empty($error)) {
return $error;
} else {
if (!is_numeric($this->value) && (!empty($this->value) || $this->isRequired())) {
return msgPool::invalid($this->getLabel(), $this->value, "/./", $this->example);
}
if ((($this->min !== FALSE) && ($this->value < $this->min))
|| (($this->max !== FALSE) && ($this->value > $this->max))) {
return msgPool::invalid($this->getLabel(), $this->value, "/./", $this->example);
}
}
}
function renderFormInput ()
{
$id = $this->getHtmlId();
$attributes = array(
'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
);
if ($this->min !== FALSE) {
$attributes['min'] = $this->min;
}
if ($this->max !== FALSE) {
$attributes['max'] = $this->max;
}
if ($this->step !== FALSE) {
$attributes['step'] = $this->step;
}
if (!empty($this->managedAttributes)) {
$js = $this->managedAttributesJS();
$attributes['onChange'] = 'javascript:'.htmlentities($js, ENT_COMPAT, 'UTF-8');
}
$display = $this->renderInputField('number', $id, $attributes);
return $this->renderAcl($display);
}
function renderTemplateInput ()
{
$id = $this->getHtmlId();
$display = $this->renderInputField(
'text', $id,
array(
'value' => '{literal}'.htmlentities($this->getValue(), ENT_COMPAT, 'UTF-8').'{/literal}'
)
);
return $this->renderAcl($display);
}
}
/*! \brief This class allow to handle easily an Float LDAP attribute
*
*/
class FloatAttribute extends IntAttribute
{
/*! \brief The constructor of FloatAttribute
*
* By default a FloatAttribute will have a step of 0.1, use setStep in order to change it.
* You can use setStep(FALSE) to disable it.
*
* \param string $label The label to show for this attribute
* \param string $description A more detailed description for the attribute
* \param string $ldapName The name of the attribute in the LDAP (If it's not in the ldap, still provide a unique name)
* \param boolean $required Is this attribute mandatory or not
* \param float $min The minimum value it can take
* \param float $max The maximum value it can take
* \param mixed $defaultValue The default value for this attribute
* \param string $acl The name of the acl for this attribute if he does not use its own. (Leave empty if he should use its own like most attributes do)
*/
function __construct ($label, $description, $ldapName, $required, $min, $max, $defaultValue = 0.0, $acl = "")
{
parent::__construct($label, $description, $ldapName, $required, $min, $max, $defaultValue, $acl);
$this->step = 0.01;
$this->example = "";
if (($min !== FALSE) && ($max !== FALSE)) {
$this->example = sprintf(_("A float between %f and %f"), $min, $max);
} elseif ($min !== FALSE) {
$this->example = sprintf(_("A float larger than %f"), $min);
} elseif ($max !== FALSE) {
$this->example = sprintf(_("A float smaller than %f"), $max);
}
}
function inputValue ($value)
{
if (!$this->isRequired() && empty($value) && !is_numeric($value)) {
// value is "" or array()
return "";
}
if (is_object($this->plugin) && $this->plugin->is_template) {
return $value;
} else {
return floatval($value);
}
}
}
|