123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?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.
- */
- /**
- * sfWidgetFormChoice represents a choice widget.
- *
- * @package symfony
- * @subpackage widget
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfWidgetFormChoice.class.php 12409 2008-10-29 14:06:02Z fabien $
- */
- class sfWidgetFormChoice extends sfWidgetForm
- {
- /**
- * Constructor.
- *
- * Available options:
- *
- * * choices: An array of possible choices (required)
- * * multiple: true if the select tag must allow multiple selections
- * * expanded: true to display an expanded widget
- * if expanded is false, then the widget will be a select
- * if expanded is true and multiple is false, then the widget will be a list of radio
- * if expanded is true and multiple is true, then the widget will be a list of checkbox
- * * renderer_class: The class to use instead of the default ones
- * * renderer_options: The options to pass to the renderer constructor
- * * renderer: A renderer widget (overrides the expanded and renderer_options options)
- * The choices option must be: new sfCallable($thisWidgetInstance, 'getChoices')
- * @param array $options An array of options
- * @param array $attributes An array of default HTML attributes
- *
- * @see sfWidgetForm
- */
- protected function configure($options = array(), $attributes = array())
- {
- $this->addRequiredOption('choices');
- $this->addOption('multiple', false);
- $this->addOption('expanded', false);
- $this->addOption('renderer_class', false);
- $this->addOption('renderer_options', array());
- $this->addOption('renderer', false);
- }
- /**
- * @param string $name The element name
- * @param string $value The value selected in this widget
- * @param array $attributes An array of HTML attributes to be merged with the default HTML attributes
- * @param array $errors An array of errors for the field
- *
- * @return string An HTML tag string
- *
- * @see sfWidgetForm
- */
- public function render($name, $value = null, $attributes = array(), $errors = array())
- {
- if ($this->getOption('multiple'))
- {
- $attributes['multiple'] = 'multiple';
- if ('[]' != substr($name, -2))
- {
- $name .= '[]';
- }
- }
- if (!$this->getOption('renderer') && !$this->getOption('renderer_class') && $this->getOption('expanded'))
- {
- unset($attributes['multiple']);
- }
- return $this->getRenderer()->render($name, $value, $attributes, $errors);
- }
- /**
- * Gets the stylesheet paths associated with the widget.
- *
- * @return array An array of stylesheet paths
- */
- public function getStylesheets()
- {
- return $this->getRenderer()->getStylesheets();
- }
- /**
- * Gets the JavaScript paths associated with the widget.
- *
- * @return array An array of JavaScript paths
- */
- public function getJavaScripts()
- {
- return $this->getRenderer()->getJavaScripts();
- }
- public function getChoices()
- {
- $choices = $this->getOption('choices');
- if ($choices instanceof sfCallable)
- {
- $choices = $choices->call();
- }
- return $choices;
- }
- public function getRenderer()
- {
- if ($this->getOption('renderer'))
- {
- return $this->getOption('renderer');
- }
- if (!$class = $this->getOption('renderer_class'))
- {
- $type = !$this->getOption('expanded') ? '' : ($this->getOption('multiple') ? 'checkbox' : 'radio');
- $class = sprintf('sfWidgetFormSelect%s', ucfirst($type));
- }
- return new $class(array_merge(array('choices' => new sfCallable(array($this, 'getChoices'))), $this->options['renderer_options']), $this->getAttributes());
- }
- public function __clone()
- {
- if ($this->getOption('choices') instanceof sfCallable)
- {
- $callable = $this->getOption('choices')->getCallable();
- if (is_array($callable))
- {
- $callable[0] = $this;
- $this->setOption('choices', new sfCallable($callable));
- }
- }
- }
- }
|