123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- /**
- * Validates a numeric value is between the min and the max.
- *
- * @author Ironpilot
- * @copyright Copywrite (c) 2011, STAPLE CODE
- *
- * This file is part of the STAPLE Framework.
- *
- * The STAPLE Framework is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by the
- * Free Software Foundation, either version 3 of the License, or (at your option)
- * any later version.
- *
- * The STAPLE Framework 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 Lesser General Public License for
- * more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with the STAPLE Framework. If not, see <http://www.gnu.org/licenses/>.
- */
- class Staple_Form_Validate_Between extends Staple_Form_Validator
- {
- const DEFAULT_ERROR = 'Field is not between minimum and maximum values.';
- protected $min = 0;
- protected $max;
-
- /**
- * Mathematical between function. Requires a maximum value and a minimum value.
- * Comparison occurs with integer math.
- *
- * @param int $max
- * @param int $min
- */
- public function __construct($limit1, $limit2, $usermsg = NULL)
- {
- $this->min = (int)$limit1;
- if(isset($limit2))
- {
- if($limit2 >= $limit1)
- {
- $this->max = (int)$limit2;
- }
- else
- {
- $this->min = (int)$limit2;
- $this->max = (int)$limit1;
- }
- }
- parent::__construct($usermsg);
- }
-
- /**
- * @return the $min
- */
- public function getMin()
- {
- return $this->min;
- }
- /**
- * @return the $max
- */
- public function getMax()
- {
- return $this->max;
- }
- /**
- * @param int $min
- */
- public function setMin($min)
- {
- $this->min = $min;
- return $this;
- }
- /**
- * @param int $max
- */
- public function setMax($max)
- {
- $this->max = $max;
- return $this;
- }
- /**
- * Check for Data Length Validity.
- * @param mixed $data
- * @return boolean
- */
- public function check($data)
- {
- $data = (int)$data;
- if($data <= $this->max && $data >= $this->min)
- {
- return true;
- }
- else
- {
- $this->addError();
- }
- return false;
- }
-
- /**
- * (non-PHPdoc)
- * @see Staple_Form_Validator::clientJQuery()
- */
- public function clientJQuery($fieldType, Staple_Form_Element $field)
- {
- switch ($fieldType)
- {
- case 'Staple_Form_SelectElement':
- $fieldid = "#{$field->getId()}";
- $valstring = "#{$field->getId()} option:selected";
- break;
- case 'Staple_Form_RadioGroup':
- $fieldid = "input:radio[name={$field->getName()}]";
- $valstring = "input:radio[name={$field->getName()}]:checked";
- break;
- case 'Staple_Form_CheckboxElement':
- return '';
- break;
- default:
- $fieldid = "#{$field->getId()}";
- $valstring = $fieldid;
- }
-
- $script = "\t//Between Validator for ".addslashes($field->getLabel())."\n";
- $script .= "\tif($('$valstring').val() > {$this->getMax()} || $('$valstring').val() < {$this->getMin()})\n";
- $script .= "\t{\n";
- $script .= "\t\terrors.push('".addslashes($field->getLabel()).": \\n{$this->clientJSError()}\\n');\n";
- $script .= "\t\t$('$fieldid').addClass('form_error');\n";
- $script .= "\t}\n";
- $script .= "\telse {\n";
- $script .= "\t\t$('$fieldid').removeClass('form_error');\n";
- $script .= "\t}\n";
- return $script;
- }
- }
- ?>
|