MediaWiki REL1_33
HTMLForm.php
Go to the documentation of this file.
1<?php
2
24use Wikimedia\ObjectFactory;
25
133class HTMLForm extends ContextSource {
134 // A mapping of 'type' inputs onto standard HTMLFormField subclasses
135 public static $typeMappings = [
136 'api' => HTMLApiField::class,
137 'text' => HTMLTextField::class,
138 'textwithbutton' => HTMLTextFieldWithButton::class,
139 'textarea' => HTMLTextAreaField::class,
140 'select' => HTMLSelectField::class,
141 'combobox' => HTMLComboboxField::class,
142 'radio' => HTMLRadioField::class,
143 'multiselect' => HTMLMultiSelectField::class,
144 'limitselect' => HTMLSelectLimitField::class,
145 'check' => HTMLCheckField::class,
146 'toggle' => HTMLCheckField::class,
147 'int' => HTMLIntField::class,
148 'float' => HTMLFloatField::class,
149 'info' => HTMLInfoField::class,
150 'selectorother' => HTMLSelectOrOtherField::class,
151 'selectandother' => HTMLSelectAndOtherField::class,
152 'namespaceselect' => HTMLSelectNamespace::class,
153 'namespaceselectwithbutton' => HTMLSelectNamespaceWithButton::class,
154 'tagfilter' => HTMLTagFilter::class,
155 'sizefilter' => HTMLSizeFilterField::class,
156 'submit' => HTMLSubmitField::class,
157 'hidden' => HTMLHiddenField::class,
158 'edittools' => HTMLEditTools::class,
159 'checkmatrix' => HTMLCheckMatrix::class,
160 'cloner' => HTMLFormFieldCloner::class,
161 'autocompleteselect' => HTMLAutoCompleteSelectField::class,
162 'language' => HTMLSelectLanguageField::class,
163 'date' => HTMLDateTimeField::class,
164 'time' => HTMLDateTimeField::class,
165 'datetime' => HTMLDateTimeField::class,
166 'expiry' => HTMLExpiryField::class,
167 // HTMLTextField will output the correct type="" attribute automagically.
168 // There are about four zillion other HTML5 input types, like range, but
169 // we don't use those at the moment, so no point in adding all of them.
170 'email' => HTMLTextField::class,
171 'password' => HTMLTextField::class,
172 'url' => HTMLTextField::class,
173 'title' => HTMLTitleTextField::class,
174 'user' => HTMLUserTextField::class,
175 'usersmultiselect' => HTMLUsersMultiselectField::class,
176 'titlesmultiselect' => HTMLTitlesMultiselectField::class,
177 'namespacesmultiselect' => HTMLNamespacesMultiselectField::class,
178 ];
179
181
183
185 protected $mFlatFields;
186
187 protected $mFieldTree;
188 protected $mShowReset = false;
189 protected $mShowSubmit = true;
190 protected $mSubmitFlags = [ 'primary', 'progressive' ];
191 protected $mShowCancel = false;
192 protected $mCancelTarget;
193
196
197 protected $mPre = '';
198 protected $mHeader = '';
199 protected $mFooter = '';
200 protected $mSectionHeaders = [];
201 protected $mSectionFooters = [];
202 protected $mPost = '';
203 protected $mId;
204 protected $mName;
205 protected $mTableId = '';
206
207 protected $mSubmitID;
208 protected $mSubmitName;
209 protected $mSubmitText;
211
213 protected $mTitle;
214 protected $mMethod = 'post';
215 protected $mWasSubmitted = false;
216
222 protected $mAction = false;
223
229 protected $mAutocomplete = null;
230
231 protected $mUseMultipart = false;
232 protected $mHiddenFields = [];
233 protected $mButtons = [];
234
235 protected $mWrapperLegend = false;
236
241 protected $mTokenSalt = '';
242
250 protected $mSubSectionBeforeFields = true;
251
257 protected $displayFormat = 'table';
258
264 'table',
265 'div',
266 'raw',
267 'inline',
268 ];
269
275 'vform',
276 'ooui',
277 ];
278
286 public static function factory( $displayFormat/*, $arguments...*/ ) {
287 $arguments = func_get_args();
288 array_shift( $arguments );
289
290 switch ( $displayFormat ) {
291 case 'vform':
292 return ObjectFactory::constructClassInstance( VFormHTMLForm::class, $arguments );
293 case 'ooui':
294 return ObjectFactory::constructClassInstance( OOUIHTMLForm::class, $arguments );
295 default:
297 $form = ObjectFactory::constructClassInstance( self::class, $arguments );
298 $form->setDisplayFormat( $displayFormat );
299 return $form;
300 }
301 }
302
311 public function __construct( $descriptor, /*IContextSource*/ $context = null,
312 $messagePrefix = ''
313 ) {
314 if ( $context instanceof IContextSource ) {
315 $this->setContext( $context );
316 $this->mTitle = false; // We don't need them to set a title
317 $this->mMessagePrefix = $messagePrefix;
318 } elseif ( $context === null && $messagePrefix !== '' ) {
319 $this->mMessagePrefix = $messagePrefix;
320 } elseif ( is_string( $context ) && $messagePrefix === '' ) {
321 // B/C since 1.18
322 // it's actually $messagePrefix
323 $this->mMessagePrefix = $context;
324 }
325
326 // Evil hack for mobile :(
327 if (
328 !$this->getConfig()->get( 'HTMLFormAllowTableFormat' )
329 && $this->displayFormat === 'table'
330 ) {
331 $this->displayFormat = 'div';
332 }
333
334 // Expand out into a tree.
335 $loadedDescriptor = [];
336 $this->mFlatFields = [];
337
338 foreach ( $descriptor as $fieldname => $info ) {
339 $section = $info['section'] ?? '';
340
341 if ( isset( $info['type'] ) && $info['type'] === 'file' ) {
342 $this->mUseMultipart = true;
343 }
344
345 $field = static::loadInputFromParameters( $fieldname, $info, $this );
346
347 $setSection =& $loadedDescriptor;
348 if ( $section ) {
349 foreach ( explode( '/', $section ) as $newName ) {
350 if ( !isset( $setSection[$newName] ) ) {
351 $setSection[$newName] = [];
352 }
353
354 $setSection =& $setSection[$newName];
355 }
356 }
357
358 $setSection[$fieldname] = $field;
359 $this->mFlatFields[$fieldname] = $field;
360 }
361
362 $this->mFieldTree = $loadedDescriptor;
363 }
364
369 public function hasField( $fieldname ) {
370 return isset( $this->mFlatFields[$fieldname] );
371 }
372
378 public function getField( $fieldname ) {
379 if ( !$this->hasField( $fieldname ) ) {
380 throw new DomainException( __METHOD__ . ': no field named ' . $fieldname );
381 }
382 return $this->mFlatFields[$fieldname];
383 }
384
395 public function setDisplayFormat( $format ) {
396 if (
397 in_array( $format, $this->availableSubclassDisplayFormats, true ) ||
398 in_array( $this->displayFormat, $this->availableSubclassDisplayFormats, true )
399 ) {
400 throw new MWException( 'Cannot change display format after creation, ' .
401 'use HTMLForm::factory() instead' );
402 }
403
404 if ( !in_array( $format, $this->availableDisplayFormats, true ) ) {
405 throw new MWException( 'Display format must be one of ' .
406 print_r(
407 array_merge(
408 $this->availableDisplayFormats,
409 $this->availableSubclassDisplayFormats
410 ),
411 true
412 ) );
413 }
414
415 // Evil hack for mobile :(
416 if ( !$this->getConfig()->get( 'HTMLFormAllowTableFormat' ) && $format === 'table' ) {
417 $format = 'div';
418 }
419
420 $this->displayFormat = $format;
421
422 return $this;
423 }
424
430 public function getDisplayFormat() {
431 return $this->displayFormat;
432 }
433
450 public static function getClassFromDescriptor( $fieldname, &$descriptor ) {
451 if ( isset( $descriptor['class'] ) ) {
452 $class = $descriptor['class'];
453 } elseif ( isset( $descriptor['type'] ) ) {
454 $class = static::$typeMappings[$descriptor['type']];
455 $descriptor['class'] = $class;
456 } else {
457 $class = null;
458 }
459
460 if ( !$class ) {
461 throw new MWException( "Descriptor with no class for $fieldname: "
462 . print_r( $descriptor, true ) );
463 }
464
465 return $class;
466 }
467
478 public static function loadInputFromParameters( $fieldname, $descriptor,
479 HTMLForm $parent = null
480 ) {
481 $class = static::getClassFromDescriptor( $fieldname, $descriptor );
482
483 $descriptor['fieldname'] = $fieldname;
484 if ( $parent ) {
485 $descriptor['parent'] = $parent;
486 }
487
488 # @todo This will throw a fatal error whenever someone try to use
489 # 'class' to feed a CSS class instead of 'cssclass'. Would be
490 # great to avoid the fatal error and show a nice error.
491 return new $class( $descriptor );
492 }
493
503 public function prepareForm() {
504 # Check if we have the info we need
505 if ( !$this->mTitle instanceof Title && $this->mTitle !== false ) {
506 throw new MWException( 'You must call setTitle() on an HTMLForm' );
507 }
508
509 # Load data from the request.
510 if (
511 $this->mFormIdentifier === null ||
512 $this->getRequest()->getVal( 'wpFormIdentifier' ) === $this->mFormIdentifier
513 ) {
514 $this->loadData();
515 } else {
516 $this->mFieldData = [];
517 }
518
519 return $this;
520 }
521
526 public function tryAuthorizedSubmit() {
527 $result = false;
528
529 if ( $this->mFormIdentifier === null ) {
530 $identOkay = true;
531 } else {
532 $identOkay = $this->getRequest()->getVal( 'wpFormIdentifier' ) === $this->mFormIdentifier;
533 }
534
535 $tokenOkay = false;
536 if ( $this->getMethod() !== 'post' ) {
537 $tokenOkay = true; // no session check needed
538 } elseif ( $this->getRequest()->wasPosted() ) {
539 $editToken = $this->getRequest()->getVal( 'wpEditToken' );
540 if ( $this->getUser()->isLoggedIn() || $editToken !== null ) {
541 // Session tokens for logged-out users have no security value.
542 // However, if the user gave one, check it in order to give a nice
543 // "session expired" error instead of "permission denied" or such.
544 $tokenOkay = $this->getUser()->matchEditToken( $editToken, $this->mTokenSalt );
545 } else {
546 $tokenOkay = true;
547 }
548 }
549
550 if ( $tokenOkay && $identOkay ) {
551 $this->mWasSubmitted = true;
552 $result = $this->trySubmit();
553 }
554
555 return $result;
556 }
557
564 public function show() {
565 $this->prepareForm();
566
567 $result = $this->tryAuthorizedSubmit();
568 if ( $result === true || ( $result instanceof Status && $result->isGood() ) ) {
569 return $result;
570 }
571
572 $this->displayForm( $result );
573
574 return false;
575 }
576
582 public function showAlways() {
583 $this->prepareForm();
584
585 $result = $this->tryAuthorizedSubmit();
586
587 $this->displayForm( $result );
588
589 return $result;
590 }
591
603 public function trySubmit() {
604 $valid = true;
605 $hoistedErrors = Status::newGood();
606 if ( $this->mValidationErrorMessage ) {
607 foreach ( $this->mValidationErrorMessage as $error ) {
608 $hoistedErrors->fatal( ...$error );
609 }
610 } else {
611 $hoistedErrors->fatal( 'htmlform-invalid-input' );
612 }
613
614 $this->mWasSubmitted = true;
615
616 # Check for cancelled submission
617 foreach ( $this->mFlatFields as $fieldname => $field ) {
618 if ( !array_key_exists( $fieldname, $this->mFieldData ) ) {
619 continue;
620 }
621 if ( $field->cancelSubmit( $this->mFieldData[$fieldname], $this->mFieldData ) ) {
622 $this->mWasSubmitted = false;
623 return false;
624 }
625 }
626
627 # Check for validation
628 foreach ( $this->mFlatFields as $fieldname => $field ) {
629 if ( !array_key_exists( $fieldname, $this->mFieldData ) ) {
630 continue;
631 }
632 if ( $field->isHidden( $this->mFieldData ) ) {
633 continue;
634 }
635 $res = $field->validate( $this->mFieldData[$fieldname], $this->mFieldData );
636 if ( $res !== true ) {
637 $valid = false;
638 if ( $res !== false && !$field->canDisplayErrors() ) {
639 if ( is_string( $res ) ) {
640 $hoistedErrors->fatal( 'rawmessage', $res );
641 } else {
642 $hoistedErrors->fatal( $res );
643 }
644 }
645 }
646 }
647
648 if ( !$valid ) {
649 return $hoistedErrors;
650 }
651
652 $callback = $this->mSubmitCallback;
653 if ( !is_callable( $callback ) ) {
654 throw new MWException( 'HTMLForm: no submit callback provided. Use ' .
655 'setSubmitCallback() to set one.' );
656 }
657
658 $data = $this->filterDataForSubmit( $this->mFieldData );
659
660 $res = call_user_func( $callback, $data, $this );
661 if ( $res === false ) {
662 $this->mWasSubmitted = false;
663 }
664
665 return $res;
666 }
667
679 public function wasSubmitted() {
680 return $this->mWasSubmitted;
681 }
682
693 public function setSubmitCallback( $cb ) {
694 $this->mSubmitCallback = $cb;
695
696 return $this;
697 }
698
707 public function setValidationErrorMessage( $msg ) {
708 $this->mValidationErrorMessage = $msg;
709
710 return $this;
711 }
712
720 public function setIntro( $msg ) {
721 $this->setPreText( $msg );
722
723 return $this;
724 }
725
734 public function setPreText( $msg ) {
735 $this->mPre = $msg;
736
737 return $this;
738 }
739
747 public function addPreText( $msg ) {
748 $this->mPre .= $msg;
749
750 return $this;
751 }
752
760 public function getPreText() {
761 return $this->mPre;
762 }
763
772 public function addHeaderText( $msg, $section = null ) {
773 if ( $section === null ) {
774 $this->mHeader .= $msg;
775 } else {
776 if ( !isset( $this->mSectionHeaders[$section] ) ) {
777 $this->mSectionHeaders[$section] = '';
778 }
779 $this->mSectionHeaders[$section] .= $msg;
780 }
781
782 return $this;
783 }
784
794 public function setHeaderText( $msg, $section = null ) {
795 if ( $section === null ) {
796 $this->mHeader = $msg;
797 } else {
798 $this->mSectionHeaders[$section] = $msg;
799 }
800
801 return $this;
802 }
803
811 public function getHeaderText( $section = null ) {
812 if ( $section === null ) {
813 return $this->mHeader;
814 } else {
815 return $this->mSectionHeaders[$section] ?? '';
816 }
817 }
818
827 public function addFooterText( $msg, $section = null ) {
828 if ( $section === null ) {
829 $this->mFooter .= $msg;
830 } else {
831 if ( !isset( $this->mSectionFooters[$section] ) ) {
832 $this->mSectionFooters[$section] = '';
833 }
834 $this->mSectionFooters[$section] .= $msg;
835 }
836
837 return $this;
838 }
839
849 public function setFooterText( $msg, $section = null ) {
850 if ( $section === null ) {
851 $this->mFooter = $msg;
852 } else {
853 $this->mSectionFooters[$section] = $msg;
854 }
855
856 return $this;
857 }
858
866 public function getFooterText( $section = null ) {
867 if ( $section === null ) {
868 return $this->mFooter;
869 } else {
870 return $this->mSectionFooters[$section] ?? '';
871 }
872 }
873
881 public function addPostText( $msg ) {
882 $this->mPost .= $msg;
883
884 return $this;
885 }
886
894 public function setPostText( $msg ) {
895 $this->mPost = $msg;
896
897 return $this;
898 }
899
909 public function addHiddenField( $name, $value, array $attribs = [] ) {
910 $attribs += [ 'name' => $name ];
911 $this->mHiddenFields[] = [ $value, $attribs ];
912
913 return $this;
914 }
915
926 public function addHiddenFields( array $fields ) {
927 foreach ( $fields as $name => $value ) {
928 $this->mHiddenFields[] = [ $value, [ 'name' => $name ] ];
929 }
930
931 return $this;
932 }
933
958 public function addButton( $data ) {
959 if ( !is_array( $data ) ) {
960 $args = func_get_args();
961 if ( count( $args ) < 2 || count( $args ) > 4 ) {
962 throw new InvalidArgumentException(
963 'Incorrect number of arguments for deprecated calling style'
964 );
965 }
966 $data = [
967 'name' => $args[0],
968 'value' => $args[1],
969 'id' => $args[2] ?? null,
970 'attribs' => $args[3] ?? null,
971 ];
972 } else {
973 if ( !isset( $data['name'] ) ) {
974 throw new InvalidArgumentException( 'A name is required' );
975 }
976 if ( !isset( $data['value'] ) ) {
977 throw new InvalidArgumentException( 'A value is required' );
978 }
979 }
980 $this->mButtons[] = $data + [
981 'id' => null,
982 'attribs' => null,
983 'flags' => null,
984 'framed' => true,
985 ];
986
987 return $this;
988 }
989
999 public function setTokenSalt( $salt ) {
1000 $this->mTokenSalt = $salt;
1001
1002 return $this;
1003 }
1004
1017 public function displayForm( $submitResult ) {
1018 $this->getOutput()->addHTML( $this->getHTML( $submitResult ) );
1019 }
1020
1029 public function getHTML( $submitResult ) {
1030 # For good measure (it is the default)
1031 $this->getOutput()->preventClickjacking();
1032 $this->getOutput()->addModules( 'mediawiki.htmlform' );
1033 $this->getOutput()->addModuleStyles( 'mediawiki.htmlform.styles' );
1034
1035 $html = ''
1036 . $this->getErrorsOrWarnings( $submitResult, 'error' )
1037 . $this->getErrorsOrWarnings( $submitResult, 'warning' )
1038 . $this->getHeaderText()
1039 . $this->getBody()
1040 . $this->getHiddenFields()
1041 . $this->getButtons()
1042 . $this->getFooterText();
1043
1044 $html = $this->wrapForm( $html );
1045
1046 return '' . $this->mPre . $html . $this->mPost;
1047 }
1048
1053 protected function getFormAttributes() {
1054 # Use multipart/form-data
1055 $encType = $this->mUseMultipart
1056 ? 'multipart/form-data'
1057 : 'application/x-www-form-urlencoded';
1058 # Attributes
1059 $attribs = [
1060 'class' => 'mw-htmlform',
1061 'action' => $this->getAction(),
1062 'method' => $this->getMethod(),
1063 'enctype' => $encType,
1064 ];
1065 if ( $this->mId ) {
1066 $attribs['id'] = $this->mId;
1067 }
1068 if ( is_string( $this->mAutocomplete ) ) {
1069 $attribs['autocomplete'] = $this->mAutocomplete;
1070 }
1071 if ( $this->mName ) {
1072 $attribs['name'] = $this->mName;
1073 }
1074 if ( $this->needsJSForHtml5FormValidation() ) {
1075 $attribs['novalidate'] = true;
1076 }
1077 return $attribs;
1078 }
1079
1087 public function wrapForm( $html ) {
1088 # Include a <fieldset> wrapper for style, if requested.
1089 if ( $this->mWrapperLegend !== false ) {
1090 $legend = is_string( $this->mWrapperLegend ) ? $this->mWrapperLegend : false;
1091 $html = Xml::fieldset( $legend, $html );
1092 }
1093
1094 return Html::rawElement(
1095 'form',
1096 $this->getFormAttributes(),
1097 $html
1098 );
1099 }
1100
1105 public function getHiddenFields() {
1106 $html = '';
1107 if ( $this->mFormIdentifier !== null ) {
1108 $html .= Html::hidden(
1109 'wpFormIdentifier',
1110 $this->mFormIdentifier
1111 ) . "\n";
1112 }
1113 if ( $this->getMethod() === 'post' ) {
1114 $html .= Html::hidden(
1115 'wpEditToken',
1116 $this->getUser()->getEditToken( $this->mTokenSalt ),
1117 [ 'id' => 'wpEditToken' ]
1118 ) . "\n";
1119 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
1120 }
1121
1122 $articlePath = $this->getConfig()->get( 'ArticlePath' );
1123 if ( strpos( $articlePath, '?' ) !== false && $this->getMethod() === 'get' ) {
1124 $html .= Html::hidden( 'title', $this->getTitle()->getPrefixedText() ) . "\n";
1125 }
1126
1127 foreach ( $this->mHiddenFields as $data ) {
1128 list( $value, $attribs ) = $data;
1129 $html .= Html::hidden( $attribs['name'], $value, $attribs ) . "\n";
1130 }
1131
1132 return $html;
1133 }
1134
1139 public function getButtons() {
1140 $buttons = '';
1141 $useMediaWikiUIEverywhere = $this->getConfig()->get( 'UseMediaWikiUIEverywhere' );
1142
1143 if ( $this->mShowSubmit ) {
1144 $attribs = [];
1145
1146 if ( isset( $this->mSubmitID ) ) {
1147 $attribs['id'] = $this->mSubmitID;
1148 }
1149
1150 if ( isset( $this->mSubmitName ) ) {
1151 $attribs['name'] = $this->mSubmitName;
1152 }
1153
1154 if ( isset( $this->mSubmitTooltip ) ) {
1155 $attribs += Linker::tooltipAndAccesskeyAttribs( $this->mSubmitTooltip );
1156 }
1157
1158 $attribs['class'] = [ 'mw-htmlform-submit' ];
1159
1160 if ( $useMediaWikiUIEverywhere ) {
1161 foreach ( $this->mSubmitFlags as $flag ) {
1162 $attribs['class'][] = 'mw-ui-' . $flag;
1163 }
1164 $attribs['class'][] = 'mw-ui-button';
1165 }
1166
1167 $buttons .= Xml::submitButton( $this->getSubmitText(), $attribs ) . "\n";
1168 }
1169
1170 if ( $this->mShowReset ) {
1171 $buttons .= Html::element(
1172 'input',
1173 [
1174 'type' => 'reset',
1175 'value' => $this->msg( 'htmlform-reset' )->text(),
1176 'class' => $useMediaWikiUIEverywhere ? 'mw-ui-button' : null,
1177 ]
1178 ) . "\n";
1179 }
1180
1181 if ( $this->mShowCancel ) {
1182 $target = $this->mCancelTarget ?: Title::newMainPage();
1183 if ( $target instanceof Title ) {
1184 $target = $target->getLocalURL();
1185 }
1186 $buttons .= Html::element(
1187 'a',
1188 [
1189 'class' => $useMediaWikiUIEverywhere ? 'mw-ui-button' : null,
1190 'href' => $target,
1191 ],
1192 $this->msg( 'cancel' )->text()
1193 ) . "\n";
1194 }
1195
1196 // IE<8 has bugs with <button>, so we'll need to avoid them.
1197 $isBadIE = preg_match( '/MSIE [1-7]\./i', $this->getRequest()->getHeader( 'User-Agent' ) );
1198
1199 foreach ( $this->mButtons as $button ) {
1200 $attrs = [
1201 'type' => 'submit',
1202 'name' => $button['name'],
1203 'value' => $button['value']
1204 ];
1205
1206 if ( isset( $button['label-message'] ) ) {
1207 $label = $this->getMessage( $button['label-message'] )->parse();
1208 } elseif ( isset( $button['label'] ) ) {
1209 $label = htmlspecialchars( $button['label'] );
1210 } elseif ( isset( $button['label-raw'] ) ) {
1211 $label = $button['label-raw'];
1212 } else {
1213 $label = htmlspecialchars( $button['value'] );
1214 }
1215
1216 if ( $button['attribs'] ) {
1217 $attrs += $button['attribs'];
1218 }
1219
1220 if ( isset( $button['id'] ) ) {
1221 $attrs['id'] = $button['id'];
1222 }
1223
1224 if ( $useMediaWikiUIEverywhere ) {
1225 $attrs['class'] = isset( $attrs['class'] ) ? (array)$attrs['class'] : [];
1226 $attrs['class'][] = 'mw-ui-button';
1227 }
1228
1229 if ( $isBadIE ) {
1230 $buttons .= Html::element( 'input', $attrs ) . "\n";
1231 } else {
1232 $buttons .= Html::rawElement( 'button', $attrs, $label ) . "\n";
1233 }
1234 }
1235
1236 if ( !$buttons ) {
1237 return '';
1238 }
1239
1240 return Html::rawElement( 'span',
1241 [ 'class' => 'mw-htmlform-submit-buttons' ], "\n$buttons" ) . "\n";
1242 }
1243
1248 public function getBody() {
1249 return $this->displaySection( $this->mFieldTree, $this->mTableId );
1250 }
1251
1261 public function getErrors( $errors ) {
1262 wfDeprecated( __METHOD__ );
1263 return $this->getErrorsOrWarnings( $errors, 'error' );
1264 }
1265
1274 public function getErrorsOrWarnings( $elements, $elementsType ) {
1275 if ( !in_array( $elementsType, [ 'error', 'warning' ], true ) ) {
1276 throw new DomainException( $elementsType . ' is not a valid type.' );
1277 }
1278 $elementstr = false;
1279 if ( $elements instanceof Status ) {
1280 list( $errorStatus, $warningStatus ) = $elements->splitByErrorType();
1281 $status = $elementsType === 'error' ? $errorStatus : $warningStatus;
1282 if ( $status->isGood() ) {
1283 $elementstr = '';
1284 } else {
1285 $elementstr = $this->getOutput()->parseAsInterface(
1286 $status->getWikiText()
1287 );
1288 }
1289 } elseif ( is_array( $elements ) && $elementsType === 'error' ) {
1290 $elementstr = $this->formatErrors( $elements );
1291 } elseif ( $elementsType === 'error' ) {
1292 $elementstr = $elements;
1293 }
1294
1295 return $elementstr
1296 ? Html::rawElement( 'div', [ 'class' => $elementsType ], $elementstr )
1297 : '';
1298 }
1299
1307 public function formatErrors( $errors ) {
1308 $errorstr = '';
1309
1310 foreach ( $errors as $error ) {
1311 $errorstr .= Html::rawElement(
1312 'li',
1313 [],
1314 $this->getMessage( $error )->parse()
1315 );
1316 }
1317
1318 $errorstr = Html::rawElement( 'ul', [], $errorstr );
1319
1320 return $errorstr;
1321 }
1322
1330 public function setSubmitText( $t ) {
1331 $this->mSubmitText = $t;
1332
1333 return $this;
1334 }
1335
1342 public function setSubmitDestructive() {
1343 $this->mSubmitFlags = [ 'destructive', 'primary' ];
1344
1345 return $this;
1346 }
1347
1356 public function setSubmitProgressive() {
1357 wfDeprecated( __METHOD__, '1.32' );
1358 $this->mSubmitFlags = [ 'progressive', 'primary' ];
1359
1360 return $this;
1361 }
1362
1371 public function setSubmitTextMsg( $msg ) {
1372 if ( !$msg instanceof Message ) {
1373 $msg = $this->msg( $msg );
1374 }
1375 $this->setSubmitText( $msg->text() );
1376
1377 return $this;
1378 }
1379
1384 public function getSubmitText() {
1385 return $this->mSubmitText ?: $this->msg( 'htmlform-submit' )->text();
1386 }
1387
1393 public function setSubmitName( $name ) {
1394 $this->mSubmitName = $name;
1395
1396 return $this;
1397 }
1398
1404 public function setSubmitTooltip( $name ) {
1405 $this->mSubmitTooltip = $name;
1406
1407 return $this;
1408 }
1409
1418 public function setSubmitID( $t ) {
1419 $this->mSubmitID = $t;
1420
1421 return $this;
1422 }
1423
1439 public function setFormIdentifier( $ident ) {
1440 $this->mFormIdentifier = $ident;
1441
1442 return $this;
1443 }
1444
1455 public function suppressDefaultSubmit( $suppressSubmit = true ) {
1456 $this->mShowSubmit = !$suppressSubmit;
1457
1458 return $this;
1459 }
1460
1467 public function showCancel( $show = true ) {
1468 $this->mShowCancel = $show;
1469 return $this;
1470 }
1471
1478 public function setCancelTarget( $target ) {
1479 $this->mCancelTarget = $target;
1480 return $this;
1481 }
1482
1492 public function setTableId( $id ) {
1493 $this->mTableId = $id;
1494
1495 return $this;
1496 }
1497
1503 public function setId( $id ) {
1504 $this->mId = $id;
1505
1506 return $this;
1507 }
1508
1513 public function setName( $name ) {
1514 $this->mName = $name;
1515
1516 return $this;
1517 }
1518
1530 public function setWrapperLegend( $legend ) {
1531 $this->mWrapperLegend = $legend;
1532
1533 return $this;
1534 }
1535
1545 public function setWrapperLegendMsg( $msg ) {
1546 if ( !$msg instanceof Message ) {
1547 $msg = $this->msg( $msg );
1548 }
1549 $this->setWrapperLegend( $msg->text() );
1550
1551 return $this;
1552 }
1553
1563 public function setMessagePrefix( $p ) {
1564 $this->mMessagePrefix = $p;
1565
1566 return $this;
1567 }
1568
1576 public function setTitle( $t ) {
1577 $this->mTitle = $t;
1578
1579 return $this;
1580 }
1581
1586 public function getTitle() {
1587 return $this->mTitle === false
1588 ? $this->getContext()->getTitle()
1589 : $this->mTitle;
1590 }
1591
1599 public function setMethod( $method = 'post' ) {
1600 $this->mMethod = strtolower( $method );
1601
1602 return $this;
1603 }
1604
1608 public function getMethod() {
1609 return $this->mMethod;
1610 }
1611
1621 protected function wrapFieldSetSection( $legend, $section, $attributes, $isRoot ) {
1622 return Xml::fieldset( $legend, $section, $attributes ) . "\n";
1623 }
1624
1641 public function displaySection( $fields,
1642 $sectionName = '',
1643 $fieldsetIDPrefix = '',
1644 &$hasUserVisibleFields = false
1645 ) {
1646 if ( $this->mFieldData === null ) {
1647 throw new LogicException( 'HTMLForm::displaySection() called on uninitialized field data. '
1648 . 'You probably called displayForm() without calling prepareForm() first.' );
1649 }
1650
1652
1653 $html = [];
1654 $subsectionHtml = '';
1655 $hasLabel = false;
1656
1657 // Conveniently, PHP method names are case-insensitive.
1658 // For grep: this can call getDiv, getRaw, getInline, getVForm, getOOUI
1659 $getFieldHtmlMethod = $displayFormat === 'table' ? 'getTableRow' : ( 'get' . $displayFormat );
1660
1661 foreach ( $fields as $key => $value ) {
1662 if ( $value instanceof HTMLFormField ) {
1663 $v = array_key_exists( $key, $this->mFieldData )
1664 ? $this->mFieldData[$key]
1665 : $value->getDefault();
1666
1667 $retval = $value->$getFieldHtmlMethod( $v );
1668
1669 // check, if the form field should be added to
1670 // the output.
1671 if ( $value->hasVisibleOutput() ) {
1672 $html[] = $retval;
1673
1674 $labelValue = trim( $value->getLabel() );
1675 if ( $labelValue !== "\u{00A0}" && $labelValue !== '&#160;' && $labelValue !== '' ) {
1676 $hasLabel = true;
1677 }
1678
1679 $hasUserVisibleFields = true;
1680 }
1681 } elseif ( is_array( $value ) ) {
1682 $subsectionHasVisibleFields = false;
1683 $section =
1684 $this->displaySection( $value,
1685 "mw-htmlform-$key",
1686 "$fieldsetIDPrefix$key-",
1687 $subsectionHasVisibleFields );
1688 $legend = null;
1689
1690 if ( $subsectionHasVisibleFields === true ) {
1691 // Display the section with various niceties.
1692 $hasUserVisibleFields = true;
1693
1694 $legend = $this->getLegend( $key );
1695
1696 $section = $this->getHeaderText( $key ) .
1697 $section .
1698 $this->getFooterText( $key );
1699
1700 $attributes = [];
1701 if ( $fieldsetIDPrefix ) {
1702 $attributes['id'] = Sanitizer::escapeIdForAttribute( "$fieldsetIDPrefix$key" );
1703 }
1704 $subsectionHtml .= $this->wrapFieldSetSection(
1705 $legend, $section, $attributes, $fields === $this->mFieldTree
1706 );
1707 } else {
1708 // Just return the inputs, nothing fancy.
1709 $subsectionHtml .= $section;
1710 }
1711 }
1712 }
1713
1714 $html = $this->formatSection( $html, $sectionName, $hasLabel );
1715
1716 if ( $subsectionHtml ) {
1717 if ( $this->mSubSectionBeforeFields ) {
1718 return $subsectionHtml . "\n" . $html;
1719 } else {
1720 return $html . "\n" . $subsectionHtml;
1721 }
1722 } else {
1723 return $html;
1724 }
1725 }
1726
1734 protected function formatSection( array $fieldsHtml, $sectionName, $anyFieldHasLabel ) {
1735 if ( !$fieldsHtml ) {
1736 // Do not generate any wrappers for empty sections. Sections may be empty if they only have
1737 // subsections, but no fields. A legend will still be added in wrapFieldSetSection().
1738 return '';
1739 }
1740
1742 $html = implode( '', $fieldsHtml );
1743
1744 if ( $displayFormat === 'raw' ) {
1745 return $html;
1746 }
1747
1748 $classes = [];
1749
1750 if ( !$anyFieldHasLabel ) { // Avoid strange spacing when no labels exist
1751 $classes[] = 'mw-htmlform-nolabel';
1752 }
1753
1754 $attribs = [
1755 'class' => implode( ' ', $classes ),
1756 ];
1757
1758 if ( $sectionName ) {
1759 $attribs['id'] = Sanitizer::escapeIdForAttribute( $sectionName );
1760 }
1761
1762 if ( $displayFormat === 'table' ) {
1763 return Html::rawElement( 'table',
1764 $attribs,
1765 Html::rawElement( 'tbody', [], "\n$html\n" ) ) . "\n";
1766 } elseif ( $displayFormat === 'inline' ) {
1767 return Html::rawElement( 'span', $attribs, "\n$html\n" );
1768 } else {
1769 return Html::rawElement( 'div', $attribs, "\n$html\n" );
1770 }
1771 }
1772
1776 public function loadData() {
1777 $fieldData = [];
1778
1779 foreach ( $this->mFlatFields as $fieldname => $field ) {
1780 $request = $this->getRequest();
1781 if ( $field->skipLoadData( $request ) ) {
1782 continue;
1783 } elseif ( !empty( $field->mParams['disabled'] ) ) {
1784 $fieldData[$fieldname] = $field->getDefault();
1785 } else {
1786 $fieldData[$fieldname] = $field->loadDataFromRequest( $request );
1787 }
1788 }
1789
1790 # Filter data.
1791 foreach ( $fieldData as $name => &$value ) {
1792 $field = $this->mFlatFields[$name];
1793 $value = $field->filter( $value, $this->mFlatFields );
1794 }
1795
1796 $this->mFieldData = $fieldData;
1797 }
1798
1806 public function suppressReset( $suppressReset = true ) {
1807 $this->mShowReset = !$suppressReset;
1808
1809 return $this;
1810 }
1811
1821 public function filterDataForSubmit( $data ) {
1822 return $data;
1823 }
1824
1833 public function getLegend( $key ) {
1834 return $this->msg( "{$this->mMessagePrefix}-$key" )->text();
1835 }
1836
1847 public function setAction( $action ) {
1848 $this->mAction = $action;
1849
1850 return $this;
1851 }
1852
1860 public function getAction() {
1861 // If an action is alredy provided, return it
1862 if ( $this->mAction !== false ) {
1863 return $this->mAction;
1864 }
1865
1866 $articlePath = $this->getConfig()->get( 'ArticlePath' );
1867 // Check whether we are in GET mode and the ArticlePath contains a "?"
1868 // meaning that getLocalURL() would return something like "index.php?title=...".
1869 // As browser remove the query string before submitting GET forms,
1870 // it means that the title would be lost. In such case use wfScript() instead
1871 // and put title in an hidden field (see getHiddenFields()).
1872 if ( strpos( $articlePath, '?' ) !== false && $this->getMethod() === 'get' ) {
1873 return wfScript();
1874 }
1875
1876 return $this->getTitle()->getLocalURL();
1877 }
1878
1889 public function setAutocomplete( $autocomplete ) {
1890 $this->mAutocomplete = $autocomplete;
1891
1892 return $this;
1893 }
1894
1901 protected function getMessage( $value ) {
1902 return Message::newFromSpecifier( $value )->setContext( $this );
1903 }
1904
1915 foreach ( $this->mFlatFields as $fieldname => $field ) {
1916 if ( $field->needsJSForHtml5FormValidation() ) {
1917 return true;
1918 }
1919 }
1920 return false;
1921 }
1922}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getContext()
if( $line===false) $args
Definition cdb.php:64
The simplest way of implementing IContextSource is to hold a RequestContext as a member variable and ...
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
setContext(IContextSource $context)
The parent class to generate form fields.
Object handling generic submission, CSRF protection, layout and other logic for UI forms.
Definition HTMLForm.php:133
needsJSForHtml5FormValidation()
Whether this form, with its current fields, requires the user agent to have JavaScript enabled for th...
setSubmitCallback( $cb)
Set a callback to a function to do something with the form once it's been successfully validated.
Definition HTMLForm.php:693
setHeaderText( $msg, $section=null)
Set header text, inside the form.
Definition HTMLForm.php:794
displayForm( $submitResult)
Display the form (sending to the context's OutputPage object), with an appropriate error message or s...
string null $mAutocomplete
Form attribute autocomplete.
Definition HTMLForm.php:229
bool string $mAction
Form action URL.
Definition HTMLForm.php:222
setAction( $action)
Set the value for the action attribute of the form.
string array $mTokenSalt
Salt for the edit token.
Definition HTMLForm.php:241
getSubmitText()
Get the text for the submit button, either customised or a default.
setMethod( $method='post')
Set the method used to submit the form.
$mValidationErrorMessage
Definition HTMLForm.php:195
setValidationErrorMessage( $msg)
Set a message to display on a validation error.
Definition HTMLForm.php:707
getMessage( $value)
Turns a *-message parameter (which could be a MessageSpecifier, or a message name,...
setAutocomplete( $autocomplete)
Set the value for the autocomplete attribute of the form.
static loadInputFromParameters( $fieldname, $descriptor, HTMLForm $parent=null)
Initialise a new Object for the field.
Definition HTMLForm.php:478
setSubmitName( $name)
setTitle( $t)
Set the title for form submission.
static getClassFromDescriptor( $fieldname, &$descriptor)
Get the HTMLFormField subclass for this descriptor.
Definition HTMLForm.php:450
array $availableSubclassDisplayFormats
Available formats in which to display the form.
Definition HTMLForm.php:274
string $displayFormat
Format in which to display form.
Definition HTMLForm.php:257
__construct( $descriptor, $context=null, $messagePrefix='')
Build a new HTMLForm from an array of field attributes.
Definition HTMLForm.php:311
setTableId( $id)
Set the id of the <table> or outermost <div> element.
getHTML( $submitResult)
Returns the raw HTML generated by the form.
getLegend( $key)
Get a string to go in the "<legend>" of a section fieldset.
setSubmitTextMsg( $msg)
Set the text for the submit button to a message.
setSubmitProgressive()
Identify that the submit button in the form has a progressive action.
wrapFieldSetSection( $legend, $section, $attributes, $isRoot)
Wraps the given $section into an user-visible fieldset.
filterDataForSubmit( $data)
Overload this if you want to apply special filtration routines to the form as a whole,...
setWrapperLegendMsg( $msg)
Prompt the whole form to be wrapped in a "<fieldset>", with this message as its "<legend>" element.
setId( $id)
setWrapperLegend( $legend)
Prompt the whole form to be wrapped in a "<fieldset>", with this text as its "<legend>" element.
formatErrors( $errors)
Format a stack of error messages into a single HTML string.
$mSubSectionBeforeFields
If true, sections that contain both fields and subsections will render their subsections before their...
Definition HTMLForm.php:250
setDisplayFormat( $format)
Set format in which to display the form.
Definition HTMLForm.php:395
addButton( $data)
Add a button to the form.
Definition HTMLForm.php:958
loadData()
Construct the form fields from the Descriptor array.
getPreText()
Get the introductory message HTML.
Definition HTMLForm.php:760
getHiddenFields()
Get the hidden fields that should go inside the form.
setSubmitDestructive()
Identify that the submit button in the form has a destructive action.
suppressDefaultSubmit( $suppressSubmit=true)
Stop a default submit button being shown for this form.
setSubmitID( $t)
Set the id for the submit button.
getDisplayFormat()
Getter for displayFormat.
Definition HTMLForm.php:430
getAction()
Get the value for the action attribute of the form.
show()
The here's-one-I-made-earlier option: do the submission if posted, or display the form with or withou...
Definition HTMLForm.php:564
hasField( $fieldname)
Definition HTMLForm.php:369
addFooterText( $msg, $section=null)
Add footer text, inside the form.
Definition HTMLForm.php:827
addPostText( $msg)
Add text to the end of the display.
Definition HTMLForm.php:881
getFooterText( $section=null)
Get footer text.
Definition HTMLForm.php:866
addHeaderText( $msg, $section=null)
Add HTML to the header, inside the form.
Definition HTMLForm.php:772
prepareForm()
Prepare form for submission.
Definition HTMLForm.php:503
getTitle()
Get the title.
wasSubmitted()
Test whether the form was considered to have been submitted or not, i.e.
Definition HTMLForm.php:679
getHeaderText( $section=null)
Get header text.
Definition HTMLForm.php:811
tryAuthorizedSubmit()
Try submitting, with edit token check first.
Definition HTMLForm.php:526
setSubmitTooltip( $name)
displaySection( $fields, $sectionName='', $fieldsetIDPrefix='', &$hasUserVisibleFields=false)
setPreText( $msg)
Set the introductory message HTML, overwriting any existing message.
Definition HTMLForm.php:734
addHiddenField( $name, $value, array $attribs=[])
Add a hidden field to the output.
Definition HTMLForm.php:909
setFooterText( $msg, $section=null)
Set footer text, inside the form.
Definition HTMLForm.php:849
setMessagePrefix( $p)
Set the prefix for various default messages.
getField( $fieldname)
Definition HTMLForm.php:378
wrapForm( $html)
Wrap the form innards in an actual "<form>" element.
getFormAttributes()
Get HTML attributes for the <form> tag.
getBody()
Get the whole body of the form.
showAlways()
Same as self::show with the difference, that the form will be added to the output,...
Definition HTMLForm.php:582
setTokenSalt( $salt)
Set the salt for the edit token.
Definition HTMLForm.php:999
addPreText( $msg)
Add HTML to introductory message.
Definition HTMLForm.php:747
getErrors( $errors)
Format and display an error message stack.
setFormIdentifier( $ident)
Set an internal identifier for this form.
setName( $name)
suppressReset( $suppressReset=true)
Stop a reset button being shown for this form.
setPostText( $msg)
Set text at the end of the display.
Definition HTMLForm.php:894
static $typeMappings
Definition HTMLForm.php:135
formatSection(array $fieldsHtml, $sectionName, $anyFieldHasLabel)
Put a form section together from the individual fields' HTML, merging it and wrapping.
setCancelTarget( $target)
Sets the target where the user is redirected to after clicking cancel.
static factory( $displayFormat)
Construct a HTMLForm object for given display type.
Definition HTMLForm.php:286
array $availableDisplayFormats
Available formats in which to display the form.
Definition HTMLForm.php:263
showCancel( $show=true)
Show a cancel button (or prevent it).
setSubmitText( $t)
Set the text for the submit button.
setIntro( $msg)
Set the introductory message, overwriting any existing message.
Definition HTMLForm.php:720
getButtons()
Get the submit and (potentially) reset buttons.
trySubmit()
Validate all the fields, and call the submission callback function if everything is kosher.
Definition HTMLForm.php:603
HTMLFormField[] $mFlatFields
Definition HTMLForm.php:185
getErrorsOrWarnings( $elements, $elementsType)
Returns a formatted list of errors or warnings from the given elements.
addHiddenFields(array $fields)
Add an array of hidden fields to the output.
Definition HTMLForm.php:926
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[], $options=null)
Returns the attributes for the tooltip and access key.
Definition Linker.php:2130
MediaWiki exception.
The Message class provides methods which fulfil two basic services:
Definition Message.php:160
isGood()
Returns whether the operation completed and didn't have any error or warnings.
Generic operation result class Has warning/error list, boolean status and arbitrary value.
Definition Status.php:40
Represents a title within MediaWiki.
Definition Title.php:40
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
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:2843
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImgAuthModifyHeaders':Executed just before a file is streamed to a user via img_auth.php, allowing headers to be modified beforehand. $title:LinkTarget object & $headers:HTTP headers(name=> value, names are case insensitive). Two headers get special handling:If-Modified-Since(value must be a valid HTTP date) and Range(must be of the form "bytes=(\d*-\d*)") will be honored when streaming the file. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition hooks.txt:1991
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1266
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 and they can depend only on the ResourceLoaderContext $context
Definition hooks.txt:2848
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:2011
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2012
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
Definition hooks.txt:3070
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface for objects which can provide a MediaWiki context on request.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$parent