| 20 | | $w = new sfWidgetFormSelectRadio(array('choices' => array('foo' => 'bar', 'foobar' => 'foo'))); |
|---|
| 21 | | $output = '<ul class="radio_list"><li><input name="foo" type="radio" value="foo" id="foo_foo" /> <label for="foo_foo">bar</label></li> |
|---|
| 22 | | <li><input name="foo" type="radio" value="foobar" id="foo_foobar" checked="checked" /> <label for="foo_foobar">foo</label></li></ul>'; |
|---|
| | 20 | $w = new sfWidgetFormSelectRadio(array('choices' => array('foo' => 'bar', 'foobar' => 'foo'), 'separator' => '')); |
|---|
| | 21 | $output = '<ul class="radio_list"><li><input name="foo" type="radio" value="foo" id="foo_foo" /> <label for="foo_foo">bar</label></li>'. |
|---|
| | 22 | '<li><input name="foo" type="radio" value="foobar" id="foo_foobar" checked="checked" /> <label for="foo_foobar">foo</label></li></ul>'; |
|---|