MediaWiki REL1_37
HTMLTagMultiselectField.php
Go to the documentation of this file.
1<?php
2
4
19 public function loadDataFromRequest( $request ) {
20 $value = $request->getText( $this->mName, $this->getDefault() );
21
22 $tagsArray = explode( "\n", $value );
23 // Remove empty lines
24 $tagsArray = array_values( array_filter( $tagsArray, static function ( $tag ) {
25 return trim( $tag ) !== '';
26 } ) );
27 // Remove any duplicate tags
28 $uniqueTags = array_unique( $tagsArray );
29
30 // This function is expected to return a string
31 return implode( "\n", $uniqueTags );
32 }
33
34 public function validate( $value, $alldata ) {
35 if ( $value === null ) {
36 return false;
37 }
38
39 // $value is a string, because HTMLForm fields store their values as strings
40 $tagsArray = explode( "\n", $value );
41
42 if ( isset( $this->mParams['max'] ) && ( count( $tagsArray ) > $this->mParams['max'] ) ) {
43 return $this->msg( 'htmlform-multiselect-toomany', $this->mParams['max'] );
44 }
45
46 foreach ( $tagsArray as $tag ) {
47 $result = parent::validate( $tag, $alldata );
48 if ( $result !== true ) {
49 return $result;
50 }
51
52 if ( !$this->mParams['allowArbitrary'] && $tag ) {
53 $allowedValues = $this->mParams['allowedValues'] ?? [];
54 if ( !in_array( $tag, $allowedValues ) ) {
55 return $this->msg( 'htmlform-tag-not-allowed', $tag )->escaped();
56 }
57 }
58 }
59
60 return true;
61 }
62
63 public function getInputHTML( $value ) {
64 $this->mParent->getOutput()->enableOOUI();
65 return $this->getInputOOUI( $value );
66 }
67
68 public function getInputOOUI( $value ) {
69 $params = [ 'name' => $this->mName ];
70
71 if ( isset( $this->mParams['id'] ) ) {
72 $params['id'] = $this->mParams['id'];
73 }
74
75 if ( isset( $this->mParams['disabled'] ) ) {
76 $params['disabled'] = $this->mParams['disabled'];
77 }
78
79 if ( isset( $this->mParams['default'] ) ) {
80 $params['default'] = $this->mParams['default'];
81 }
82
83 if ( isset( $this->mParams['placeholder'] ) ) {
84 $params['placeholder'] = $this->mParams['placeholder'];
85 } else {
86 $params['placeholder'] = $this->msg( 'mw-widgets-tagmultiselect-placeholder' )->plain();
87 }
88
89 if ( isset( $this->mParams['max'] ) ) {
90 $params['tagLimit'] = $this->mParams['max'];
91 }
92
93 if ( isset( $this->mParams['allowArbitrary'] ) ) {
94 $params['allowArbitrary'] = $this->mParams['allowArbitrary'];
95 }
96
97 if ( isset( $this->mParams['allowedValues'] ) ) {
98 $params['allowedValues'] = $this->mParams['allowedValues'];
99 }
100
101 if ( isset( $this->mParams['input'] ) ) {
102 $params['input'] = $this->mParams['input'];
103 }
104
105 if ( $value !== null ) {
106 // $value is a string, but the widget expects an array
107 $params['default'] = $value === '' ? [] : explode( "\n", $value );
108 }
109
110 // Make the field auto-infusable when it's used inside a legacy HTMLForm rather than OOUIHTMLForm
111 $params['infusable'] = true;
112 $params['classes'] = [ 'mw-htmlform-autoinfuse' ];
113 $widget = new TagMultiselectWidget( $params );
114 $widget->setAttributes( [ 'data-mw-modules' => implode( ',', $this->getOOUIModules() ) ] );
115
116 return $widget;
117 }
118
119 protected function shouldInfuseOOUI() {
120 return true;
121 }
122
123 protected function getOOUIModules() {
124 return [ 'mediawiki.widgets.TagMultiselectWidget' ];
125 }
126
127}
msg( $key,... $params)
Get a translated interface message.
Implements a tag multiselect input field for arbitrary values.
getInputHTML( $value)
This function must be implemented to return the HTML to generate the input object itself....
getOOUIModules()
Get the list of extra ResourceLoader modules which must be loaded client-side before it's possible to...
loadDataFromRequest( $request)
Get the value that this input has been set to from a posted form, or the input's default value if it ...
validate( $value, $alldata)
Override this function to add specific validation checks on the field input.
getInputOOUI( $value)
Same as getInputHTML, but returns an OOUI object.Defaults to false, which getOOUI will interpret as "...
shouldInfuseOOUI()
Whether the field should be automatically infused.
<input> field.
Base class for widgets to select multiple users, titles, namespaces, etc.