MediaWiki REL1_34
HTMLMultiSelectField.php
Go to the documentation of this file.
1<?php
2
17 public function __construct( $params ) {
18 parent::__construct( $params );
19
20 // If the disabled-options parameter is not provided, use an empty array
21 if ( isset( $this->mParams['disabled-options'] ) === false ) {
22 $this->mParams['disabled-options'] = [];
23 }
24
25 if ( isset( $params['dropdown'] ) ) {
26 $this->mClass .= ' mw-htmlform-dropdown';
27 }
28
29 if ( isset( $params['flatlist'] ) ) {
30 $this->mClass .= ' mw-htmlform-flatlist';
31 }
32 }
33
34 public function validate( $value, $alldata ) {
35 $p = parent::validate( $value, $alldata );
36
37 if ( $p !== true ) {
38 return $p;
39 }
40
41 if ( !is_array( $value ) ) {
42 return false;
43 }
44
45 # If all options are valid, array_intersect of the valid options
46 # and the provided options will return the provided options.
47 $validOptions = HTMLFormField::flattenOptions( $this->getOptions() );
48
49 $validValues = array_intersect( $value, $validOptions );
50 if ( count( $validValues ) == count( $value ) ) {
51 return true;
52 } else {
53 return $this->msg( 'htmlform-select-badoption' );
54 }
55 }
56
57 public function getInputHTML( $value ) {
58 if ( isset( $this->mParams['dropdown'] ) ) {
59 $this->mParent->getOutput()->addModules( 'jquery.chosen' );
60 }
61
63 $html = $this->formatOptions( $this->getOptions(), $value );
64
65 return $html;
66 }
67
68 public function formatOptions( $options, $value ) {
69 $html = '';
70
71 $attribs = $this->getAttributes( [ 'disabled', 'tabindex' ] );
72
73 foreach ( $options as $label => $info ) {
74 if ( is_array( $info ) ) {
75 $html .= Html::rawElement( 'h1', [], $label ) . "\n";
76 $html .= $this->formatOptions( $info, $value );
77 } else {
78 $thisAttribs = [
79 'id' => "{$this->mID}-$info",
80 'value' => $info,
81 ];
82 if ( in_array( $info, $this->mParams['disabled-options'], true ) ) {
83 $thisAttribs['disabled'] = 'disabled';
84 }
85 $checked = in_array( $info, $value, true );
86
87 $checkbox = $this->getOneCheckbox( $checked, $attribs + $thisAttribs, $label );
88
89 $html .= ' ' . Html::rawElement(
90 'div',
91 [ 'class' => 'mw-htmlform-flatlist-item' ],
92 $checkbox
93 );
94 }
95 }
96
97 return $html;
98 }
99
100 protected function getOneCheckbox( $checked, $attribs, $label ) {
101 if ( $this->mParent instanceof OOUIHTMLForm ) {
102 throw new MWException( 'HTMLMultiSelectField#getOneCheckbox() is not supported' );
103 } else {
104 $elementFunc = [ Html::class, $this->mOptionsLabelsNotFromMessage ? 'rawElement' : 'element' ];
105 $checkbox =
106 Xml::check( "{$this->mName}[]", $checked, $attribs ) .
107 "\u{00A0}" .
108 call_user_func( $elementFunc,
109 'label',
110 [ 'for' => $attribs['id'] ],
111 $label
112 );
113 if ( $this->mParent->getConfig()->get( 'UseMediaWikiUIEverywhere' ) ) {
114 $checkbox = Html::openElement( 'div', [ 'class' => 'mw-ui-checkbox' ] ) .
115 $checkbox .
116 Html::closeElement( 'div' );
117 }
118 return $checkbox;
119 }
120 }
121
126 public function getOptionsOOUI() {
127 // Sections make this difficult. See getInputOOUI().
128 throw new MWException( 'HTMLMultiSelectField#getOptionsOOUI() is not supported' );
129 }
130
142 public function getInputOOUI( $value ) {
143 $this->mParent->getOutput()->addModules( 'oojs-ui-widgets' );
144
145 $hasSections = false;
146 $optionsOouiSections = [];
147 $options = $this->getOptions();
148 // If the options are supposed to be split into sections, each section becomes a separate
149 // CheckboxMultiselectInputWidget.
150 foreach ( $options as $label => $section ) {
151 if ( is_array( $section ) ) {
152 $optionsOouiSections[ $label ] = Xml::listDropDownOptionsOoui( $section );
153 unset( $options[$label] );
154 $hasSections = true;
155 }
156 }
157 // If anything remains in the array, they are sectionless options. Put them in a separate widget
158 // at the beginning.
159 if ( $options ) {
160 $optionsOouiSections = array_merge(
161 [ '' => Xml::listDropDownOptionsOoui( $options ) ],
162 $optionsOouiSections
163 );
164 }
165
166 $out = [];
167 foreach ( $optionsOouiSections as $sectionLabel => $optionsOoui ) {
168 $attr = [];
169 $attr['name'] = "{$this->mName}[]";
170
171 $attr['value'] = $value;
172 $attr['options'] = $optionsOoui;
173
174 foreach ( $attr['options'] as &$option ) {
175 $option['disabled'] = in_array( $option['data'], $this->mParams['disabled-options'], true );
176 }
177 if ( $this->mOptionsLabelsNotFromMessage ) {
178 foreach ( $attr['options'] as &$option ) {
179 $option['label'] = new OOUI\HtmlSnippet( $option['label'] );
180 }
181 }
182
183 $attr += OOUI\Element::configFromHtmlAttributes(
184 $this->getAttributes( [ 'disabled', 'tabindex' ] )
185 );
186
187 if ( $this->mClass !== '' ) {
188 $attr['classes'] = [ $this->mClass ];
189 }
190
191 $widget = new OOUI\CheckboxMultiselectInputWidget( $attr );
192 if ( $sectionLabel ) {
193 $out[] = new OOUI\FieldsetLayout( [
194 'items' => [ $widget ],
195 'label' => new OOUI\HtmlSnippet( $sectionLabel ),
196 ] );
197 } else {
198 $out[] = $widget;
199 }
200 }
201
202 if ( !$hasSections ) {
203 // Directly return the only OOUI\CheckboxMultiselectInputWidget.
204 // This allows it to be made infusable and later tweaked by JS code.
205 return $out[ 0 ];
206 }
207
208 return implode( '', $out );
209 }
210
216 public function loadDataFromRequest( $request ) {
217 $fromRequest = $request->getArray( $this->mName, [] );
218 // Fetch the value in either one of the two following case:
219 // - we have a valid submit attempt (form was just submitted)
220 // - we have a value (an URL manually built by the user, or GET form with no wpFormIdentifier)
221 if ( $this->isSubmitAttempt( $request ) || $fromRequest ) {
222 // Checkboxes are just not added to the request arrays if they're not checked,
223 // so it's perfectly possible for there not to be an entry at all
224 return $fromRequest;
225 } else {
226 // That's ok, the user has not yet submitted the form, so show the defaults
227 return $this->getDefault();
228 }
229 }
230
231 public function getDefault() {
232 return $this->mDefault ?? [];
233 }
234
235 public function filterDataForSubmit( $data ) {
237 $options = HTMLFormField::flattenOptions( $this->getOptions() );
238
239 $res = [];
240 foreach ( $options as $opt ) {
241 $res["$opt"] = in_array( $opt, $data, true );
242 }
243
244 return $res;
245 }
246
247 protected function needsLabel() {
248 return false;
249 }
250}
The parent class to generate form fields.
static flattenOptions( $options)
flatten an array of options to a single array, for instance, a set of "<options>" inside "<optgroups>...
getOptions()
Fetch the array of options from the field's parameters.
isSubmitAttempt(WebRequest $request)
Can we assume that the request is an attempt to submit a HTMLForm, as opposed to an attempt to just v...
msg( $key,... $params)
Get a translated interface message.
getAttributes(array $list)
Returns the given attributes from the parameters.
static forceToStringRecursive( $array)
Recursively forces values in an array to strings, because issues arise with integer 0 as a value.
validate( $value, $alldata)
Override this function to add specific validation checks on the field input.
needsLabel()
Should this field have a label, or is there no input element with the appropriate id for the label to...
getOneCheckbox( $checked, $attribs, $label)
filterDataForSubmit( $data)
Support for separating multi-option preferences into multiple preferences Due to lack of array suppor...
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself.
getInputOOUI( $value)
Get the OOUI version of this field.
formatOptions( $options, $value)
getOptionsOOUI()
Get options and make them into arrays suitable for OOUI.
MediaWiki exception.
Compact stacked vertical format for forms, implemented using OOUI widgets.