[SECURITY] [API BREAKING CHANGE] Require logout token.
[lhc/web/wiklou.git] / includes / widget / UserInputWidget.php
index 1e2d3d6..36f63c1 100644 (file)
@@ -1,29 +1,31 @@
 <?php
-/**
- * MediaWiki Widgets – UserInputWidget class.
- *
- * @copyright 2011-2015 MediaWiki Widgets Team and others; see AUTHORS.txt
- * @license The MIT License (MIT); see LICENSE.txt
- */
+
 namespace MediaWiki\Widget;
 
 /**
  * User input widget.
+ *
+ * @copyright 2011-2015 MediaWiki Widgets Team and others; see AUTHORS.txt
+ * @license MIT
  */
 class UserInputWidget extends \OOUI\TextInputWidget {
 
        /**
         * @param array $config Configuration options
         */
-       public function __construct( array $config = array() ) {
-               // Parent constructor
-               parent::__construct( array_merge( array( 'infusable' => true ), $config ) );
+       public function __construct( array $config = [] ) {
+               parent::__construct( $config );
 
                // Initialization
-               $this->addClasses( array( 'mw-widget-userInputWidget' ) );
+               $this->addClasses( [ 'mw-widget-userInputWidget' ] );
        }
 
        protected function getJavaScriptClassName() {
                return 'mw.widgets.UserInputWidget';
        }
+
+       public function getConfig( &$config ) {
+               $config['$overlay'] = true;
+               return parent::getConfig( $config );
+       }
 }