12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /*
- * This file is part of the symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- /**
- * sfValidatorBoolean validates a boolean. It also converts the input value to a valid boolean.
- *
- * @package symfony
- * @subpackage validator
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfValidatorBoolean.class.php 10306 2008-07-15 22:12:35Z Carl.Vondrick $
- */
- class sfValidatorBoolean extends sfValidatorBase
- {
- /**
- * Configures the current validator.
- *
- * Available options:
- *
- * * true_values: The list of true values
- * * false_values: The list of false values
- *
- * @param array $options An array of options
- * @param array $messages An array of error messages
- *
- * @see sfValidatorBase
- */
- protected function configure($options = array(), $messages = array())
- {
- $this->addOption('true_values', array('true', 't', 'yes', 'y', 'on', '1'));
- $this->addOption('false_values', array('false', 'f', 'no', 'n', 'off', '0'));
- $this->setOption('required', false);
- $this->setOption('empty_value', false);
- }
- /**
- * @see sfValidatorBase
- */
- protected function doClean($value)
- {
- if (in_array($value, $this->getOption('true_values')))
- {
- return true;
- }
- if (in_array($value, $this->getOption('false_values')))
- {
- return false;
- }
- throw new sfValidatorError($this, 'invalid', array('value' => $value));
- }
- }
|