MediaWiki REL1_31
HTMLUsersMultiselectField.php
Go to the documentation of this file.
1<?php
2
4
18 public function loadDataFromRequest( $request ) {
19 $value = $request->getText( $this->mName, $this->getDefault() );
20
21 $usersArray = explode( "\n", $value );
22 // Remove empty lines
23 $usersArray = array_values( array_filter( $usersArray, function ( $username ) {
24 return trim( $username ) !== '';
25 } ) );
26 // This function is expected to return a string
27 return implode( "\n", $usersArray );
28 }
29
30 public function validate( $value, $alldata ) {
31 if ( !$this->mParams['exists'] ) {
32 return true;
33 }
34
35 if ( is_null( $value ) ) {
36 return false;
37 }
38
39 // $value is a string, because HTMLForm fields store their values as strings
40 $usersArray = explode( "\n", $value );
41 foreach ( $usersArray as $username ) {
42 $result = parent::validate( $username, $alldata );
43 if ( $result !== true ) {
44 return $result;
45 }
46 }
47
48 return true;
49 }
50
51 public function getInputHTML( $value ) {
52 $this->mParent->getOutput()->enableOOUI();
53 return $this->getInputOOUI( $value );
54 }
55
56 public function getInputOOUI( $value ) {
57 $params = [ 'name' => $this->mName ];
58
59 if ( isset( $this->mParams['id'] ) ) {
60 $params['id'] = $this->mParams['id'];
61 }
62
63 if ( isset( $this->mParams['disabled'] ) ) {
64 $params['disabled'] = $this->mParams['disabled'];
65 }
66
67 if ( isset( $this->mParams['default'] ) ) {
68 $params['default'] = $this->mParams['default'];
69 }
70
71 if ( isset( $this->mParams['placeholder'] ) ) {
72 $params['placeholder'] = $this->mParams['placeholder'];
73 } else {
74 $params['placeholder'] = $this->msg( 'mw-widgets-usersmultiselect-placeholder' )->plain();
75 }
76
77 if ( !is_null( $value ) ) {
78 // $value is a string, but the widget expects an array
79 $params['default'] = $value === '' ? [] : explode( "\n", $value );
80 }
81
82 // Make the field auto-infusable when it's used inside a legacy HTMLForm rather than OOUIHTMLForm
83 $params['infusable'] = true;
84 $params['classes'] = [ 'mw-htmlform-field-autoinfuse' ];
85 $widget = new UsersMultiselectWidget( $params );
86 $widget->setAttributes( [ 'data-mw-modules' => implode( ',', $this->getOOUIModules() ) ] );
87
88 return $widget;
89 }
90
91 protected function shouldInfuseOOUI() {
92 return true;
93 }
94
95 protected function getOOUIModules() {
96 return [ 'mediawiki.widgets.UsersMultiselectWidget' ];
97 }
98
99}
msg()
Get a translated interface message.
Implements a text input field for user names.
Implements a capsule multiselect input field for user names.
loadDataFromRequest( $request)
Get the value that this input has been set to from a posted form, or the input's default value if it ...
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...
shouldInfuseOOUI()
Whether the field should be automatically infused.
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.
namespace being checked & $result
Definition hooks.txt:2323
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2806
this hook is for auditing only or null if authentication failed before getting that far $username
Definition hooks.txt:785
$params