55 if ( !class_exists(
'XMLReader' ) ) {
56 throw new Exception(
'Import requires PHP to have been compiled with libxml support' );
59 $this->reader =
new XMLReader();
61 wfDeprecated( __METHOD__ .
' without a Config instance',
'1.25' );
66 if ( !in_array(
'uploadsource', stream_get_wrappers() ) ) {
67 stream_wrapper_register(
'uploadsource',
'UploadSourceAdapter' );
73 $oldDisable = libxml_disable_entity_loader(
false );
74 if ( defined(
'LIBXML_PARSEHUGE' ) ) {
75 $status = $this->reader->open(
"uploadsource://$id", null, LIBXML_PARSEHUGE );
77 $status = $this->reader->open(
"uploadsource://$id" );
80 $error = libxml_get_last_error();
81 libxml_disable_entity_loader( $oldDisable );
82 throw new MWException(
'Encountered an internal error while initializing WikiImporter object: ' .
85 libxml_disable_entity_loader( $oldDisable );
105 $this->
debug(
"FAILURE: $err" );
106 wfDebug(
"WikiImporter XML error: $err\n" );
110 if ( $this->mDebug ) {
115 public function warn( $data ) {
123 if ( is_callable( $this->mNoticeCallback ) ) {
124 call_user_func( $this->mNoticeCallback, $msg,
$params );
143 $this->mNoUpdates = $noupdates;
153 return wfSetVar( $this->mNoticeCallback, $callback );
163 $this->mPageCallback = $callback;
178 $this->mPageOutCallback = $callback;
189 $this->mRevisionCallback = $callback;
200 $this->mUploadCallback = $callback;
211 $this->mLogItemCallback = $callback;
222 $this->mSiteInfoCallback = $callback;
232 $this->importTitleFactory = $factory;
241 if ( is_null( $namespace ) ) {
249 $namespace = intval( $namespace );
264 if ( is_null( $rootpage ) ) {
267 } elseif ( $rootpage !==
'' ) {
268 $rootpage = rtrim( $rootpage,
'/' );
272 $status->fatal(
'import-rootpage-invalid' );
279 : $wgContLang->getNsText(
$title->getNamespace() );
280 $status->fatal(
'import-rootpage-nosubpage', $displayNSText );
295 $this->mImageBasePath =
$dir;
302 $this->mImportUploads = $import;
312 $title = $titleAndForeignTitle[0];
314 $this->countableCache[
'title_' .
$title->getPrefixedText()] =
$page->isCountable();
324 if ( !$revision->getContentHandler()->canBeUsedOn( $revision->getTitle() ) ) {
325 $this->
notice(
'import-error-bad-location',
326 $revision->getTitle()->getPrefixedText(),
328 $revision->getModel(),
329 $revision->getFormat() );
335 return $revision->importOldRevision();
337 $this->
notice(
'import-error-unserialize',
338 $revision->getTitle()->getPrefixedText(),
340 $revision->getModel(),
341 $revision->getFormat() );
353 return $revision->importLogItem();
362 return $revision->importUpload();
375 $sRevCount, $pageInfo ) {
384 $page->loadPageData(
'fromdbmaster' );
387 wfDebug( __METHOD__ .
': Skipping article count adjustment for ' .
$title .
388 ' because WikiPage::getContent() returned null' );
391 $countKey =
'title_' .
$title->getPrefixedText();
392 $countable =
$page->isCountable( $editInfo );
393 if ( array_key_exists( $countKey, $this->countableCache ) &&
394 $countable != $this->countableCache[$countKey] ) {
396 'articles' => ( (
int)$countable - (
int)$this->countableCache[$countKey] )
401 $args = func_get_args();
410 $this->
debug(
"Got revision:" );
411 if ( is_object( $revision->title ) ) {
412 $this->
debug(
"-- Title: " . $revision->title->getPrefixedText() );
414 $this->
debug(
"-- Title: <invalid>" );
416 $this->
debug(
"-- User: " . $revision->user_text );
417 $this->
debug(
"-- Timestamp: " . $revision->timestamp );
418 $this->
debug(
"-- Comment: " . $revision->comment );
419 $this->
debug(
"-- Text: " . $revision->text );
428 if ( isset( $this->mSiteInfoCallback ) ) {
429 return call_user_func_array( $this->mSiteInfoCallback,
430 [ $siteInfo, $this ] );
441 if ( isset( $this->mPageCallback ) ) {
442 call_user_func( $this->mPageCallback,
$title );
455 $sucCount, $pageInfo ) {
456 if ( isset( $this->mPageOutCallback ) ) {
457 $args = func_get_args();
458 call_user_func_array( $this->mPageOutCallback,
$args );
468 if ( isset( $this->mRevisionCallback ) ) {
469 return call_user_func_array( $this->mRevisionCallback,
470 [ $revision, $this ] );
482 if ( isset( $this->mLogItemCallback ) ) {
483 return call_user_func_array( $this->mLogItemCallback,
484 [ $revision, $this ] );
497 return $this->reader->getAttribute( $attr );
508 if ( $this->reader->isEmptyElement ) {
512 while ( $this->reader->read() ) {
513 switch ( $this->reader->nodeType ) {
514 case XMLReader::TEXT:
515 case XMLReader::CDATA:
516 case XMLReader::SIGNIFICANT_WHITESPACE:
517 $buffer .= $this->reader->value;
519 case XMLReader::END_ELEMENT:
524 $this->reader->close();
537 $oldDisable = libxml_disable_entity_loader(
true );
538 $this->reader->read();
540 if ( $this->reader->localName !=
'mediawiki' ) {
541 libxml_disable_entity_loader( $oldDisable );
542 throw new MWException(
"Expected <mediawiki> tag, got " .
543 $this->reader->localName );
545 $this->
debug(
"<mediawiki> tag is correct." );
547 $this->
debug(
"Starting primary dump processing loop." );
549 $keepReading = $this->reader->read();
553 while ( $keepReading ) {
554 $tag = $this->reader->localName;
555 $type = $this->reader->nodeType;
557 if ( !
Hooks::run(
'ImportHandleToplevelXMLTag', [ $this ] ) ) {
559 } elseif (
$tag ==
'mediawiki' &&
$type == XMLReader::END_ELEMENT ) {
561 } elseif (
$tag ==
'siteinfo' ) {
563 } elseif (
$tag ==
'page' ) {
565 } elseif (
$tag ==
'logitem' ) {
567 } elseif (
$tag !=
'#text' ) {
568 $this->
warn(
"Unhandled top-level XML tag $tag" );
574 $keepReading = $this->reader->next();
576 $this->
debug(
"Skip" );
578 $keepReading = $this->reader->read();
586 libxml_disable_entity_loader( $oldDisable );
587 $this->reader->close();
597 $this->
debug(
"Enter site info handler." );
601 $normalFields = [
'sitename',
'base',
'generator',
'case' ];
603 while ( $this->reader->read() ) {
604 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
605 $this->reader->localName ==
'siteinfo' ) {
609 $tag = $this->reader->localName;
611 if (
$tag ==
'namespace' ) {
614 } elseif ( in_array(
$tag, $normalFields ) ) {
624 $this->
debug(
"Enter log item handler." );
628 $normalFields = [
'id',
'comment',
'type',
'action',
'timestamp',
629 'logtitle',
'params' ];
631 while ( $this->reader->read() ) {
632 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
633 $this->reader->localName ==
'logitem' ) {
637 $tag = $this->reader->localName;
639 if ( !
Hooks::run(
'ImportHandleLogItemXMLTag', [
643 } elseif ( in_array(
$tag, $normalFields ) ) {
645 } elseif (
$tag ==
'contributor' ) {
647 } elseif (
$tag !=
'#text' ) {
648 $this->
warn(
"Unhandled log-item XML tag $tag" );
663 if ( isset( $logInfo[
'id'] ) ) {
664 $revision->setID( $logInfo[
'id'] );
666 $revision->setType( $logInfo[
'type'] );
667 $revision->setAction( $logInfo[
'action'] );
668 if ( isset( $logInfo[
'timestamp'] ) ) {
669 $revision->setTimestamp( $logInfo[
'timestamp'] );
671 if ( isset( $logInfo[
'params'] ) ) {
672 $revision->setParams( $logInfo[
'params'] );
674 if ( isset( $logInfo[
'logtitle'] ) ) {
680 $revision->setNoUpdates( $this->mNoUpdates );
682 if ( isset( $logInfo[
'comment'] ) ) {
683 $revision->setComment( $logInfo[
'comment'] );
686 if ( isset( $logInfo[
'contributor'][
'ip'] ) ) {
687 $revision->setUserIP( $logInfo[
'contributor'][
'ip'] );
690 if ( !isset( $logInfo[
'contributor'][
'username'] ) ) {
691 $revision->setUsername(
'Unknown user' );
693 $revision->setUsername( $logInfo[
'contributor'][
'username'] );
701 $this->
debug(
"Enter page handler." );
702 $pageInfo = [
'revisionCount' => 0,
'successfulRevisionCount' => 0 ];
705 $normalFields = [
'title',
'ns',
'id',
'redirect',
'restrictions' ];
710 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
711 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
712 $this->reader->localName ==
'page' ) {
718 $tag = $this->reader->localName;
723 } elseif ( !
Hooks::run(
'ImportHandlePageXMLTag', [ $this,
726 } elseif ( in_array(
$tag, $normalFields ) ) {
734 if (
$tag ==
'redirect' ) {
739 } elseif (
$tag ==
'revision' ||
$tag ==
'upload' ) {
742 isset( $pageInfo[
'ns'] ) ? $pageInfo[
'ns'] : null );
745 if ( is_array(
$title ) ) {
747 list( $pageInfo[
'_title'], $foreignTitle ) =
$title;
755 if (
$tag ==
'revision' ) {
761 } elseif (
$tag !=
'#text' ) {
762 $this->
warn(
"Unhandled page XML tag $tag" );
772 if ( array_key_exists(
'_title', $pageInfo ) ) {
774 $pageInfo[
'revisionCount'],
775 $pageInfo[
'successfulRevisionCount'],
784 $this->
debug(
"Enter revision handler" );
787 $normalFields = [
'id',
'timestamp',
'comment',
'minor',
'model',
'format',
'text' ];
791 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
792 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
793 $this->reader->localName ==
'revision' ) {
797 $tag = $this->reader->localName;
799 if ( !
Hooks::run(
'ImportHandleRevisionXMLTag', [
800 $this, $pageInfo, $revisionInfo
803 } elseif ( in_array(
$tag, $normalFields ) ) {
805 } elseif (
$tag ==
'contributor' ) {
807 } elseif (
$tag !=
'#text' ) {
808 $this->
warn(
"Unhandled revision XML tag $tag" );
813 $pageInfo[
'revisionCount']++;
815 $pageInfo[
'successfulRevisionCount']++;
831 if ( ( !isset( $revisionInfo[
'model'] ) ||
832 in_array( $revisionInfo[
'model'], [
840 strlen( $revisionInfo[
'text'] ) > $wgMaxArticleSize * 1024
843 ( isset( $revisionInfo[
'id'] ) ?
844 "the revision with ID $revisionInfo[id]" :
846 ) .
" exceeds the maximum allowable size ($wgMaxArticleSize KB)" );
851 if ( isset( $revisionInfo[
'id'] ) ) {
852 $revision->setID( $revisionInfo[
'id'] );
854 if ( isset( $revisionInfo[
'model'] ) ) {
855 $revision->setModel( $revisionInfo[
'model'] );
857 if ( isset( $revisionInfo[
'format'] ) ) {
858 $revision->setFormat( $revisionInfo[
'format'] );
860 $revision->setTitle( $pageInfo[
'_title'] );
862 if ( isset( $revisionInfo[
'text'] ) ) {
863 $handler = $revision->getContentHandler();
865 $revisionInfo[
'text'],
866 $revision->getFormat() );
868 $revision->setText( $text );
870 if ( isset( $revisionInfo[
'timestamp'] ) ) {
871 $revision->setTimestamp( $revisionInfo[
'timestamp'] );
876 if ( isset( $revisionInfo[
'comment'] ) ) {
877 $revision->setComment( $revisionInfo[
'comment'] );
880 if ( isset( $revisionInfo[
'minor'] ) ) {
881 $revision->setMinor(
true );
883 if ( isset( $revisionInfo[
'contributor'][
'ip'] ) ) {
884 $revision->setUserIP( $revisionInfo[
'contributor'][
'ip'] );
885 } elseif ( isset( $revisionInfo[
'contributor'][
'username'] ) ) {
886 $revision->setUsername( $revisionInfo[
'contributor'][
'username'] );
888 $revision->setUsername(
'Unknown user' );
890 $revision->setNoUpdates( $this->mNoUpdates );
900 $this->
debug(
"Enter upload handler" );
903 $normalFields = [
'timestamp',
'comment',
'filename',
'text',
904 'src',
'size',
'sha1base36',
'archivename',
'rel' ];
908 while ( $skip ? $this->reader->next() : $this->reader->read() ) {
909 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
910 $this->reader->localName ==
'upload' ) {
914 $tag = $this->reader->localName;
916 if ( !
Hooks::run(
'ImportHandleUploadXMLTag', [
920 } elseif ( in_array(
$tag, $normalFields ) ) {
922 } elseif (
$tag ==
'contributor' ) {
924 } elseif (
$tag ==
'contents' ) {
926 $encoding = $this->reader->getAttribute(
'encoding' );
927 if ( $encoding ===
'base64' ) {
928 $uploadInfo[
'fileSrc'] = $this->
dumpTemp( base64_decode( $contents ) );
929 $uploadInfo[
'isTempSrc'] =
true;
931 } elseif (
$tag !=
'#text' ) {
932 $this->
warn(
"Unhandled upload XML tag $tag" );
937 if ( $this->mImageBasePath && isset( $uploadInfo[
'rel'] ) ) {
938 $path =
"{$this->mImageBasePath}/{$uploadInfo['rel']}";
939 if ( file_exists(
$path ) ) {
940 $uploadInfo[
'fileSrc'] =
$path;
941 $uploadInfo[
'isTempSrc'] =
false;
945 if ( $this->mImportUploads ) {
955 $filename = tempnam(
wfTempDir(),
'importupload' );
956 file_put_contents( $filename, $contents );
967 $text = isset( $uploadInfo[
'text'] ) ? $uploadInfo[
'text'] :
'';
969 $revision->setTitle( $pageInfo[
'_title'] );
970 $revision->setID( $pageInfo[
'id'] );
971 $revision->setTimestamp( $uploadInfo[
'timestamp'] );
972 $revision->setText( $text );
973 $revision->setFilename( $uploadInfo[
'filename'] );
974 if ( isset( $uploadInfo[
'archivename'] ) ) {
975 $revision->setArchiveName( $uploadInfo[
'archivename'] );
977 $revision->setSrc( $uploadInfo[
'src'] );
978 if ( isset( $uploadInfo[
'fileSrc'] ) ) {
979 $revision->setFileSrc( $uploadInfo[
'fileSrc'],
980 !empty( $uploadInfo[
'isTempSrc'] ) );
982 if ( isset( $uploadInfo[
'sha1base36'] ) ) {
983 $revision->setSha1Base36( $uploadInfo[
'sha1base36'] );
985 $revision->setSize( intval( $uploadInfo[
'size'] ) );
986 $revision->setComment( $uploadInfo[
'comment'] );
988 if ( isset( $uploadInfo[
'contributor'][
'ip'] ) ) {
989 $revision->setUserIP( $uploadInfo[
'contributor'][
'ip'] );
991 if ( isset( $uploadInfo[
'contributor'][
'username'] ) ) {
992 $revision->setUsername( $uploadInfo[
'contributor'][
'username'] );
994 $revision->setNoUpdates( $this->mNoUpdates );
996 return call_user_func( $this->mUploadCallback, $revision );
1003 $fields = [
'id',
'ip',
'username' ];
1006 if ( $this->reader->isEmptyElement ) {
1009 while ( $this->reader->read() ) {
1010 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
1011 $this->reader->localName ==
'contributor' ) {
1015 $tag = $this->reader->localName;
1017 if ( in_array(
$tag, $fields ) ) {
1031 if ( is_null( $this->foreignNamespaces ) ) {
1035 $this->foreignNamespaces );
1038 $foreignTitle = $foreignTitleFactory->createForeignTitle( $text,
1041 $title = $this->importTitleFactory->createTitleFromForeignTitle(
1044 $commandLineMode = $this->config->get(
'CommandLineMode' );
1045 if ( is_null(
$title ) ) {
1046 # Invalid page title? Ignore the page
1047 $this->
notice(
'import-error-invalid', $foreignTitle->getFullText() );
1049 } elseif (
$title->isExternal() ) {
1050 $this->
notice(
'import-error-interwiki',
$title->getPrefixedText() );
1052 } elseif ( !
$title->canExist() ) {
1053 $this->
notice(
'import-error-special',
$title->getPrefixedText() );
1055 } elseif ( !
$title->userCan(
'edit' ) && !$commandLineMode ) {
1056 # Do not import if the importing wiki user cannot edit this page
1057 $this->
notice(
'import-error-edit',
$title->getPrefixedText() );
1059 } elseif ( !
$title->exists() && !
$title->userCan(
'create' ) && !$commandLineMode ) {
1060 # Do not import if the importing wiki user cannot create this page
1061 $this->
notice(
'import-error-create',
$title->getPrefixedText() );
1065 return [
$title, $foreignTitle ];
setTargetRootPage($rootpage)
Set a target root page under which all pages are imported.
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
A parser that translates page titles on a foreign wiki into ForeignTitle objects, using information a...
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
$wgMaxArticleSize
Maximum article size in kilobytes.
processRevision($pageInfo, $revisionInfo)
pageOutCallback($title, $foreignTitle, $revCount, $sucCount, $pageInfo)
Notify the callback function when a "" is closed.
XML file reader for the page data importer.
A class to convert page titles on a foreign wiki (ForeignTitle objects) into page titles on the local...
A class to convert page titles on a foreign wiki (ForeignTitle objects) into page titles on the local...
setSiteInfoCallback($callback)
Sets the action to perform when site info is encountered.
finishImportPage($title, $foreignTitle, $revCount, $sRevCount, $pageInfo)
Mostly for hook use.
static exists($index)
Returns whether the specified namespace exists.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
setNoticeCallback($callback)
Set a callback that displays notice messages.
importLogItem($revision)
Default per-revision callback, performs the import.
when a variable name is used in a it is silently declared as a new local masking the global
setRevisionCallback($callback)
Sets the action to perform as each page revision is reached.
setTargetNamespace($namespace)
Set a target namespace to override the defaults.
setPageOutCallback($callback)
Sets the action to perform as each page in the stream is completed.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
setImportTitleFactory($factory)
Sets the factory object to use to convert ForeignTitle objects into local Title objects.
handleRevision(&$pageInfo)
wfTempDir()
Tries to get the system directory for temporary files.
nodeContents()
Shouldn't something like this be built-in to XMLReader? Fetches text contents of the current element...
logItemCallback($revision)
Notify the callback function of a new log item.
doImport()
Primary entry point.
static factory(array $deltas)
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 unsetoffset-wrap String Wrap the message in html(usually something like"<
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
siteInfoCallback($siteInfo)
Notify the callback function of site info.
nodeAttribute($attr)
Retrieves the contents of the named attribute of the current element.
Represents a revision, log entry or upload during the import process.
wfDeprecated($function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
namespace and then decline to actually register it file or subcat img or subcat $title
static hasSubpages($index)
Does the namespace allow subpages?
static newGood($value=null)
Factory function for good results.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books $tag
debugRevisionHandler(&$revision)
Alternate per-revision callback, for debugging.
revisionCallback($revision)
Notify the callback function of a revision.
setDebug($debug)
Set debug mode...
setImportUploads($import)
setPageCallback($callback)
Sets the action to perform as each new page in the stream is reached.
__construct(ImportSource $source, Config $config=null)
Creates an ImportXMLReader drawing from the source provided.
setNoUpdates($noupdates)
Set 'no updates' mode.
processTitle($text, $ns=null)
static getDefaultInstance()
static registerSource(ImportSource $source)
setUploadCallback($callback)
Sets the action to perform as each file upload version is reached.
setLogItemCallback($callback)
Sets the action to perform as each log item reached.
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
A parser that translates page titles on a foreign wiki into ForeignTitle objects, with no knowledge o...
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...
processUpload($pageInfo, $uploadInfo)
Source interface for XML import.
static addUpdate(DeferrableUpdate $update, $stage=self::POSTSEND)
Add an update to the deferred list to be run later by execute()
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content $content
ImportTitleFactory $importTitleFactory
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
A class to convert page titles on a foreign wiki (ForeignTitle objects) into page titles on the local...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
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
beforeImportPage($titleAndForeignTitle)
Default per-page callback.
pageCallback($title)
Notify the callback function when a new "
" is reached.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached one of or reset my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
importUpload($revision)
Dummy for now...
Exception representing a failure to serialize or unserialize a content object.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
importRevision($revision)
Default per-revision callback, performs the import.