12345678910111213141516171819202122232425262728293031 |
- <?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.
- */
- /**
- * sfValidatorEmail validates emails.
- *
- * @package symfony
- * @subpackage validator
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfValidatorEmail.class.php 8835 2008-05-07 16:50:28Z nicolas $
- */
- class sfValidatorEmail extends sfValidatorRegex
- {
- /**
- * @see sfValidatorRegex
- */
- protected function configure($options = array(), $messages = array())
- {
- parent::configure($options, $messages);
- $this->setOption('pattern', '/^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i');
- }
- }
|