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 /** @var array $mFlags Flags to add to OOUI Button widget */
14 protected $mFlags = array();
16 public function __construct( $info ) {
17 $info['nodata'] = true;
18 if ( isset( $info['flags'] ) ) {
19 $this->mFlags
= $info['flags'];
21 parent
::__construct( $info );
24 public function getInputHTML( $value ) {
26 $prefix = 'mw-htmlform-';
27 if ( $this->mParent
instanceof VFormHTMLForm ||
28 $this->mParent
->getConfig()->get( 'UseMediaWikiUIEverywhere' )
31 // add mw-ui-button separately, so the descriptor doesn't need to set it
32 $flags .= ' ' . $prefix . 'button';
34 foreach ( $this->mFlags
as $flag ) {
35 $flags .= ' ' . $prefix . $flag;
38 'class' => 'mw-htmlform-submit ' . $this->mClass
. $flags,
40 ) +
$this->getAttributes( array( 'disabled', 'tabindex' ) );
42 return Html
::input( $this->mName
, $value, $this->buttonType
, $attr );
46 * Get the OOUI widget for this field.
47 * @param string $value
48 * @return OOUI\ButtonInputWidget
50 public function getInputOOUI( $value ) {
51 return new OOUI\
ButtonInputWidget( array(
52 'name' => $this->mName
,
55 'type' => $this->buttonType
,
56 'classes' => array( 'mw-htmlform-submit', $this->mClass
),
58 'flags' => $this->mFlags
,
59 ) +
$this->getAttributes( array( 'disabled', 'tabindex' ), array( 'tabindex' => 'tabIndex' ) ) );
62 protected function needsLabel() {
67 * Button cannot be invalid
69 * @param string $value
70 * @param array $alldata
74 public function validate( $value, $alldata ) {