radioButtonControlGroup() 공개 정적인 메소드

Generates a control group with a radio button.
또한 보기: self::controlGroup
public static radioButtonControlGroup ( string $name, boolean | string $checked = false, array $htmlOptions = [] ) : string
$name string the input name.
$checked boolean | string whether the radio button is checked.
$htmlOptions array additional HTML attributes.
리턴 string the generated control group.
예제 #1
0
 public function testRadioButtonControlGroup()
 {
     $I = $this->codeGuy;
     $html = TbHtml::radioButtonControlGroup('radio', false, array('label' => 'Label text'));
     $group = $I->createNode($html, 'div.control-group');
     $label = $group->filter('label.radio');
     $I->seeNodeChildren($label, array('input[type=radio]'));
 }