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 * Additional recognized configuration parameters include:
9 * - flags: OOUI flags for the button, see OOUI\FlaggedElement
10 * - buttonlabel-message: Message to use for the button display text, instead
11 * of the value from 'default'. Overrides 'buttonlabel' and 'buttonlabel-raw'.
12 * - buttonlabel: Text to display for the button display text, instead
13 * of the value from 'default'. Overrides 'buttonlabel-raw'.
14 * - buttonlabel-raw: HTMLto display for the button display text, instead
15 * of the value from 'default'.
17 * Note that the buttonlabel parameters are not supported on IE6 and IE7 due to
18 * bugs in those browsers. If detected, they will be served buttons using the
19 * value of 'default' as the button label.
23 class HTMLButtonField
extends HTMLFormField
{
24 protected $buttonType = 'button';
25 protected $buttonLabel = null;
27 /** @var array $mFlags Flags to add to OOUI Button widget */
28 protected $mFlags = [];
30 public function __construct( $info ) {
31 $info['nodata'] = true;
32 if ( isset( $info['flags'] ) ) {
33 $this->mFlags
= $info['flags'];
36 # Generate the label from a message, if possible
37 if ( isset( $info['buttonlabel-message'] ) ) {
38 $this->buttonLabel
= $this->getMessage( $info['buttonlabel-message'] )->parse();
39 } elseif ( isset( $info['buttonlabel'] ) ) {
40 if ( $info['buttonlabel'] === ' ' ) {
41 // Apparently some things set   directly and in an odd format
42 $this->buttonLabel
= ' ';
44 $this->buttonLabel
= htmlspecialchars( $info['buttonlabel'] );
46 } elseif ( isset( $info['buttonlabel-raw'] ) ) {
47 $this->buttonLabel
= $info['buttonlabel-raw'];
50 $this->setShowEmptyLabel( false );
52 parent
::__construct( $info );
55 public function getInputHTML( $value ) {
57 $prefix = 'mw-htmlform-';
58 if ( $this->mParent
instanceof VFormHTMLForm ||
59 $this->mParent
->getConfig()->get( 'UseMediaWikiUIEverywhere' )
62 // add mw-ui-button separately, so the descriptor doesn't need to set it
63 $flags .= ' ' . $prefix . 'button';
65 foreach ( $this->mFlags
as $flag ) {
66 $flags .= ' ' . $prefix . $flag;
69 'class' => 'mw-htmlform-submit ' . $this->mClass
. $flags,
71 'type' => $this->buttonType
,
72 'name' => $this->mName
,
73 'value' => $this->getDefault(),
74 ] +
$this->getAttributes( [ 'disabled', 'tabindex' ] );
76 if ( $this->isBadIE() ) {
77 return Html
::element( 'input', $attr );
79 return Html
::rawElement( 'button', $attr,
80 $this->buttonLabel ?
: htmlspecialchars( $this->getDefault() ) );
85 * Get the OOUI widget for this field.
86 * @param string $value
87 * @return OOUI\ButtonInputWidget
89 public function getInputOOUI( $value ) {
90 return new OOUI\
ButtonInputWidget( [
91 'name' => $this->mName
,
92 'value' => $this->getDefault(),
93 'label' => !$this->isBadIE() && $this->buttonLabel
94 ?
new OOUI\
HtmlSnippet( $this->buttonLabel
)
95 : $this->getDefault(),
96 'type' => $this->buttonType
,
97 'classes' => [ 'mw-htmlform-submit', $this->mClass
],
99 'flags' => $this->mFlags
,
100 'useInputTag' => $this->isBadIE(),
101 ] + OOUI\Element
::configFromHtmlAttributes(
102 $this->getAttributes( [ 'disabled', 'tabindex' ] )
106 protected function needsLabel() {
111 * Button cannot be invalid
113 * @param string $value
114 * @param array $alldata
118 public function validate( $value, $alldata ) {
123 * IE<8 has bugs with <button>, so we'll need to avoid them.
124 * @return bool Whether the request is from a bad version of IE
126 private function isBadIE() {
127 $request = $this->mParent
128 ?
$this->mParent
->getRequest()
129 : RequestContext
::getMain()->getRequest();
130 return preg_match( '/MSIE [1-7]\./i', $request->getHeader( 'User-Agent' ) );