TbHtml::inputButton PHP Метод

inputButton() публичный статический Метод

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