wiki.techinc.nl/includes/widget/UserInputWidget.php
Thiemo Mättig e8b10f6804 Simplify documentation headers of includes/widgets/…Widget.php files
Most notably: The documentation header repeats the file name. This
appears to be fully automatically generated, but does not add helpful
information.

Change-Id: I9edf15dd25ef6cc52fe931fffde69f0bd9042474
2018-01-10 13:44:05 +01:00

31 lines
645 B
PHP

<?php
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 = [] ) {
parent::__construct( $config );
// Initialization
$this->addClasses( [ 'mw-widget-userInputWidget' ] );
}
protected function getJavaScriptClassName() {
return 'mw.widgets.UserInputWidget';
}
public function getConfig( &$config ) {
$config['$overlay'] = true;
return parent::getConfig( $config );
}
}