4 * Adds a generic button inline to the form. Does not do anything, you must add
5 * click handling code in JavaScript. Use a HTMLSubmitField if you merely
6 * wish to add a submit button to a form.
10 class HTMLButtonField
extends HTMLFormField
{
11 protected $buttonType = 'button';
13 public function __construct( $info ) {
14 $info['nodata'] = true;
15 parent
::__construct( $info );
18 public function getInputHTML( $value ) {
20 'class' => 'mw-htmlform-submit ' . $this->mClass
,
22 ) +
$this->getAttributes( array( 'disabled', 'tabindex' ) );
24 return Html
::input( $this->mName
, $value, $this->buttonType
, $attr );
27 protected function needsLabel() {
32 * Button cannot be invalid
34 * @param string $value
35 * @param array $alldata
39 public function validate( $value, $alldata ) {