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 }
56
57 protected function getJavaScriptClassName() {
58 return 'mw.widgets.datetime.DateTimeInputWidget';
59 }
60
61 public function getConfig( &$config ) {
62 $config['type'] = $this->type;
63 if ( $this->min !== null ) {
64 $config['min'] = $this->min;
65 }
66 if ( $this->max !== null ) {
67 $config['max'] = $this->max;
68 }
69 if ( $this->clearable !== null ) {
70 $config['clearable'] = $this->clearable;
71 }
72 return parent::getConfig( $config );
73 }
74
75 protected function getInputElement( $config ) {
76 return ( new Tag( 'input' ) )->setAttributes( [ 'type' => $this->type ] );
77 }
78}