lithium\template\helper\Form::submit PHP Method

submit() public method

Generates an HTML object.
public submit ( string $title = null, array $options = [] ) : string
$title string The title of the submit button.
$options array Any options passed are converted to HTML attributes within the `` tag.
return string Returns a submit `` tag with the given title and HTML attributes.
    public function submit($title = null, array $options = array())
    {
        list($name, $options, $template) = $this->_defaults(__FUNCTION__, null, $options);
        return $this->_render(__METHOD__, $template, compact('title', 'options'));
    }