MediaWiki master
DateTimeInputWidget.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\Widget;
4
5use InvalidArgumentException;
6use OOUI\InputWidget;
7use OOUI\Tag;
8
15class DateTimeInputWidget extends InputWidget {
16
18 protected $type = null;
20 protected $min = null;
22 protected $max = null;
24 protected $clearable = null;
25
33 public function __construct( array $config = [] ) {
34 // We need $this->type set before calling the parent constructor
35 if ( !isset( $config['type'] ) ) {
36 throw new InvalidArgumentException( '$config[\'type\'] must be specified' );
37 }
38 $this->type = $config['type'];
39
40 parent::__construct( $config );
41
42 // Properties, which are ignored in PHP and just shipped back to JS
43 if ( isset( $config['min'] ) ) {
44 $this->min = $config['min'];
45 }
46 if ( isset( $config['max'] ) ) {
47 $this->max = $config['max'];
48 }
49 if ( isset( $config['clearable'] ) ) {
50 $this->clearable = $config['clearable'];
51 }
52
53 // Initialization
54 $this->addClasses( [ 'mw-widgets-datetime-dateTimeInputWidget' ] );
55 $this->appendContent( new PendingTextInputWidget() );
56 }
57
58 protected function getJavaScriptClassName() {
59 return 'mw.widgets.datetime.DateTimeInputWidget';
60 }
61
62 public function getConfig( &$config ) {
63 $config['type'] = $this->type;
64 if ( $this->min !== null ) {
65 $config['min'] = $this->min;
66 }
67 if ( $this->max !== null ) {
68 $config['max'] = $this->max;
69 }
70 if ( $this->clearable !== null ) {
71 $config['clearable'] = $this->clearable;
72 }
73 return parent::getConfig( $config );
74 }
75
76 protected function getInputElement( $config ) {
77 return ( new Tag( 'input' ) )->setAttributes( [ 'type' => $this->type ] );
78 }
79}
Text input widget that displays pending animation.