58 parent::initializeArguments();
59 $this->registerTagAttribute(
62 'Specifies that a button should automatically get focus when the page loads'
64 $this->registerTagAttribute(
67 'Specifies that the input element should be disabled when the page loads'
69 $this->registerTagAttribute(
'form',
'string',
'Specifies one or more forms the button belongs to');
70 $this->registerTagAttribute(
73 'Specifies where to send the form-data when a form is submitted. Only for type="submit"'
75 $this->registerTagAttribute(
78 'Specifies how form-data should be encoded before sending it to a server. Only for type="submit" (e.g. "application/x-www-form-urlencoded", "multipart/form-data" or "text/plain")'
80 $this->registerTagAttribute(
83 'Specifies how to send the form-data (which HTTP method to use). Only for type="submit" (e.g. "get" or "post")'
85 $this->registerTagAttribute(
88 'Specifies that the form-data should not be validated on submission. Only for type="submit"'
90 $this->registerTagAttribute(
93 'Specifies where to display the response after submitting the form. Only for type="submit" (e.g. "_blank", "_self", "_parent", "_top", "framename")'
95 $this->registerUniversalTagAttributes();
96 $this->registerArgument(
'type',
'string',
'Specifies the type of button (e.g. "button", "reset" or "submit")',
false,
'submit');
106 $type = $this->arguments[
'type'];
110 $this->tag->addAttribute(
'type', $type);
111 $this->tag->addAttribute(
'name', $name);
113 $this->tag->setContent($this->renderChildren());
115 return $this->tag->render();