name = $config['name'] ?? null; $this->id = $config['id'] ?? null; // Properties $this->rows = $config['rows'] ?? []; $this->columns = $config['columns'] ?? []; $this->tooltips = $config['tooltips'] ?? []; $this->values = $config['values'] ?? []; $this->forcedOn = $config['forcedOn'] ?? []; $this->forcedOff = $config['forcedOff'] ?? []; // Build the table $table = new \OOUI\Tag( 'table' ); $table->addClasses( [ 'mw-htmlform-matrix mw-widget-checkMatrixWidget-matrix' ] ); $thead = new \OOUI\Tag( 'thead' ); $table->appendContent( $thead ); $tr = new \OOUI\Tag( 'tr' ); // Build the header $tr->appendContent( $this->getCellTag( "\u{00A0}" ) ); foreach ( $this->columns as $columnLabel => $columnTag ) { $tr->appendContent( $this->getCellTag( new \OOUI\HtmlSnippet( $columnLabel ), 'th' ) ); } $thead->appendContent( $tr ); // Build the options matrix $tbody = new \OOUI\Tag( 'tbody' ); $table->appendContent( $tbody ); foreach ( $this->rows as $rowLabel => $rowTag ) { $tbody->appendContent( $this->getTableRow( $rowLabel, $rowTag ) ); } // Initialization $this->addClasses( [ 'mw-widget-checkMatrixWidget' ] ); $this->appendContent( $table ); } /** * Get a formatted table row for the option, with * a checkbox widget. * * @param string $label Row label (as HTML) * @param string $tag Row tag name * @return \OOUI\Tag The resulting table row */ private function getTableRow( $label, $tag ) { $row = new \OOUI\Tag( 'tr' ); $tooltip = $this->getTooltip( $label ); $labelFieldConfig = $tooltip ? [ 'help' => $tooltip ] : []; // Build label cell $labelField = new \OOUI\FieldLayout( new \OOUI\Widget(), // Empty widget, since we don't have the checkboxes here [ 'label' => new \OOUI\HtmlSnippet( $label ), 'align' => 'inline', ] + $labelFieldConfig ); $row->appendContent( $this->getCellTag( $labelField ) ); // Build checkbox column cells foreach ( $this->columns as $columnTag ) { $thisTag = "$columnTag-$tag"; // Construct a checkbox $checkbox = new \OOUI\CheckboxInputWidget( [ 'value' => $thisTag, 'name' => $this->name ? "{$this->name}[]" : null, 'id' => $this->id ? "{$this->id}-$thisTag" : null, 'selected' => $this->isTagChecked( $thisTag ), 'disabled' => $this->isTagDisabled( $thisTag ), ] ); $row->appendContent( $this->getCellTag( $checkbox ) ); } return $row; } /** * Get an individual cell tag with requested content * * @param mixed $content Content for the