Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
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
 * sfWidgetFormI18nChoiceCurrency represents a currency choice widget.
13
 *
14
 * @package    symfony
15
 * @subpackage widget
16
 * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
17
 * @version    SVN: $Id: sfWidgetFormI18nChoiceCurrency.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
18
 */
19
class sfWidgetFormI18nChoiceCurrency extends sfWidgetFormChoice
20
{
21
  /**
22
   * Constructor.
23
   *
24
   * Available options:
25
   *
26
   *  * culture:    The culture to use for internationalized strings
27
   *  * currencies: An array of currency codes to use (ISO 4217)
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('currencies');
42
    $this->addOption('add_empty', false);
43
 
44
    // populate choices with all currencies
45
    $culture = isset($options['culture']) ? $options['culture'] : 'en';
46
 
47
    $currencies = sfCultureInfo::getInstance($culture)->getCurrencies(isset($options['currencies']) ? $options['currencies'] : null);
48
 
49
    $addEmpty = isset($options['add_empty']) ? $options['add_empty'] : false;
50
    if (false !== $addEmpty)
51
    {
52
      $currencies = array_merge(array('' => true === $addEmpty ? '' : $addEmpty), $currencies);
53
    }
54
 
55
    $this->setOption('choices', $currencies);
56
  }
57
}