12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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.
- */
- /**
- * sfValidatorRegex validates a value with a regular expression.
- *
- * @package symfony
- * @subpackage validator
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfValidatorRegex.class.php 12081 2008-10-08 19:01:19Z fabien $
- */
- class sfValidatorRegex extends sfValidatorString
- {
- /**
- * Configures the current validator.
- *
- * Available options:
- *
- * * pattern: A regex pattern compatible with PCRE (required)
- *
- * @param array $options An array of options
- * @param array $messages An array of error messages
- *
- * @see sfValidatorString
- */
- protected function configure($options = array(), $messages = array())
- {
- parent::configure($options, $messages);
- $this->addRequiredOption('pattern');
- }
- /**
- * @see sfValidatorString
- */
- protected function doClean($value)
- {
- $clean = parent::doClean($value);
- if (!preg_match($this->getOption('pattern'), $clean))
- {
- throw new sfValidatorError($this, 'invalid', array('value' => $value));
- }
- return $clean;
- }
- }
|