123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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.
- */
- /**
- * sfValidatorI18nChoiceCountry validates than the value is a valid country.
- *
- * @package symfony
- * @subpackage validator
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfValidatorI18nChoiceCountry.class.php 11700 2008-09-21 10:53:44Z fabien $
- */
- class sfValidatorI18nChoiceCountry extends sfValidatorChoice
- {
- /**
- * Configures the current validator.
- *
- * Available options:
- *
- * * countries: An array of country codes to use (ISO 3166)
- *
- * @param array $options An array of options
- * @param array $messages An array of error messages
- *
- * @see sfValidatorChoice
- */
- protected function configure($options = array(), $messages = array())
- {
- parent::configure($options, $messages);
- // culture is deprecated
- $this->addOption('culture');
- $this->addOption('countries');
- // populate choices with all countries
- $countries = array_keys(sfCultureInfo::getInstance()->getCountries());
- // restrict countries to a sub-set
- if (isset($options['countries']))
- {
- if ($problems = array_diff($options['countries'], $countries))
- {
- throw new InvalidArgumentException(sprintf('The following countries do not exist: %s.', implode(', ', $problems)));
- }
- $countries = $options['countries'];
- }
- sort($countries);
- $this->setOption('choices', $countries);
- }
- }
|