123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?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.
- */
- /**
- * sfWidgetFormSelectCheckbox represents an array of checkboxes.
- *
- * @package symfony
- * @subpackage widget
- * @author Fabien Potencier <fabien.potencier@symfony-project.com>
- * @version SVN: $Id: sfWidgetFormSelectCheckbox.class.php 13324 2008-11-24 22:53:58Z FabianLange $
- */
- class sfWidgetFormSelectCheckbox extends sfWidgetForm
- {
- /**
- * Constructor.
- *
- * Available options:
- *
- * * choices: An array of possible choices (required)
- * * label_separator: The separator to use between the input checkbox and the label
- * * class: The class to use for the main <ul> tag
- * * separator: The separator to use between each input checkbox
- * * formatter: A callable to call to format the checkbox choices
- * The formatter callable receives the widget and the array of inputs as arguments
- * * template: The template to use when grouping option in groups (%group% %options%)
- *
- * @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('class', 'checkbox_list');
- $this->addOption('label_separator', ' ');
- $this->addOption('separator', "\n");
- $this->addOption('formatter', array($this, 'formatter'));
- $this->addOption('template', '%group% %options%');
- }
- /**
- * @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 ('[]' != substr($name, -2))
- {
- $name .= '[]';
- }
- if (is_null($value))
- {
- $value = array();
- }
- $choices = $this->getOption('choices');
- if ($choices instanceof sfCallable)
- {
- $choices = $choices->call();
- }
- // with groups?
- if (count($choices) && is_array(next($choices)))
- {
- $parts = array();
- foreach ($choices as $key => $option)
- {
- $parts[] = strtr($this->getOption('template'), array('%group%' => $key, '%options%' => $this->formatChoices($name, $value, $option, $attributes)));
- }
- return implode("\n", $parts);
- }
- else
- {
- return $this->formatChoices($name, $value, $choices, $attributes);;
- }
- }
- protected function formatChoices($name, $value, $choices, $attributes)
- {
- $inputs = array();
- foreach ($choices as $key => $option)
- {
- $baseAttributes = array(
- 'name' => $name,
- 'type' => 'checkbox',
- 'value' => self::escapeOnce($key),
- 'id' => $id = $this->generateId($name, self::escapeOnce($key)),
- );
- if ((is_array($value) && in_array(strval($key), $value)) || strval($key) == strval($value))
- {
- $baseAttributes['checked'] = 'checked';
- }
- $inputs[] = array(
- 'input' => $this->renderTag('input', array_merge($baseAttributes, $attributes)),
- 'label' => $this->renderContentTag('label', $option, array('for' => $id)),
- );
- }
- return call_user_func($this->getOption('formatter'), $this, $inputs);
- }
- public function formatter($widget, $inputs)
- {
- $rows = array();
- foreach ($inputs as $input)
- {
- $rows[] = $this->renderContentTag('li', $input['input'].$this->getOption('label_separator').$input['label']);
- }
- return $this->renderContentTag('ul', implode($this->getOption('separator'), $rows), array('class' => $this->getOption('class')));
- }
- 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));
- }
- }
- }
- }
|