Special:BlockList: Use mw-ui-progressive for search button
[mediawiki.git] / includes / htmlform / HTMLButtonField.php
blob09c0ad97e4623ada6733dc1a4341961cb9175821
1 <?php
3 /**
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.
8 * @since 1.22
9 */
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 ) {
19 $attr = array(
20 'class' => 'mw-htmlform-submit ' . $this->mClass,
21 'id' => $this->mID,
22 ) + $this->getAttributes( array( 'disabled', 'tabindex' ) );
24 return Html::input( $this->mName, $value, $this->buttonType, $attr );
27 protected function needsLabel() {
28 return false;
31 /**
32 * Button cannot be invalid
34 * @param string $value
35 * @param array $alldata
37 * @return bool
39 public function validate( $value, $alldata ) {
40 return true;