1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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.
- */
- /**
- * sfValidatorChoice validates than the value is one of the expected values.
- *
- * @package symfony
- * @subpackage validator
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfValidatorChoice.class.php 11970 2008-10-06 06:28:40Z dwhittle $
- */
- class sfValidatorChoice extends sfValidatorBase
- {
- /**
- * Configures the current validator.
- *
- * Available options:
- *
- * * choices: An array of expected values (required)
- * * multiple: true if the select tag must allow multiple selections
- *
- * @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->addRequiredOption('choices');
- $this->addOption('multiple', false);
- }
- /**
- * @see sfValidatorBase
- */
- protected function doClean($value)
- {
- $choices = $this->getOption('choices');
- if ($choices instanceof sfCallable)
- {
- $choices = $choices->call();
- }
- if ($this->getOption('multiple'))
- {
- if (!is_array($value))
- {
- $value = array($value);
- }
- foreach ($value as $v)
- {
- if (!self::inChoices($v, $choices))
- {
- throw new sfValidatorError($this, 'invalid', array('value' => $v));
- }
- }
- }
- else
- {
- if (!self::inChoices($value, $choices))
- {
- throw new sfValidatorError($this, 'invalid', array('value' => $value));
- }
- }
- return $value;
- }
- /**
- * Checks if a value is part of given choices (see bug #4212)
- *
- * @param mixed $value The value to check
- * @param array $choices The array of available choices
- *
- * @return Boolean
- */
- static protected function inChoices($value, array $choices = array())
- {
- foreach ($choices as $choice)
- {
- if ((string) $choice == (string) $value)
- {
- return true;
- }
- }
- return false;
- }
- }
|