5 * Operates similarly to HTMLMultiSelectField, but instead of using an array of
6 * options, uses an array of rows and an array of columns to dynamically
7 * construct a matrix of options. The tags used to identify a particular cell
8 * are of the form "columnName-rowName"
12 * - Required list of columns in the matrix.
14 * - Required list of rows in the matrix.
16 * - Accepts array of column-row tags to be displayed as enabled but unavailable to change
18 * - Accepts array of column-row tags to be displayed as disabled but unavailable to change.
20 * - Optional array mapping row label to tooltip content
22 * - Optional CSS class used on tooltip container span. Defaults to mw-icon-question.
24 class HTMLCheckMatrix
extends HTMLFormField
implements HTMLNestedFilterable
{
25 static private $requiredParams = array(
26 // Required by underlying HTMLFormField
28 // Required by HTMLCheckMatrix
33 public function __construct( $params ) {
34 $missing = array_diff( self
::$requiredParams, array_keys( $params ) );
36 throw new HTMLFormFieldRequiredOptionsException( $this, $missing );
38 parent
::__construct( $params );
41 function validate( $value, $alldata ) {
42 $rows = $this->mParams
['rows'];
43 $columns = $this->mParams
['columns'];
45 // Make sure user-defined validation callback is run
46 $p = parent
::validate( $value, $alldata );
51 // Make sure submitted value is an array
52 if ( !is_array( $value ) ) {
56 // If all options are valid, array_intersect of the valid options
57 // and the provided options will return the provided options.
58 $validOptions = array();
59 foreach ( $rows as $rowTag ) {
60 foreach ( $columns as $columnTag ) {
61 $validOptions[] = $columnTag . '-' . $rowTag;
64 $validValues = array_intersect( $value, $validOptions );
65 if ( count( $validValues ) == count( $value ) ) {
68 return $this->msg( 'htmlform-select-badoption' )->parse();
73 * Build a table containing a matrix of checkbox options.
74 * The value of each option is a combination of the row tag and column tag.
75 * mParams['rows'] is an array with row labels as keys and row tags as values.
76 * mParams['columns'] is an array with column labels as keys and column tags as values.
78 * @param array $value Array of the options that should be checked
82 function getInputHTML( $value ) {
85 $rows = $this->mParams
['rows'];
86 $columns = $this->mParams
['columns'];
90 if ( $this->mParent
instanceof OOUIHTMLForm
) {
91 $mappings['tabindex'] = 'tabIndex';
94 $attribs = $this->getAttributes( array( 'disabled', 'tabindex' ), $mappings );
96 // Build the column headers
97 $headerContents = Html
::rawElement( 'td', array(), ' ' );
98 foreach ( $columns as $columnLabel => $columnTag ) {
99 $headerContents .= Html
::rawElement( 'td', array(), $columnLabel );
101 $tableContents .= Html
::rawElement( 'tr', array(), "\n$headerContents\n" );
103 $tooltipClass = 'mw-icon-question';
104 if ( isset( $this->mParams
['tooltip-class'] ) ) {
105 $tooltipClass = $this->mParams
['tooltip-class'];
108 // Build the options matrix
109 foreach ( $rows as $rowLabel => $rowTag ) {
110 // Append tooltip if configured
111 if ( isset( $this->mParams
['tooltips'][$rowLabel] ) ) {
112 $tooltipAttribs = array(
113 'class' => "mw-htmlform-tooltip $tooltipClass",
114 'title' => $this->mParams
['tooltips'][$rowLabel],
116 $rowLabel .= ' ' . Html
::element( 'span', $tooltipAttribs, '' );
118 $rowContents = Html
::rawElement( 'td', array(), $rowLabel );
119 foreach ( $columns as $columnTag ) {
120 $thisTag = "$columnTag-$rowTag";
121 // Construct the checkbox
122 $thisAttribs = array(
123 'id' => "{$this->mID}-$thisTag",
126 $checked = in_array( $thisTag, (array)$value, true );
127 if ( $this->isTagForcedOff( $thisTag ) ) {
129 $thisAttribs['disabled'] = 1;
130 } elseif ( $this->isTagForcedOn( $thisTag ) ) {
132 $thisAttribs['disabled'] = 1;
135 $checkbox = $this->getOneCheckbox( $checked, $attribs +
$thisAttribs );
137 $rowContents .= Html
::rawElement(
143 $tableContents .= Html
::rawElement( 'tr', array(), "\n$rowContents\n" );
146 // Put it all in a table
147 $html .= Html
::rawElement( 'table',
148 array( 'class' => 'mw-htmlform-matrix' ),
149 Html
::rawElement( 'tbody', array(), "\n$tableContents\n" ) ) . "\n";
154 protected function getOneCheckbox( $checked, $attribs ) {
155 if ( $this->mParent
instanceof OOUIHTMLForm
) {
156 return new OOUI\
CheckboxInputWidget( array(
157 'name' => "{$this->mName}[]",
158 'selected' => $checked,
159 'value' => $attribs['value'],
162 $checkbox = Xml
::check( "{$this->mName}[]", $checked, $attribs );
163 if ( $this->mParent
->getConfig()->get( 'UseMediaWikiUIEverywhere' ) ) {
164 $checkbox = Html
::openElement( 'div', array( 'class' => 'mw-ui-checkbox' ) ) .
166 Html
::element( 'label', array( 'for' => $attribs['id'] ) ) .
167 Html
::closeElement( 'div' );
173 protected function isTagForcedOff( $tag ) {
174 return isset( $this->mParams
['force-options-off'] )
175 && in_array( $tag, $this->mParams
['force-options-off'] );
178 protected function isTagForcedOn( $tag ) {
179 return isset( $this->mParams
['force-options-on'] )
180 && in_array( $tag, $this->mParams
['force-options-on'] );
184 * Get the complete table row for the input, including help text,
185 * labels, and whatever.
186 * We override this function since the label should always be on a separate
187 * line above the options in the case of a checkbox matrix, i.e. it's always
188 * a "vertical-label".
190 * @param string $value The value to set the input to
192 * @return string Complete HTML table row
194 function getTableRow( $value ) {
195 list( $errors, $errorClass ) = $this->getErrorsAndErrorClass( $value );
196 $inputHtml = $this->getInputHTML( $value );
197 $fieldType = get_class( $this );
198 $helptext = $this->getHelpTextHtmlTable( $this->getHelpText() );
199 $cellAttributes = array( 'colspan' => 2 );
202 $hideAttributes = array();
203 if ( $this->mHideIf
) {
204 $hideAttributes['data-hide-if'] = FormatJson
::encode( $this->mHideIf
);
205 $hideClass = 'mw-htmlform-hide-if';
208 $label = $this->getLabelHtml( $cellAttributes );
210 $field = Html
::rawElement(
212 array( 'class' => 'mw-input' ) +
$cellAttributes,
213 $inputHtml . "\n$errors"
216 $html = Html
::rawElement( 'tr',
217 array( 'class' => "mw-htmlform-vertical-label $hideClass" ) +
$hideAttributes,
219 $html .= Html
::rawElement( 'tr',
220 array( 'class' => "mw-htmlform-field-$fieldType {$this->mClass} $errorClass $hideClass" ) +
224 return $html . $helptext;
228 * @param WebRequest $request
232 function loadDataFromRequest( $request ) {
233 if ( $this->mParent
->getMethod() == 'post' ) {
234 if ( $request->wasPosted() ) {
235 // Checkboxes are not added to the request arrays if they're not checked,
236 // so it's perfectly possible for there not to be an entry at all
237 return $request->getArray( $this->mName
, array() );
239 // That's ok, the user has not yet submitted the form, so show the defaults
240 return $this->getDefault();
243 // This is the impossible case: if we look at $_GET and see no data for our
244 // field, is it because the user has not yet submitted the form, or that they
245 // have submitted it with all the options unchecked. We will have to assume the
246 // latter, which basically means that you can't specify 'positive' defaults
248 return $request->getArray( $this->mName
, array() );
252 function getDefault() {
253 if ( isset( $this->mDefault
) ) {
254 return $this->mDefault
;
260 function filterDataForSubmit( $data ) {
261 $columns = HTMLFormField
::flattenOptions( $this->mParams
['columns'] );
262 $rows = HTMLFormField
::flattenOptions( $this->mParams
['rows'] );
264 foreach ( $columns as $column ) {
265 foreach ( $rows as $row ) {
266 // Make sure option hasn't been forced
267 $thisTag = "$column-$row";
268 if ( $this->isTagForcedOff( $thisTag ) ) {
269 $res[$thisTag] = false;
270 } elseif ( $this->isTagForcedOn( $thisTag ) ) {
271 $res[$thisTag] = true;
273 $res[$thisTag] = in_array( $thisTag, $data );