これはテストされておらず、そのウィジェットのSymfonyAPIドキュメントを読んでいる私から直接です。クラスを拡張し、の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
これが機能するかどうか教えてください;-)