3 * MediaWiki Widgets – NamespaceInputWidget 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.
13 class NamespaceInputWidget
extends \OOUI\DropdownInputWidget
{
15 protected $includeAllValue = null;
18 * @param array $config Configuration options
19 * @param string $config['includeAllValue'] If specified, add a "all namespaces" option to the
20 * namespace dropdown, and use this as the input value for it
21 * @param number[] $config['exclude'] List of namespace numbers to exclude from the selector
23 public function __construct( array $config = [] ) {
24 // Configuration initialization
25 $config['options'] = $this->getNamespaceDropdownOptions( $config );
28 parent
::__construct( $config );
31 $this->includeAllValue
= isset( $config['includeAllValue'] ) ?
$config['includeAllValue'] : null;
32 $this->exclude
= isset( $config['exclude'] ) ?
$config['exclude'] : [];
35 $this->addClasses( [ 'mw-widget-namespaceInputWidget' ] );
38 protected function getNamespaceDropdownOptions( array $config ) {
39 $namespaceOptionsParams = [
40 'all' => isset( $config['includeAllValue'] ) ?
$config['includeAllValue'] : null,
41 'exclude' => isset( $config['exclude'] ) ?
$config['exclude'] : null
43 $namespaceOptions = \Html
::namespaceSelectorOptions( $namespaceOptionsParams );
46 foreach ( $namespaceOptions as $id => $name ) {
48 'data' => (string)$id,
56 protected function getJavaScriptClassName() {
57 return 'mw.widgets.NamespaceInputWidget';
60 public function getConfig( &$config ) {
61 $config['includeAllValue'] = $this->includeAllValue
;
62 $config['exclude'] = $this->exclude
;
63 // Skip DropdownInputWidget's getConfig(), we don't need 'options' config
64 return \OOUI\InputWidget
::getConfig( $config );