| 1 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/*
|
|
|
4 |
* This file is part of the symfony package.
|
|
|
5 |
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
6 |
*
|
|
|
7 |
* For the full copyright and license information, please view the LICENSE
|
|
|
8 |
* file that was distributed with this source code.
|
|
|
9 |
*/
|
|
|
10 |
|
|
|
11 |
/**
|
|
|
12 |
* sfWidgetFormI18nChoiceCountry represents a country choice widget.
|
|
|
13 |
*
|
|
|
14 |
* @package symfony
|
|
|
15 |
* @subpackage widget
|
|
|
16 |
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
17 |
* @version SVN: $Id: sfWidgetFormI18nChoiceCountry.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
|
|
|
18 |
*/
|
|
|
19 |
class sfWidgetFormI18nChoiceCountry extends sfWidgetFormChoice
|
|
|
20 |
{
|
|
|
21 |
/**
|
|
|
22 |
* Constructor.
|
|
|
23 |
*
|
|
|
24 |
* Available options:
|
|
|
25 |
*
|
|
|
26 |
* * culture: The culture to use for internationalized strings
|
|
|
27 |
* * countries: An array of country codes to use (ISO 3166)
|
|
|
28 |
* * add_empty: Whether to add a first empty value or not (false by default)
|
|
|
29 |
* If the option is not a Boolean, the value will be used as the text value
|
|
|
30 |
*
|
|
|
31 |
* @param array $options An array of options
|
|
|
32 |
* @param array $attributes An array of default HTML attributes
|
|
|
33 |
*
|
|
|
34 |
* @see sfWidgetFormChoice
|
|
|
35 |
*/
|
|
|
36 |
protected function configure($options = array(), $attributes = array())
|
|
|
37 |
{
|
|
|
38 |
parent::configure($options, $attributes);
|
|
|
39 |
|
|
|
40 |
$this->addOption('culture');
|
|
|
41 |
$this->addOption('countries');
|
|
|
42 |
$this->addOption('add_empty', false);
|
|
|
43 |
|
|
|
44 |
// populate choices with all countries
|
|
|
45 |
$culture = isset($options['culture']) ? $options['culture'] : 'en';
|
|
|
46 |
|
|
|
47 |
$countries = sfCultureInfo::getInstance($culture)->getCountries(isset($options['countries']) ? $options['countries'] : null);
|
|
|
48 |
|
|
|
49 |
$addEmpty = isset($options['add_empty']) ? $options['add_empty'] : false;
|
|
|
50 |
if (false !== $addEmpty)
|
|
|
51 |
{
|
|
|
52 |
$countries = array_merge(array('' => true === $addEmpty ? '' : $addEmpty), $countries);
|
|
|
53 |
}
|
|
|
54 |
|
|
|
55 |
$this->setOption('choices', $countries);
|
|
|
56 |
}
|
|
|
57 |
}
|