'mw-htmlform-submit ' . $this->mClass, 'id' => $this->mID, ) + $this->getAttributes( array( 'disabled', 'tabindex' ) ); return Html::input( $this->mName, $value, $this->buttonType, $attr ); } protected function needsLabel() { return false; } /** * Button cannot be invalid * * @param string $value * @param array $alldata * * @return bool */ public function validate( $value, $alldata ) { return true; } }