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 ) {
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;
319 $this->mMessagePrefix = $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 );
349 foreach ( explode(
'/',
$section ) as $newName ) {
350 if ( !
isset( $setSection[$newName] ) ) {
354 $setSection =& $setSection[
$newName];
370 return isset( $this->mFlatFields[$fieldname] );
379 if ( !$this->
hasField( $fieldname ) ) {
380 throw new DomainException( __METHOD__ .
': no field named ' . $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'];
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 );
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;
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;
568 if ( $result ===
true || ( $result instanceof
Status && $result->
isGood() ) ) {
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 ) {
621 if ( $field->cancelSubmit( $this->mFieldData[$fieldname], $this->mFieldData ) ) {
622 $this->mWasSubmitted =
false;
627 # Check for validation
628 foreach ( $this->mFlatFields as $fieldname => $field ) {
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() ) {
640 $hoistedErrors->fatal(
'rawmessage',
$res );
642 $hoistedErrors->fatal(
$res );
652 $callback = $this->mSubmitCallback;
654 throw new MWException(
'HTMLForm: no submit callback provided. Use ' .
655 'setSubmitCallback() to set one.' );
661 if (
$res ===
false ) {
662 $this->mWasSubmitted =
false;
680 return $this->mWasSubmitted;
694 $this->mSubmitCallback =
$cb;
708 $this->mValidationErrorMessage = $msg;
774 $this->mHeader .= $msg;
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;
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;
927 foreach ( $fields as $name =>
$value ) {
928 $this->mHiddenFields[] = [
$value, [
'name' =>
$name ] ];
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,
974 throw new InvalidArgumentException(
'A name is required' );
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',
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 ) {
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 ) {
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()
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();
1211 $label = $button[
'label-raw'];
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();
1285 $elementstr = $this->
getOutput()->parseAsInterface(
1289 }
elseif (
is_array( $elements ) && $elementsType ===
'error' ) {
1291 }
elseif ( $elementsType ===
'error' ) {
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;
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
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 ) {
1664 ? $this->mFieldData[$key]
1667 $retval =
$value->$getFieldHtmlMethod( $v );
1671 if (
$value->hasVisibleOutput() ) {
1675 if ( $labelValue !==
"\u{00A0}" && $labelValue !==
' ' && $labelValue !==
'' ) {
1679 $hasUserVisibleFields =
true;
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;
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();
1791 foreach ( $fieldData as $name => &
$value ) {
1792 $field = $this->mFlatFields[
$name];
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() ) {
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
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
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
namespace being checked & $result
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
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
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
usually copyright or history_copyright This message must be in HTML not wikitext if the section is included from a template $section
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
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))