TbHtml::inputButton PHP Method

inputButton() public static method

Generates a form input push button.
public static inputButton ( string $label, array $htmlOptions = [] ) : string
$label string the button label
$htmlOptions array additional HTML attributes.
return string the generated button.
    public static function inputButton($label, $htmlOptions = array())
    {
        return self::btn(self::BUTTON_TYPE_INPUTBUTTON, $label, $htmlOptions);
    }
TbHtml