123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- /**
- * @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_Equal extends Staple_Form_Validator
- {
- const DEFAULT_ERROR = 'Data is not equal';
- protected $strict;
- protected $equal;
-
- public function __construct($equal, $strict = false, $usermsg = NULL)
- {
- $this->equal = $equal;
- $this->strict = (bool)$strict;
- parent::__construct($usermsg);
- }
- /**
- *
- * @param mixed $data
-
- * @return bool
-
- * @see Staple_Form_Validator::check()
- */
- public function check($data)
- {
- if($this->strict === true)
- {
- if($this->equal === $data)
- {
- return true;
- }
- else
- {
- $this->addError();
- }
- }
- else
- {
- if($this->equal == $data)
- {
- 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//Equal Validator for ".addslashes($field->getLabel())."\n";
- $script .= "\tif(!($('$valstring').val() == '".addslashes($this->equal)."'))\n\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;
- }
- }
- ?>
|