60 if ( !class_exists(
'XMLReader' ) ) {
61 throw new Exception(
'Import requires PHP to have been compiled with libxml support' );
64 $this->reader =
new XMLReader();
67 if ( !in_array(
'uploadsource', stream_get_wrappers() ) ) {
68 stream_wrapper_register(
'uploadsource', UploadSourceAdapter::class );
74 $oldDisable = libxml_disable_entity_loader(
false );
75 if ( defined(
'LIBXML_PARSEHUGE' ) ) {
76 $status = $this->reader->open(
"uploadsource://$id",
null, LIBXML_PARSEHUGE );
78 $status = $this->reader->open(
"uploadsource://$id" );
81 $error = libxml_get_last_error();
82 libxml_disable_entity_loader( $oldDisable );
83 throw new MWException(
'Encountered an internal error while initializing WikiImporter object: ' .
86 libxml_disable_entity_loader( $oldDisable );
107 $this->
debug(
"FAILURE: $err" );
108 wfDebug(
"WikiImporter XML error: $err\n" );
112 if ( $this->mDebug ) {
117 public function warn( $data ) {
125 if ( is_callable( $this->mNoticeCallback ) ) {
126 call_user_func( $this->mNoticeCallback, $msg,
$params );
147 $this->mNoUpdates = $noupdates;
157 $this->pageOffset = $nthPage;
167 return wfSetVar( $this->mNoticeCallback, $callback );
177 $this->mPageCallback = $callback;
192 $this->mPageOutCallback = $callback;
203 $this->mRevisionCallback = $callback;
214 $this->mUploadCallback = $callback;
225 $this->mLogItemCallback = $callback;
236 $this->mSiteInfoCallback = $callback;
246 $this->importTitleFactory = $factory;
255 if ( is_null( $namespace ) ) {
261 MWNamespace::exists( intval( $namespace ) )
263 $namespace = intval( $namespace );
278 if ( is_null( $rootpage ) ) {
281 } elseif ( $rootpage !==
'' ) {
282 $rootpage = rtrim( $rootpage,
'/' );
283 $title = Title::newFromText( $rootpage );
285 if ( !$title || $title->isExternal() ) {
286 $status->fatal(
'import-rootpage-invalid' );
288 if ( !MWNamespace::hasSubpages( $title->getNamespace() ) ) {
291 $displayNSText = $title->getNamespace() ==
NS_MAIN
293 :
$wgContLang->getNsText( $title->getNamespace() );
294 $status->fatal(
'import-rootpage-nosubpage', $displayNSText );
309 $this->mImageBasePath = $dir;
316 $this->mImportUploads = $import;
325 $this->externalUserNames =
new ExternalUserNames( $usernamePrefix, $assignKnownUsers );
343 $title = $titleAndForeignTitle[0];
344 $page = WikiPage::factory( $title );
345 $this->countableCache[
'title_' . $title->getPrefixedText()] = $page->isCountable();
355 if ( !$revision->getContentHandler()->canBeUsedOn( $revision->getTitle() ) ) {
356 $this->
notice(
'import-error-bad-location',
357 $revision->getTitle()->getPrefixedText(),
359 $revision->getModel(),
360 $revision->getFormat() );
366 return $revision->importOldRevision();
368 $this->
notice(
'import-error-unserialize',
369 $revision->getTitle()->getPrefixedText(),
371 $revision->getModel(),
372 $revision->getFormat() );
384 return $revision->importLogItem();
393 return $revision->importUpload();
406 $sRevCount, $pageInfo
415 $page = WikiPage::factory( $title );
416 $page->loadPageData(
'fromdbmaster' );
417 $content = $page->getContent();
418 if ( $content ===
null ) {
419 wfDebug( __METHOD__ .
': Skipping article count adjustment for ' . $title .
420 ' because WikiPage::getContent() returned null' );
422 $editInfo = $page->prepareContentForEdit( $content );
423 $countKey =
'title_' . $title->getPrefixedText();
424 $countable = $page->isCountable( $editInfo );
425 if ( array_key_exists( $countKey, $this->countableCache ) &&
426 $countable != $this->countableCache[$countKey] ) {
428 'articles' => ( (
int)$countable - (
int)$this->countableCache[$countKey] )
434 $args = func_get_args();
435 return Hooks::run(
'AfterImportPage',
$args );
443 $this->
debug(
"Got revision:" );
444 if ( is_object( $revision->title ) ) {
445 $this->
debug(
"-- Title: " . $revision->title->getPrefixedText() );
447 $this->
debug(
"-- Title: <invalid>" );
449 $this->
debug(
"-- User: " . $revision->user_text );
450 $this->
debug(
"-- Timestamp: " . $revision->timestamp );
451 $this->
debug(
"-- Comment: " . $revision->comment );
452 $this->
debug(
"-- Text: " . $revision->text );
461 if ( isset( $this->mSiteInfoCallback ) ) {
462 return call_user_func_array( $this->mSiteInfoCallback,
463 [ $siteInfo, $this ] );
474 if ( isset( $this->mPageCallback ) ) {
475 call_user_func( $this->mPageCallback, $title );
488 $sucCount, $pageInfo ) {
489 if ( isset( $this->mPageOutCallback ) ) {
490 $args = func_get_args();
491 call_user_func_array( $this->mPageOutCallback,
$args );
501 if ( isset( $this->mRevisionCallback ) ) {
502 return call_user_func_array( $this->mRevisionCallback,
503 [ $revision, $this ] );
515 if ( isset( $this->mLogItemCallback ) ) {
516 return call_user_func_array( $this->mLogItemCallback,
517 [ $revision, $this ] );
530 return $this->reader->getAttribute( $attr );
541 if ( $this->reader->isEmptyElement ) {
545 while ( $this->reader->read() ) {
546 switch ( $this->reader->nodeType ) {
547 case XMLReader::TEXT:
548 case XMLReader::CDATA:
549 case XMLReader::SIGNIFICANT_WHITESPACE:
550 $buffer .= $this->reader->value;
552 case XMLReader::END_ELEMENT:
557 $this->reader->close();
571 $oldDisable = libxml_disable_entity_loader(
true );
572 $this->reader->read();
574 if ( $this->reader->localName !=
'mediawiki' ) {
575 libxml_disable_entity_loader( $oldDisable );
576 throw new MWException(
"Expected <mediawiki> tag, got " .
577 $this->reader->localName );
579 $this->
debug(
"<mediawiki> tag is correct." );
581 $this->
debug(
"Starting primary dump processing loop." );
583 $keepReading = $this->reader->read();
588 while ( $keepReading ) {
589 $tag = $this->reader->localName;
590 if ( $this->pageOffset ) {
591 if ( $tag ===
'page' ) {
594 if ( $pageCount < $this->pageOffset ) {
595 $keepReading = $this->reader->next();
599 $type = $this->reader->nodeType;
601 if ( !Hooks::run(
'ImportHandleToplevelXMLTag', [ $this ] ) ) {
603 } elseif ( $tag ==
'mediawiki' &&
$type == XMLReader::END_ELEMENT ) {
605 } elseif ( $tag ==
'siteinfo' ) {
607 } elseif ( $tag ==
'page' ) {
609 } elseif ( $tag ==
'logitem' ) {
611 } elseif ( $tag !=
'#text' ) {
612 $this->
warn(
"Unhandled top-level XML tag $tag" );
618 $keepReading = $this->reader->next();
620 $this->
debug(
"Skip" );
622 $keepReading = $this->reader->read();
625 }
catch ( Exception $ex ) {
630 libxml_disable_entity_loader( $oldDisable );
631 $this->reader->close();
641 $this->
debug(
"Enter site info handler." );
645 $normalFields = [
'sitename',
'base',
'generator',
'case' ];
647 while ( $this->reader->read() ) {
648 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
649 $this->reader->localName ==
'siteinfo' ) {
653 $tag = $this->reader->localName;
655 if ( $tag ==
'namespace' ) {
658 } elseif ( in_array( $tag, $normalFields ) ) {
668 $this->
debug(
"Enter log item handler." );
672 $normalFields = [
'id',
'comment',
'type',
'action',
'timestamp',
673 'logtitle',
'params' ];
675 while ( $this->reader->read() ) {
676 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
677 $this->reader->localName ==
'logitem' ) {
681 $tag = $this->reader->localName;
683 if ( !Hooks::run(
'ImportHandleLogItemXMLTag', [
687 } elseif ( in_array( $tag, $normalFields ) ) {
689 } elseif ( $tag ==
'contributor' ) {
691 } elseif ( $tag !=
'#text' ) {
692 $this->
warn(
"Unhandled log-item XML tag $tag" );
706 if ( isset( $logInfo[
'id'] ) ) {
707 $revision->setID( $logInfo[
'id'] );
709 $revision->setType( $logInfo[
'type'] );
710 $revision->setAction( $logInfo[
'action'] );
711 if ( isset( $logInfo[
'timestamp'] ) ) {
712 $revision->setTimestamp( $logInfo[
'timestamp'] );
714 if ( isset( $logInfo[
'params'] ) ) {
715 $revision->setParams( $logInfo[
'params'] );
717 if ( isset( $logInfo[
'logtitle'] ) ) {
720 $revision->setTitle( Title::newFromText( $logInfo[
'logtitle'] ) );
723 $revision->setNoUpdates( $this->mNoUpdates );
725 if ( isset( $logInfo[
'comment'] ) ) {
726 $revision->setComment( $logInfo[
'comment'] );
729 if ( isset( $logInfo[
'contributor'][
'ip'] ) ) {
730 $revision->setUserIP( $logInfo[
'contributor'][
'ip'] );
733 if ( !isset( $logInfo[
'contributor'][
'username'] ) ) {
734 $revision->setUsername( $this->externalUserNames->addPrefix(
'Unknown user' ) );
736 $revision->setUsername(
737 $this->externalUserNames->applyPrefix( $logInfo[
'contributor'][
'username'] )
746 $this->
debug(
"Enter page handler." );
747 $pageInfo = [
'revisionCount' => 0,
'successfulRevisionCount' => 0 ];
750 $normalFields = [
'title',
'ns',
'id',
'redirect',
'restrictions' ];
755 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
756 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
757 $this->reader->localName ==
'page' ) {
763 $tag = $this->reader->localName;
768 } elseif ( !Hooks::run(
'ImportHandlePageXMLTag', [ $this,
771 } elseif ( in_array( $tag, $normalFields ) ) {
779 if ( $tag ==
'redirect' ) {
784 } elseif ( $tag ==
'revision' || $tag ==
'upload' ) {
785 if ( !isset( $title ) ) {
787 isset( $pageInfo[
'ns'] ) ? $pageInfo[
'ns'] : null );
790 if ( is_array( $title ) ) {
792 list( $pageInfo[
'_title'], $foreignTitle ) =
$title;
800 if ( $tag ==
'revision' ) {
806 } elseif ( $tag !=
'#text' ) {
807 $this->
warn(
"Unhandled page XML tag $tag" );
817 if ( array_key_exists(
'_title', $pageInfo ) ) {
819 $pageInfo[
'revisionCount'],
820 $pageInfo[
'successfulRevisionCount'],
829 $this->
debug(
"Enter revision handler" );
832 $normalFields = [
'id',
'timestamp',
'comment',
'minor',
'model',
'format',
'text',
'sha1' ];
836 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
837 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
838 $this->reader->localName ==
'revision' ) {
842 $tag = $this->reader->localName;
844 if ( !Hooks::run(
'ImportHandleRevisionXMLTag', [
845 $this, $pageInfo, $revisionInfo
848 } elseif ( in_array( $tag, $normalFields ) ) {
850 } elseif ( $tag ==
'contributor' ) {
852 } elseif ( $tag !=
'#text' ) {
853 $this->
warn(
"Unhandled revision XML tag $tag" );
858 $pageInfo[
'revisionCount']++;
860 $pageInfo[
'successfulRevisionCount']++;
877 if ( ( !isset( $revisionInfo[
'model'] ) ||
878 in_array( $revisionInfo[
'model'], [
889 ( isset( $revisionInfo[
'id'] ) ?
890 "the revision with ID $revisionInfo[id]" :
892 ) .
" exceeds the maximum allowable size ($wgMaxArticleSize KB)" );
897 if ( isset( $revisionInfo[
'id'] ) ) {
898 $revision->setID( $revisionInfo[
'id'] );
900 if ( isset( $revisionInfo[
'model'] ) ) {
901 $revision->setModel( $revisionInfo[
'model'] );
903 if ( isset( $revisionInfo[
'format'] ) ) {
904 $revision->setFormat( $revisionInfo[
'format'] );
906 $revision->setTitle( $pageInfo[
'_title'] );
908 if ( isset( $revisionInfo[
'text'] ) ) {
909 $handler = $revision->getContentHandler();
911 $revisionInfo[
'text'],
912 $revision->getFormat() );
914 $revision->setText( $text );
916 if ( isset( $revisionInfo[
'timestamp'] ) ) {
917 $revision->setTimestamp( $revisionInfo[
'timestamp'] );
922 if ( isset( $revisionInfo[
'comment'] ) ) {
923 $revision->setComment( $revisionInfo[
'comment'] );
926 if ( isset( $revisionInfo[
'minor'] ) ) {
927 $revision->setMinor(
true );
929 if ( isset( $revisionInfo[
'contributor'][
'ip'] ) ) {
930 $revision->setUserIP( $revisionInfo[
'contributor'][
'ip'] );
931 } elseif ( isset( $revisionInfo[
'contributor'][
'username'] ) ) {
932 $revision->setUsername(
933 $this->externalUserNames->applyPrefix( $revisionInfo[
'contributor'][
'username'] )
936 $revision->setUsername( $this->externalUserNames->addPrefix(
'Unknown user' ) );
938 if ( isset( $revisionInfo[
'sha1'] ) ) {
939 $revision->setSha1Base36( $revisionInfo[
'sha1'] );
941 $revision->setNoUpdates( $this->mNoUpdates );
951 $this->
debug(
"Enter upload handler" );
954 $normalFields = [
'timestamp',
'comment',
'filename',
'text',
955 'src',
'size',
'sha1base36',
'archivename',
'rel' ];
959 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
960 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
961 $this->reader->localName ==
'upload' ) {
965 $tag = $this->reader->localName;
967 if ( !Hooks::run(
'ImportHandleUploadXMLTag', [
971 } elseif ( in_array( $tag, $normalFields ) ) {
973 } elseif ( $tag ==
'contributor' ) {
975 } elseif ( $tag ==
'contents' ) {
977 $encoding = $this->reader->getAttribute(
'encoding' );
978 if ( $encoding ===
'base64' ) {
979 $uploadInfo[
'fileSrc'] = $this->
dumpTemp( base64_decode( $contents ) );
980 $uploadInfo[
'isTempSrc'] =
true;
982 } elseif ( $tag !=
'#text' ) {
983 $this->
warn(
"Unhandled upload XML tag $tag" );
988 if ( $this->mImageBasePath && isset( $uploadInfo[
'rel'] ) ) {
989 $path =
"{$this->mImageBasePath}/{$uploadInfo['rel']}";
990 if ( file_exists( $path ) ) {
991 $uploadInfo[
'fileSrc'] =
$path;
992 $uploadInfo[
'isTempSrc'] =
false;
996 if ( $this->mImportUploads ) {
1006 $filename = tempnam(
wfTempDir(),
'importupload' );
1007 file_put_contents( $filename, $contents );
1018 $text = isset( $uploadInfo[
'text'] ) ? $uploadInfo[
'text'] :
'';
1020 $revision->setTitle( $pageInfo[
'_title'] );
1021 $revision->setID( $pageInfo[
'id'] );
1022 $revision->setTimestamp( $uploadInfo[
'timestamp'] );
1023 $revision->setText( $text );
1024 $revision->setFilename( $uploadInfo[
'filename'] );
1025 if ( isset( $uploadInfo[
'archivename'] ) ) {
1026 $revision->setArchiveName( $uploadInfo[
'archivename'] );
1028 $revision->setSrc( $uploadInfo[
'src'] );
1029 if ( isset( $uploadInfo[
'fileSrc'] ) ) {
1030 $revision->setFileSrc( $uploadInfo[
'fileSrc'],
1031 !empty( $uploadInfo[
'isTempSrc'] ) );
1033 if ( isset( $uploadInfo[
'sha1base36'] ) ) {
1034 $revision->setSha1Base36( $uploadInfo[
'sha1base36'] );
1036 $revision->setSize( intval( $uploadInfo[
'size'] ) );
1037 $revision->setComment( $uploadInfo[
'comment'] );
1039 if ( isset( $uploadInfo[
'contributor'][
'ip'] ) ) {
1040 $revision->setUserIP( $uploadInfo[
'contributor'][
'ip'] );
1042 if ( isset( $uploadInfo[
'contributor'][
'username'] ) ) {
1043 $revision->setUsername(
1044 $this->externalUserNames->applyPrefix( $uploadInfo[
'contributor'][
'username'] )
1047 $revision->setNoUpdates( $this->mNoUpdates );
1049 return call_user_func( $this->mUploadCallback, $revision );
1056 $fields = [
'id',
'ip',
'username' ];
1059 if ( $this->reader->isEmptyElement ) {
1062 while ( $this->reader->read() ) {
1063 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
1064 $this->reader->localName ==
'contributor' ) {
1068 $tag = $this->reader->localName;
1070 if ( in_array( $tag, $fields ) ) {
1084 if ( is_null( $this->foreignNamespaces ) ) {
1088 $this->foreignNamespaces );
1091 $foreignTitle = $foreignTitleFactory->createForeignTitle( $text,
1094 $title = $this->importTitleFactory->createTitleFromForeignTitle(
1097 $commandLineMode = $this->config->get(
'CommandLineMode' );
1098 if ( is_null( $title ) ) {
1099 # Invalid page title? Ignore the page
1100 $this->
notice(
'import-error-invalid', $foreignTitle->getFullText() );
1102 } elseif ( $title->isExternal() ) {
1103 $this->
notice(
'import-error-interwiki', $title->getPrefixedText() );
1105 } elseif ( !$title->canExist() ) {
1106 $this->
notice(
'import-error-special', $title->getPrefixedText() );
1108 } elseif ( !$title->userCan(
'edit' ) && !$commandLineMode ) {
1109 # Do not import if the importing wiki user cannot edit this page
1110 $this->
notice(
'import-error-edit', $title->getPrefixedText() );
1112 } elseif ( !$title->exists() && !$title->userCan(
'create' ) && !$commandLineMode ) {
1113 # Do not import if the importing wiki user cannot create this page
1114 $this->
notice(
'import-error-create', $title->getPrefixedText() );
1118 return [
$title, $foreignTitle ];
$wgMaxArticleSize
Maximum article size in kilobytes.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfTempDir()
Tries to get the system directory for temporary files.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfSetVar(&$dest, $source, $force=false)
Sets dest to source and returns the original value of dest If source is NULL, it just returns the val...
Class to parse and build external user names.
Exception representing a failure to serialize or unserialize a content object.
A parser that translates page titles on a foreign wiki into ForeignTitle objects, with no knowledge o...
A class to convert page titles on a foreign wiki (ForeignTitle objects) into page titles on the local...
A parser that translates page titles on a foreign wiki into ForeignTitle objects, using information a...
A class to convert page titles on a foreign wiki (ForeignTitle objects) into page titles on the local...
static factory(array $deltas)
A class to convert page titles on a foreign wiki (ForeignTitle objects) into page titles on the local...
static registerSource(ImportSource $source)
XML file reader for the page data importer.
finishImportPage( $title, $foreignTitle, $revCount, $sRevCount, $pageInfo)
Mostly for hook use.
setImportUploads( $import)
doImport()
Primary entry point.
setPageCallback( $callback)
Sets the action to perform as each new page in the stream is reached.
setUsernamePrefix( $usernamePrefix, $assignKnownUsers)
ExternalUserNames $externalUserNames
setNoUpdates( $noupdates)
Set 'no updates' mode.
pageOutCallback( $title, $foreignTitle, $revCount, $sucCount, $pageInfo)
Notify the callback function when a "</page>" is closed.
setLogItemCallback( $callback)
Sets the action to perform as each log item reached.
importUpload( $revision)
Dummy for now...
setImportTitleFactory( $factory)
Sets the factory object to use to convert ForeignTitle objects into local Title objects.
setSiteInfoCallback( $callback)
Sets the action to perform when site info is encountered.
nodeAttribute( $attr)
Retrieves the contents of the named attribute of the current element.
pageCallback( $title)
Notify the callback function when a new "<page>" is reached.
processLogItem( $logInfo)
setTargetNamespace( $namespace)
Set a target namespace to override the defaults.
setPageOffset( $nthPage)
Sets 'pageOffset' value.
debugRevisionHandler(&$revision)
Alternate per-revision callback, for debugging.
nodeContents()
Shouldn't something like this be built-in to XMLReader? Fetches text contents of the current element,...
importLogItem( $revision)
Default per-revision callback, performs the import.
handleRevision(&$pageInfo)
revisionCallback( $revision)
Notify the callback function of a revision.
logItemCallback( $revision)
Notify the callback function of a new log item.
setDebug( $debug)
Set debug mode...
processRevision( $pageInfo, $revisionInfo)
processUpload( $pageInfo, $uploadInfo)
bool $disableStatisticsUpdate
processTitle( $text, $ns=null)
importRevision( $revision)
Default per-revision callback, performs the import.
ImportTitleFactory $importTitleFactory
__construct(ImportSource $source, Config $config)
Creates an ImportXMLReader drawing from the source provided.
setPageOutCallback( $callback)
Sets the action to perform as each page in the stream is completed.
setTargetRootPage( $rootpage)
Set a target root page under which all pages are imported.
setNoticeCallback( $callback)
Set a callback that displays notice messages.
beforeImportPage( $titleAndForeignTitle)
Default per-page callback.
disableStatisticsUpdate()
Statistics update can cause a lot of time.
siteInfoCallback( $siteInfo)
Notify the callback function of site info.
setRevisionCallback( $callback)
Sets the action to perform as each page revision is reached.
setUploadCallback( $callback)
Sets the action to perform as each file upload version is reached.
Represents a revision, log entry or upload during the import process.
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 class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
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. '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
namespace and then decline to actually register it file or subcat img or subcat $title
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Interface for configuration instances.
Source interface for XML import.
Represents an object that can convert page titles on a foreign wiki (ForeignTitle objects) into page ...