TbHtml::dateFieldControlGroup PHP Method

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.
    public static function dateFieldControlGroup($name, $value = '', $htmlOptions = array())
    {
        return self::controlGroup(self::INPUT_TYPE_DATE, $name, $value, $htmlOptions);
    }

Usage Example

Example #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]'));
 }
TbHtml