Merge "Special:Upload should not crash on failing previews"
[mediawiki.git] / includes / widget / NamespaceInputWidget.php
blob3e86738bb3963eb81b8877bfe143ba532d61d5c4
1 <?php
2 /**
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
7 */
8 namespace MediaWiki\Widget;
10 /**
11 * Namespace input widget. Displays a dropdown box with the choice of available namespaces.
13 class NamespaceInputWidget extends \OOUI\DropdownInputWidget {
15 protected $includeAllValue = null;
17 /**
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 );
27 // Parent constructor
28 parent::__construct( $config );
30 // Properties
31 $this->includeAllValue = isset( $config['includeAllValue'] ) ? $config['includeAllValue'] : null;
32 $this->exclude = isset( $config['exclude'] ) ? $config['exclude'] : [];
34 // Initialization
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 );
45 $options = [];
46 foreach ( $namespaceOptions as $id => $name ) {
47 $options[] = [
48 'data' => (string)$id,
49 'label' => $name,
53 return $options;
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 );