I can see that "parent::__construct" literally calls the parent constructor. I can see that stuff preceeded by the keyword "protected" is protected. I really (really) don't need comments explaining such. Change-Id: I7458e714976a6acd3ba6a7c93fdc27d03903df83
28 lines
621 B
PHP
28 lines
621 B
PHP
<?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.
|
||
*/
|
||
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';
|
||
}
|
||
}
|