24use Wikimedia\ObjectFactory;
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,
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,
286 public static function factory( $displayFormat ) {
287 $arguments = func_get_args();
288 array_shift( $arguments );
292 return ObjectFactory::constructClassInstance( VFormHTMLForm::class, $arguments );
294 return ObjectFactory::constructClassInstance( OOUIHTMLForm::class, $arguments );
297 $form = ObjectFactory::constructClassInstance( self::class, $arguments );
316 $this->mTitle =
false;
317 $this->mMessagePrefix = $messagePrefix;
318 } elseif (
$context ===
null && $messagePrefix !==
'' ) {
319 $this->mMessagePrefix = $messagePrefix;
320 } elseif ( is_string(
$context ) && $messagePrefix ===
'' ) {
328 !$this->
getConfig()->
get(
'HTMLFormAllowTableFormat' )
329 && $this->displayFormat ===
'table'
331 $this->displayFormat =
'div';
335 $loadedDescriptor = [];
336 $this->mFlatFields = [];
338 foreach ( $descriptor
as $fieldname => $info ) {
341 if ( isset( $info[
'type'] ) && $info[
'type'] ===
'file' ) {
342 $this->mUseMultipart =
true;
345 $field = static::loadInputFromParameters( $fieldname, $info, $this );
347 $setSection =& $loadedDescriptor;
349 foreach ( explode(
'/',
$section )
as $newName ) {
350 if ( !isset( $setSection[$newName] ) ) {
351 $setSection[$newName] = [];
354 $setSection =& $setSection[$newName];
358 $setSection[$fieldname] = $field;
359 $this->mFlatFields[$fieldname] = $field;
362 $this->mFieldTree = $loadedDescriptor;
370 return isset( $this->mFlatFields[$fieldname] );
379 if ( !$this->
hasField( $fieldname ) ) {
380 throw new DomainException( __METHOD__ .
': no field named ' . $fieldname );
382 return $this->mFlatFields[$fieldname];
397 in_array( $format, $this->availableSubclassDisplayFormats,
true ) ||
398 in_array( $this->displayFormat, $this->availableSubclassDisplayFormats,
true )
400 throw new MWException(
'Cannot change display format after creation, ' .
401 'use HTMLForm::factory() instead' );
404 if ( !in_array( $format, $this->availableDisplayFormats,
true ) ) {
405 throw new MWException(
'Display format must be one of ' .
408 $this->availableDisplayFormats,
409 $this->availableSubclassDisplayFormats
416 if ( !$this->
getConfig()->
get(
'HTMLFormAllowTableFormat' ) && $format ===
'table' ) {
420 $this->displayFormat = $format;
431 return $this->displayFormat;
451 if ( isset( $descriptor[
'class'] ) ) {
452 $class = $descriptor[
'class'];
453 } elseif ( isset( $descriptor[
'type'] ) ) {
454 $class = static::$typeMappings[$descriptor[
'type']];
455 $descriptor[
'class'] = $class;
461 throw new MWException(
"Descriptor with no class for $fieldname: "
462 . print_r( $descriptor,
true ) );
481 $class = static::getClassFromDescriptor( $fieldname, $descriptor );
483 $descriptor[
'fieldname'] = $fieldname;
485 $descriptor[
'parent'] =
$parent;
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 );
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' );
509 # Load data from the request.
511 $this->mFormIdentifier ===
null ||
512 $this->
getRequest()->getVal(
'wpFormIdentifier' ) === $this->mFormIdentifier
516 $this->mFieldData = [];
529 if ( $this->mFormIdentifier ===
null ) {
532 $identOkay = $this->
getRequest()->getVal(
'wpFormIdentifier' ) === $this->mFormIdentifier;
538 } elseif ( $this->
getRequest()->wasPosted() ) {
539 $editToken = $this->
getRequest()->getVal(
'wpEditToken' );
540 if ( $this->
getUser()->isLoggedIn() || $editToken !==
null ) {
544 $tokenOkay = $this->
getUser()->matchEditToken( $editToken, $this->mTokenSalt );
550 if ( $tokenOkay && $identOkay ) {
551 $this->mWasSubmitted =
true;
605 $hoistedErrors = Status::newGood();
606 if ( $this->mValidationErrorMessage ) {
607 foreach ( $this->mValidationErrorMessage
as $error ) {
608 $hoistedErrors->fatal( ...$error );
611 $hoistedErrors->fatal(
'htmlform-invalid-input' );
614 $this->mWasSubmitted =
true;
616 # Check for cancelled submission
617 foreach ( $this->mFlatFields
as $fieldname => $field ) {
618 if ( !array_key_exists( $fieldname, $this->mFieldData ) ) {
621 if ( $field->cancelSubmit( $this->mFieldData[$fieldname], $this->mFieldData ) ) {
622 $this->mWasSubmitted =
false;
627 # Check for validation
628 foreach ( $this->mFlatFields
as $fieldname => $field ) {
629 if ( !array_key_exists( $fieldname, $this->mFieldData ) ) {
632 if ( $field->isHidden( $this->mFieldData ) ) {
635 $res = $field->validate( $this->mFieldData[$fieldname], $this->mFieldData );
636 if (
$res !==
true ) {
638 if (
$res !==
false && !$field->canDisplayErrors() ) {
639 if ( is_string(
$res ) ) {
640 $hoistedErrors->fatal(
'rawmessage',
$res );
642 $hoistedErrors->fatal(
$res );
649 return $hoistedErrors;
652 $callback = $this->mSubmitCallback;
653 if ( !is_callable( $callback ) ) {
654 throw new MWException(
'HTMLForm: no submit callback provided. Use ' .
655 'setSubmitCallback() to set one.' );
660 $res = call_user_func( $callback,
$data, $this );
661 if (
$res ===
false ) {
662 $this->mWasSubmitted =
false;
680 return $this->mWasSubmitted;
694 $this->mSubmitCallback = $cb;
708 $this->mValidationErrorMessage = $msg;
774 $this->mHeader .= $msg;
776 if ( !isset( $this->mSectionHeaders[
$section] ) ) {
777 $this->mSectionHeaders[
$section] =
'';
779 $this->mSectionHeaders[
$section] .= $msg;
796 $this->mHeader = $msg;
798 $this->mSectionHeaders[
$section] = $msg;
813 return $this->mHeader;
815 return $this->mSectionHeaders[
$section] ??
'';
829 $this->mFooter .= $msg;
831 if ( !isset( $this->mSectionFooters[
$section] ) ) {
832 $this->mSectionFooters[
$section] =
'';
834 $this->mSectionFooters[
$section] .= $msg;
851 $this->mFooter = $msg;
853 $this->mSectionFooters[
$section] = $msg;
868 return $this->mFooter;
870 return $this->mSectionFooters[
$section] ??
'';
882 $this->mPost .= $msg;
928 $this->mHiddenFields[] = [
$value, [
'name' =>
$name ] ];
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'
969 'id' =>
$args[2] ??
null,
970 'attribs' =>
$args[3] ??
null,
973 if ( !isset(
$data[
'name'] ) ) {
974 throw new InvalidArgumentException(
'A name is required' );
976 if ( !isset(
$data[
'value'] ) ) {
977 throw new InvalidArgumentException(
'A value is required' );
980 $this->mButtons[] =
$data + [
1000 $this->mTokenSalt = $salt;
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' );
1046 return '' . $this->mPre .
$html . $this->mPost;
1054 # Use multipart/form-data
1055 $encType = $this->mUseMultipart
1056 ?
'multipart/form-data'
1057 :
'application/x-www-form-urlencoded';
1060 'class' =>
'mw-htmlform',
1063 'enctype' => $encType,
1068 if ( is_string( $this->mAutocomplete ) ) {
1069 $attribs[
'autocomplete'] = $this->mAutocomplete;
1071 if ( $this->mName ) {
1088 # Include a <fieldset> wrapper for style, if requested.
1089 if ( $this->mWrapperLegend !==
false ) {
1090 $legend = is_string( $this->mWrapperLegend ) ? $this->mWrapperLegend :
false;
1094 return Html::rawElement(
1107 if ( $this->mFormIdentifier !==
null ) {
1108 $html .= Html::hidden(
1110 $this->mFormIdentifier
1114 $html .= Html::hidden(
1116 $this->
getUser()->getEditToken( $this->mTokenSalt ),
1117 [
'id' =>
'wpEditToken' ]
1119 $html .= Html::hidden(
'title', $this->
getTitle()->getPrefixedText() ) .
"\n";
1122 $articlePath = $this->
getConfig()->get(
'ArticlePath' );
1123 if ( strpos( $articlePath,
'?' ) !==
false && $this->
getMethod() ===
'get' ) {
1124 $html .= Html::hidden(
'title', $this->
getTitle()->getPrefixedText() ) .
"\n";
1127 foreach ( $this->mHiddenFields
as $data ) {
1141 $useMediaWikiUIEverywhere = $this->
getConfig()->get(
'UseMediaWikiUIEverywhere' );
1143 if ( $this->mShowSubmit ) {
1146 if ( isset( $this->mSubmitID ) ) {
1150 if ( isset( $this->mSubmitName ) ) {
1151 $attribs[
'name'] = $this->mSubmitName;
1154 if ( isset( $this->mSubmitTooltip ) ) {
1158 $attribs[
'class'] = [
'mw-htmlform-submit' ];
1160 if ( $useMediaWikiUIEverywhere ) {
1161 foreach ( $this->mSubmitFlags
as $flag ) {
1162 $attribs[
'class'][] =
'mw-ui-' . $flag;
1164 $attribs[
'class'][] =
'mw-ui-button';
1170 if ( $this->mShowReset ) {
1171 $buttons .= Html::element(
1175 'value' => $this->
msg(
'htmlform-reset' )->
text(),
1176 'class' => $useMediaWikiUIEverywhere ?
'mw-ui-button' :
null,
1181 if ( $this->mShowCancel ) {
1182 $target = $this->mCancelTarget ?: Title::newMainPage();
1183 if ( $target instanceof
Title ) {
1184 $target = $target->getLocalURL();
1186 $buttons .= Html::element(
1189 'class' => $useMediaWikiUIEverywhere ?
'mw-ui-button' :
null,
1192 $this->
msg(
'cancel' )->text()
1197 $isBadIE = preg_match(
'/MSIE [1-7]\./i', $this->
getRequest()->getHeader(
'User-Agent' ) );
1199 foreach ( $this->mButtons
as $button ) {
1202 'name' => $button[
'name'],
1203 'value' => $button[
'value']
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'];
1213 $label = htmlspecialchars( $button[
'value'] );
1216 if ( $button[
'attribs'] ) {
1217 $attrs += $button[
'attribs'];
1220 if ( isset( $button[
'id'] ) ) {
1221 $attrs[
'id'] = $button[
'id'];
1224 if ( $useMediaWikiUIEverywhere ) {
1225 $attrs[
'class'] = isset( $attrs[
'class'] ) ? (
array)$attrs[
'class'] : [];
1226 $attrs[
'class'][] =
'mw-ui-button';
1230 $buttons .= Html::element(
'input', $attrs ) .
"\n";
1232 $buttons .= Html::rawElement(
'button', $attrs, $label ) .
"\n";
1240 return Html::rawElement(
'span',
1241 [
'class' =>
'mw-htmlform-submit-buttons' ],
"\n$buttons" ) .
"\n";
1249 return $this->
displaySection( $this->mFieldTree, $this->mTableId );
1275 if ( !in_array( $elementsType, [
'error',
'warning' ],
true ) ) {
1276 throw new DomainException( $elementsType .
' is not a valid type.' );
1278 $elementstr =
false;
1279 if ( $elements instanceof
Status ) {
1280 list( $errorStatus, $warningStatus ) = $elements->splitByErrorType();
1281 $status = $elementsType ===
'error' ? $errorStatus : $warningStatus;
1285 $elementstr = $this->
getOutput()->parseAsInterface(
1289 } elseif ( is_array( $elements ) && $elementsType ===
'error' ) {
1291 } elseif ( $elementsType ===
'error' ) {
1292 $elementstr = $elements;
1296 ? Html::rawElement(
'div', [
'class' => $elementsType ], $elementstr )
1310 foreach ( $errors
as $error ) {
1311 $errorstr .= Html::rawElement(
1318 $errorstr = Html::rawElement(
'ul', [], $errorstr );
1331 $this->mSubmitText =
$t;
1343 $this->mSubmitFlags = [
'destructive',
'primary' ];
1358 $this->mSubmitFlags = [
'progressive',
'primary' ];
1372 if ( !$msg instanceof
Message ) {
1373 $msg = $this->
msg( $msg );
1385 return $this->mSubmitText ?: $this->
msg(
'htmlform-submit' )->text();
1394 $this->mSubmitName =
$name;
1405 $this->mSubmitTooltip =
$name;
1419 $this->mSubmitID =
$t;
1440 $this->mFormIdentifier = $ident;
1456 $this->mShowSubmit = !$suppressSubmit;
1468 $this->mShowCancel = $show;
1479 $this->mCancelTarget = $target;
1493 $this->mTableId = $id;
1514 $this->mName =
$name;
1531 $this->mWrapperLegend = $legend;
1546 if ( !$msg instanceof
Message ) {
1547 $msg = $this->
msg( $msg );
1564 $this->mMessagePrefix = $p;
1587 return $this->mTitle ===
false
1600 $this->mMethod = strtolower( $method );
1609 return $this->mMethod;
1622 return Xml::fieldset( $legend,
$section, $attributes ) .
"\n";
1643 $fieldsetIDPrefix =
'',
1644 &$hasUserVisibleFields =
false
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.' );
1654 $subsectionHtml =
'';
1661 foreach ( $fields
as $key =>
$value ) {
1663 $v = array_key_exists( $key, $this->mFieldData )
1664 ? $this->mFieldData[$key]
1667 $retval =
$value->$getFieldHtmlMethod( $v );
1671 if (
$value->hasVisibleOutput() ) {
1674 $labelValue = trim(
$value->getLabel() );
1675 if ( $labelValue !==
"\u{00A0}" && $labelValue !==
' ' && $labelValue !==
'' ) {
1679 $hasUserVisibleFields =
true;
1681 } elseif ( is_array(
$value ) ) {
1682 $subsectionHasVisibleFields =
false;
1686 "$fieldsetIDPrefix$key-",
1687 $subsectionHasVisibleFields );
1690 if ( $subsectionHasVisibleFields ===
true ) {
1692 $hasUserVisibleFields =
true;
1701 if ( $fieldsetIDPrefix ) {
1702 $attributes[
'id'] = Sanitizer::escapeIdForAttribute(
"$fieldsetIDPrefix$key" );
1705 $legend,
$section, $attributes, $fields === $this->mFieldTree
1716 if ( $subsectionHtml ) {
1717 if ( $this->mSubSectionBeforeFields ) {
1718 return $subsectionHtml .
"\n" .
$html;
1720 return $html .
"\n" . $subsectionHtml;
1735 if ( !$fieldsHtml ) {
1742 $html = implode(
'', $fieldsHtml );
1750 if ( !$anyFieldHasLabel ) {
1751 $classes[] =
'mw-htmlform-nolabel';
1755 'class' => implode(
' ', $classes ),
1758 if ( $sectionName ) {
1759 $attribs[
'id'] = Sanitizer::escapeIdForAttribute( $sectionName );
1763 return Html::rawElement(
'table',
1765 Html::rawElement(
'tbody', [],
"\n$html\n" ) ) .
"\n";
1767 return Html::rawElement(
'span',
$attribs,
"\n$html\n" );
1769 return Html::rawElement(
'div',
$attribs,
"\n$html\n" );
1779 foreach ( $this->mFlatFields
as $fieldname => $field ) {
1781 if ( $field->skipLoadData(
$request ) ) {
1783 } elseif ( !empty( $field->mParams[
'disabled'] ) ) {
1784 $fieldData[$fieldname] = $field->getDefault();
1786 $fieldData[$fieldname] = $field->loadDataFromRequest(
$request );
1792 $field = $this->mFlatFields[
$name];
1796 $this->mFieldData = $fieldData;
1807 $this->mShowReset = !$suppressReset;
1834 return $this->
msg(
"{$this->mMessagePrefix}-$key" )->text();
1848 $this->mAction = $action;
1862 if ( $this->mAction !==
false ) {
1863 return $this->mAction;
1866 $articlePath = $this->
getConfig()->get(
'ArticlePath' );
1872 if ( strpos( $articlePath,
'?' ) !==
false && $this->
getMethod() ===
'get' ) {
1876 return $this->
getTitle()->getLocalURL();
1890 $this->mAutocomplete = $autocomplete;
1902 return Message::newFromSpecifier(
$value )->setContext( $this );
1915 foreach ( $this->mFlatFields
as $fieldname => $field ) {
1916 if ( $field->needsJSForHtml5FormValidation() ) {
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.
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)
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[], $options=null)
Returns the attributes for the tooltip and access key.
The Message class provides methods which fulfil two basic services:
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.
Represents a title within MediaWiki.
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
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
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
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
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
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
Allows to change the fields on the form that will be generated $name
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
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
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
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))