3 * MediaWiki Widgets – ComplexNamespaceInputWidget class.
5 * @copyright 2011-2015 MediaWiki Widgets Team and others; see AUTHORS.txt
6 * @license The MIT License (MIT); see LICENSE.txt
8 namespace MediaWiki\Widget
;
11 * Namespace input widget. Displays a dropdown box with the choice of available namespaces, plus two
12 * checkboxes to include associated namespace or to invert selection.
14 class ComplexNamespaceInputWidget
extends \OOUI\Widget
{
18 protected $associated = null;
19 protected $associatedLabel = null;
20 protected $invert = null;
21 protected $invertLabel = null;
24 * @param array $config Configuration options
25 * @param array $config['namespace'] Configuration for the NamespaceInputWidget
26 * dropdown with list of namespaces
27 * @param string $config['namespace']['includeAllValue'] If specified,
28 * add an "all namespaces" option to the dropdown, and use this as the input value for it
29 * @param array|null $config['invert'] Configuration for the "invert selection"
30 * CheckboxInputWidget. If null, the checkbox will not be generated.
31 * @param array|null $config['associated'] Configuration for the "include associated namespace"
32 * CheckboxInputWidget. If null, the checkbox will not be generated.
33 * @param array $config['invertLabel'] Configuration for the FieldLayout with label
34 * wrapping the "invert selection" checkbox
35 * @param string $config['invertLabel']['label'] Label text for the label
36 * @param array $config['associatedLabel'] Configuration for the FieldLayout with label
37 * wrapping the "include associated namespace" checkbox
38 * @param string $config['associatedLabel']['label'] Label text for the label
40 public function __construct( array $config = [] ) {
41 // Configuration initialization
42 $config = array_merge(
44 // Config options for nested widgets
49 'associatedLabel' => [],
55 parent
::__construct( $config );
58 $this->config
= $config;
60 $this->namespace = new NamespaceInputWidget( $config['namespace'] );
61 if ( $config['associated'] !== null ) {
62 $this->associated
= new \OOUI\
CheckboxInputWidget( array_merge(
66 // TODO Should use a LabelWidget? But they don't work like HTML <label>s yet
67 $this->associatedLabel
= new \OOUI\
FieldLayout(
70 [ 'align' => 'inline' ],
71 $config['associatedLabel']
75 if ( $config['invert'] !== null ) {
76 $this->invert
= new \OOUI\
CheckboxInputWidget( array_merge(
80 // TODO Should use a LabelWidget? But they don't work like HTML <label>s yet
81 $this->invertLabel
= new \OOUI\
FieldLayout(
84 [ 'align' => 'inline' ],
85 $config['invertLabel']
92 ->addClasses( [ 'mw-widget-complexNamespaceInputWidget' ] )
93 ->appendContent( $this->namespace, $this->associatedLabel
, $this->invertLabel
);
96 protected function getJavaScriptClassName() {
97 return 'mw.widgets.ComplexNamespaceInputWidget';
100 public function getConfig( &$config ) {
101 $config = array_merge(
117 return parent
::getConfig( $config );