dateFieldControlGroup() public static method

Generates a control group with a file field.
See also: self::controlGroup
public static dateFieldControlGroup ( string $name, string $value = '', array $htmlOptions = [] ) : string
$name string the input name.
$value string the input value.
$htmlOptions array additional HTML attributes.
return string the generated control group.
Ejemplo n.º 1
0
 public function testDateFieldControlGroup()
 {
     $I = $this->codeGuy;
     $html = TbHtml::dateFieldControlGroup('date', 'date');
     $group = $I->createNode($html, 'div.control-group');
     $label = $group->filter('label.control-label');
     $I->seeNodeChildren($label, array('input[type=date]'));
 }