new sfWidgetFormSelectRadio(
array('choices' => $images)));
以上将使每个选项呈现如下:
<input type="radio" name="name" value="image_path">
如何使用最少的代码以这种方式渲染:
<input type="radio" name="name" value="image_path"><img src="image_path" />
答案 0 :(得分:2)
这是我未经测试的直接阅读Symfony API文档for that widget。您需要扩展sfWidgetFormSelectRadio
类,将其称为myWidgetFormSelectRadio
,并将其粘贴到项目的lib/widget/myWidgetFormSelectRadio.class.php
中。
覆盖formatChoices()
方法,如下所示:
class myWidgetFormSelectRadio extends sfWidgetFormSelectRadio
{
protected function formatChoices($name, $value, $choices, $attributes)
{
$inputs = array();
foreach ($choices as $key => $option)
{
$baseAttributes = array(
'name' => substr($name, 0, -2),
'type' => 'radio',
'value' => self::escapeOnce($key),
'id' => $id = $this->generateId($name, self::escapeOnce($key)),
);
if (strval($key) == strval($value === false ? 0 : $value))
{
$baseAttributes['checked'] = 'checked';
}
$inputs[$id] = array(
'input' =>
$this->renderTag('input', array_merge($baseAttributes, $attributes))
. $this->renderTag('img', array('src' => self::escapeOnce($key))),
'label' => $this->renderContentTag('label', self::escapeOnce($option), array('for' => $id)),
);
}
return call_user_func($this->getOption('formatter'), $this, $inputs);
}
}
因此您基本上会将img
标记附加到输入中。
在表单的configure()
方法中,您需要从使用sfWidgetFormSelectRadio
切换到使用myWidgetFormSelectRadio
来使用新的小部件。
让我知道这是否有效; - )