31 lines
718 B
PHP
31 lines
718 B
PHP
|
|
<?php
|
|||
|
|
/**
|
|||
|
|
* MediaWiki Widgets <EFBFBD> UserInputWidget class.
|
|||
|
|
*
|
|||
|
|
* @copyright 2011-2015 MediaWiki Widgets Team and others; see AUTHORS.txt
|
|||
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|||
|
|
*/
|
|||
|
|
namespace MediaWiki\Widget;
|
|||
|
|
|
|||
|
|
use OOUI\TextInputWidget;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* User input widget.
|
|||
|
|
*/
|
|||
|
|
class UserInputWidget extends TextInputWidget {
|
|||
|
|
/**
|
|||
|
|
* @param array $config Configuration options
|
|||
|
|
*/
|
|||
|
|
public function __construct( array $config = array() ) {
|
|||
|
|
// Parent constructor
|
|||
|
|
parent::__construct( array_merge( $config, array( 'infusable' => true ) ) );
|
|||
|
|
|
|||
|
|
// Initialization
|
|||
|
|
$this->addClasses( array( 'mw-widget-userInputWidget' ) );
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected function getJavaScriptClassName() {
|
|||
|
|
return 'mw.widgets.UserInputWidget';
|
|||
|
|
}
|
|||
|
|
}
|