TbHtml::inputSubmit PHP Метод

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

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