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 = array();
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 $msgInfo = $info['buttonlabel-message'];
40 if ( is_array( $msgInfo ) ) {
41 $msg = array_shift( $msgInfo );
47 $this->buttonLabel
= $this->msg( $msg, $msgInfo )->parse();
48 } elseif ( isset( $info['buttonlabel'] ) ) {
49 if ( $info['buttonlabel'] === ' ' ) {
50 // Apparently some things set   directly and in an odd format
51 $this->buttonLabel
= ' ';
53 $this->buttonLabel
= htmlspecialchars( $info['buttonlabel'] );
55 } elseif ( isset( $info['buttonlabel-raw'] ) ) {
56 $this->buttonLabel
= $info['buttonlabel-raw'];
59 parent
::__construct( $info );
62 public function getInputHTML( $value ) {
64 $prefix = 'mw-htmlform-';
65 if ( $this->mParent
instanceof VFormHTMLForm ||
66 $this->mParent
->getConfig()->get( 'UseMediaWikiUIEverywhere' )
69 // add mw-ui-button separately, so the descriptor doesn't need to set it
70 $flags .= ' ' . $prefix . 'button';
72 foreach ( $this->mFlags
as $flag ) {
73 $flags .= ' ' . $prefix . $flag;
76 'class' => 'mw-htmlform-submit ' . $this->mClass
. $flags,
78 'type' => $this->buttonType
,
79 'name' => $this->mName
,
81 ) +
$this->getAttributes( array( 'disabled', 'tabindex' ) );
83 if ( $this->isBadIE() ) {
84 return Html
::element( 'input', $attr );
86 return Html
::rawElement( 'button', $attr, $this->buttonLabel ?
: htmlspecialchars( $value ) );
91 * Get the OOUI widget for this field.
92 * @param string $value
93 * @return OOUI\ButtonInputWidget
95 public function getInputOOUI( $value ) {
96 return new OOUI\
ButtonInputWidget( array(
97 'name' => $this->mName
,
99 'label' => !$this->isBadIE() && $this->buttonLabel
100 ?
new OOUI\
HtmlSnippet( $this->buttonLabel
)
102 'type' => $this->buttonType
,
103 'classes' => array( 'mw-htmlform-submit', $this->mClass
),
105 'flags' => $this->mFlags
,
106 'useInputTag' => $this->isBadIE(),
107 ) +
$this->getAttributes( array( 'disabled', 'tabindex' ), array( 'tabindex' => 'tabIndex' ) ) );
110 protected function needsLabel() {
115 * Button cannot be invalid
117 * @param string $value
118 * @param array $alldata
122 public function validate( $value, $alldata ) {
127 * IE<8 has bugs with <button>, so we'll need to avoid them.
128 * @return bool Whether the request is from a bad version of IE
130 private function isBadIE() {
131 $request = $this->mParent
132 ?
$this->mParent
->getRequest()
133 : RequestContext
::getMain()->getRequest();
134 return preg_match( '/MSIE [1-7]\./i', $request->getHeader( 'User-Agent' ) );