97 parent::__construct(
false );
103 throw new InvalidArgumentException(
104 "The Title object yields no ID. Perhaps the page doesn't exist?"
110 $this->mLinks = $parserOutput->
getLinks();
111 $this->mImages = $parserOutput->
getImages();
118 # Convert the format of the interlanguage links
119 # I didn't want to change it in the ParserOutput, because that array is passed all
120 # the way back to the skin, so either a skin API break would be required, or an
121 # inefficient back-conversion.
123 $this->mInterlangs = [];
125 list( $key, $title ) = explode(
':', $link, 2 );
126 $this->mInterlangs[$key] =
$title;
129 foreach ( $this->mCategories
as &$sortkey ) {
130 # If the sortkey is longer then 255 bytes,
131 # it truncated by DB, and then doesn't get
132 # matched when comparing existing vs current
133 # categories, causing bug 25254.
134 # Also. substr behaves weird when given "".
135 if ( $sortkey !==
'' ) {
136 $sortkey = substr( $sortkey, 0, 255 );
140 $this->mRecursive = $recursive;
142 Hooks::run(
'LinksUpdateConstructed', [ &$this ] );
153 $scopedLock = self::acquirePageLock( $this->mDb, $this->mId );
161 $this->mDb->onTransactionIdle(
function() {
162 Hooks::run(
'LinksUpdateComplete', [ &$this ] );
177 $key =
"LinksUpdate:$why:pageid:$pageId";
179 if ( !$scopedLock ) {
180 throw new RuntimeException(
"Could not acquire lock '$key'." );
191 $this->
incrTableUpdate(
'pagelinks',
'pl', $this->linkDeletions, $this->linkInsertions );
199 # Invalidate all image description pages which had links added or removed
200 $imageUpdates = $imageDeletes + array_diff_key( $this->mImages, $existing );
213 # Inline interwiki links
229 # Invalidate all categories which were added, deleted or changed (set symmetric difference)
230 $categoryInserts = array_diff_assoc( $this->mCategories, $existing );
231 $categoryUpdates = $categoryInserts + $categoryDeletes;
241 # Invalidate the necessary pages
242 $changed = $propertiesDeletes + array_diff_assoc( $this->mProperties, $existing );
245 # Refresh links of all pages including this page
246 # This will be in a separate transaction
247 if ( $this->mRecursive ) {
251 # Update the links table freshness for this title
262 self::queueRecursiveJobsForTable( $this->mTitle,
'templatelinks' );
263 if ( $this->mTitle->getNamespace() ==
NS_FILE ) {
265 self::queueRecursiveJobsForTable( $this->mTitle,
'imagelinks' );
268 $bc = $this->mTitle->getBacklinkCache();
275 foreach ( $bc->getCascadeProtectedLinks()
as $title ) {
295 "refreshlinks:{$table}:{$title->getPrefixedText()}"
317 $a->updateCategoryCounts(
318 array_keys( $added ), array_keys( $deleted )
339 if ( $table ===
'page_props' ) {
340 $fromField =
'pp_page';
342 $fromField =
"{$prefix}_from";
346 if ( $table ===
'pagelinks' || $table ===
'templatelinks' || $table ===
'iwlinks' ) {
347 $baseKey = ( $table ===
'iwlinks' ) ?
'iwl_prefix' :
"{$prefix}_namespace";
350 $curDeletionBatch = [];
351 $deletionBatches = [];
352 foreach ( $deletions
as $ns => $dbKeys ) {
353 foreach ( $dbKeys
as $dbKey => $unused ) {
354 $curDeletionBatch[$ns][$dbKey] = 1;
355 if ( ++$curBatchSize >= $bSize ) {
356 $deletionBatches[] = $curDeletionBatch;
357 $curDeletionBatch = [];
362 if ( $curDeletionBatch ) {
363 $deletionBatches[] = $curDeletionBatch;
366 foreach ( $deletionBatches
as $deletionBatch ) {
369 $this->mDb->makeWhereFrom2d( $deletionBatch, $baseKey,
"{$prefix}_title" )
373 if ( $table ===
'langlinks' ) {
374 $toField =
'll_lang';
375 } elseif ( $table ===
'page_props' ) {
376 $toField =
'pp_propname';
378 $toField = $prefix .
'_to';
381 $deletionBatches = array_chunk( array_keys( $deletions ), $bSize );
382 foreach ( $deletionBatches
as $deletionBatch ) {
383 $deleteWheres[] = [ $fromField =>
$this->mId, $toField => $deletionBatch ];
387 foreach ( $deleteWheres
as $deleteWhere ) {
388 $this->mDb->delete( $table, $deleteWhere, __METHOD__ );
389 $this->mDb->commit( __METHOD__,
'flush' );
390 wfGetLBFactory()->waitForReplication( [
'wiki' => $this->mDb->getWikiID() ] );
393 $insertBatches = array_chunk( $insertions, $bSize );
394 foreach ( $insertBatches
as $insertBatch ) {
395 $this->mDb->insert( $table, $insertBatch, __METHOD__,
'IGNORE' );
396 $this->mDb->commit( __METHOD__,
'flush' );
397 wfGetLBFactory()->waitForReplication( [
'wiki' => $this->mDb->getWikiID() ] );
400 if ( count( $insertions ) ) {
401 Hooks::run(
'LinksUpdateAfterInsert', [ $this, $table, $insertions ] );
413 foreach ( $this->mLinks
as $ns => $dbkeys ) {
414 $diffs = isset( $existing[$ns] )
415 ? array_diff_key( $dbkeys, $existing[$ns] )
417 foreach ( $diffs
as $dbk => $id ) {
420 'pl_from_namespace' => $this->mTitle->getNamespace(),
421 'pl_namespace' => $ns,
437 foreach ( $this->mTemplates
as $ns => $dbkeys ) {
438 $diffs = isset( $existing[$ns] ) ? array_diff_key( $dbkeys, $existing[$ns] ) : $dbkeys;
439 foreach ( $diffs
as $dbk => $id ) {
442 'tl_from_namespace' => $this->mTitle->getNamespace(),
443 'tl_namespace' => $ns,
460 $diffs = array_diff_key( $this->mImages, $existing );
461 foreach ( $diffs
as $iname => $dummy ) {
464 'il_from_namespace' => $this->mTitle->getNamespace(),
479 $diffs = array_diff_key( $this->mExternals, $existing );
480 foreach ( $diffs
as $url => $dummy ) {
483 'el_id' => $this->mDb->nextSequenceValue(
'externallinks_el_id_seq' ),
486 'el_index' => $index,
504 $diffs = array_diff_assoc( $this->mCategories, $existing );
506 foreach ( $diffs
as $name => $prefix ) {
508 $wgContLang->findVariantLink(
$name, $nt,
true );
510 if ( $this->mTitle->getNamespace() ==
NS_CATEGORY ) {
512 } elseif ( $this->mTitle->getNamespace() ==
NS_FILE ) {
518 # Treat custom sortkeys as a prefix, so that if multiple
519 # things are forced to sort as '*' or something, they'll
520 # sort properly in the category rather than in page_id
523 $this->mTitle->getCategorySortkey( $prefix ) );
528 'cl_sortkey' => $sortkey,
529 'cl_timestamp' => $this->mDb->timestamp(),
530 'cl_sortkey_prefix' => $prefix,
547 $diffs = array_diff_assoc( $this->mInterlangs, $existing );
566 $diffs = array_diff_assoc( $this->mProperties, $existing );
569 foreach ( array_keys( $diffs )
as $name ) {
595 $value = $this->mProperties[$prop];
599 'pp_propname' => $prop,
603 if ( $wgPagePropsHaveSortkey ) {
624 return floatval(
$value );
638 foreach ( $this->mInterwikis
as $prefix => $dbkeys ) {
639 $diffs = isset( $existing[$prefix] )
640 ? array_diff_key( $dbkeys, $existing[$prefix] )
643 foreach ( $diffs
as $dbk => $id ) {
646 'iwl_prefix' => $prefix,
663 foreach ( $existing
as $ns => $dbkeys ) {
664 if ( isset( $this->mLinks[$ns] ) ) {
665 $del[$ns] = array_diff_key( $existing[$ns], $this->mLinks[$ns] );
667 $del[$ns] = $existing[$ns];
682 foreach ( $existing
as $ns => $dbkeys ) {
683 if ( isset( $this->mTemplates[$ns] ) ) {
684 $del[$ns] = array_diff_key( $existing[$ns], $this->mTemplates[$ns] );
686 $del[$ns] = $existing[$ns];
700 return array_diff_key( $existing, $this->mImages );
710 return array_diff_key( $existing, $this->mExternals );
720 return array_diff_assoc( $existing, $this->mCategories );
730 return array_diff_assoc( $existing, $this->mInterlangs );
739 return array_diff_assoc( $existing, $this->mProperties );
750 foreach ( $existing
as $prefix => $dbkeys ) {
751 if ( isset( $this->mInterwikis[$prefix] ) ) {
752 $del[$prefix] = array_diff_key( $existing[$prefix], $this->mInterwikis[$prefix] );
754 $del[$prefix] = $existing[$prefix];
767 $res = $this->mDb->select(
'pagelinks', [
'pl_namespace',
'pl_title' ],
768 [
'pl_from' => $this->mId ], __METHOD__, $this->mOptions );
770 foreach (
$res as $row ) {
771 if ( !isset( $arr[$row->pl_namespace] ) ) {
772 $arr[$row->pl_namespace] = [];
774 $arr[$row->pl_namespace][$row->pl_title] = 1;
786 $res = $this->mDb->select(
'templatelinks', [
'tl_namespace',
'tl_title' ],
787 [
'tl_from' => $this->mId ], __METHOD__, $this->mOptions );
789 foreach (
$res as $row ) {
790 if ( !isset( $arr[$row->tl_namespace] ) ) {
791 $arr[$row->tl_namespace] = [];
793 $arr[$row->tl_namespace][$row->tl_title] = 1;
805 $res = $this->mDb->select(
'imagelinks', [
'il_to' ],
806 [
'il_from' => $this->mId ], __METHOD__, $this->mOptions );
808 foreach (
$res as $row ) {
809 $arr[$row->il_to] = 1;
821 $res = $this->mDb->select(
'externallinks', [
'el_to' ],
822 [
'el_from' => $this->mId ], __METHOD__, $this->mOptions );
824 foreach (
$res as $row ) {
825 $arr[$row->el_to] = 1;
837 $res = $this->mDb->select(
'categorylinks', [
'cl_to',
'cl_sortkey_prefix' ],
838 [
'cl_from' => $this->mId ], __METHOD__, $this->mOptions );
840 foreach (
$res as $row ) {
841 $arr[$row->cl_to] = $row->cl_sortkey_prefix;
854 $res = $this->mDb->select(
'langlinks', [
'll_lang',
'll_title' ],
855 [
'll_from' => $this->mId ], __METHOD__, $this->mOptions );
857 foreach (
$res as $row ) {
858 $arr[$row->ll_lang] = $row->ll_title;
869 $res = $this->mDb->select(
'iwlinks', [
'iwl_prefix',
'iwl_title' ],
870 [
'iwl_from' => $this->mId ], __METHOD__, $this->mOptions );
872 foreach (
$res as $row ) {
873 if ( !isset( $arr[$row->iwl_prefix] ) ) {
874 $arr[$row->iwl_prefix] = [];
876 $arr[$row->iwl_prefix][$row->iwl_title] = 1;
888 $res = $this->mDb->select(
'page_props', [
'pp_propname',
'pp_value' ],
889 [
'pp_page' => $this->mId ], __METHOD__, $this->mOptions );
891 foreach (
$res as $row ) {
892 $arr[$row->pp_propname] = $row->pp_value;
931 $this->mRevision = $revision;
968 if ( isset( $wgPagePropLinkInvalidations[
$name] ) ) {
969 $inv = $wgPagePropLinkInvalidations[
$name];
970 if ( !is_array( $inv ) ) {
973 foreach ( $inv
as $table ) {
986 if ( $this->linkInsertions === null ) {
990 foreach ( $this->linkInsertions
as $insertion ) {
1003 if ( $this->linkDeletions === null ) {
1007 foreach ( $this->linkDeletions
as $ns =>
$titles ) {
1022 $timestamp = $this->mParserOutput->getCacheTime();
1023 $this->mDb->update(
'page',
1024 [
'page_links_updated' => $this->mDb->timestamp(
$timestamp ) ],
1032 if ( $this->
user ) {
1034 'userId' => $this->
user->getId(),
1035 'userName' => $this->
user->getName(),
1041 if ( $this->mRevision ) {
1042 $triggeringRevisionId = $this->mRevision->getId();
1044 $triggeringRevisionId =
false;
1048 'wiki' => $this->mDb->getWikiID(),
1050 'refreshLinksPrioritized',
1053 'rootJobTimestamp' => $this->mParserOutput->getCacheTime(),
1055 'triggeringUser' => $userInfo,
1056 'triggeringRevisionId' => $triggeringRevisionId,
1058 [
'removeDuplicates' =>
true ],
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
setRevision(Revision $revision)
Set the revision corresponding to this LinksUpdate.
invalidateProperties($changed)
Invalidate any necessary link lists related to page property changes.
updateLinksTimestamp()
Update links table freshness.
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
$wgPagePropsHaveSortkey
Whether the page_props table has a pp_sortkey column.
queueRecursiveJobs()
Queue recursive jobs for this page.
getImageDeletions($existing)
Given an array of existing images, returns those images which are not in $this and thus should be del...
bool $mRecursive
Whether to queue jobs for recursive updates.
getArticleID($flags=0)
Get the article ID for this Title from the link cache, adding it if necessary.
getPropertySortKeyValue($value)
Determines the sort key for the given property value.
Class the manages updates of *_link tables as well as similar extension-managed tables.
getCategoryInsertions($existing=[])
Get an array of category insertions.
getExistingInterwikis()
Get an array of existing inline interwiki links, as a 2-D array.
array $mProperties
Map of arbitrary name to value.
if(!isset($args[0])) $lang
Interface that marks a DataUpdate as enqueuable via the JobQueue.
static newRootJobParams($key)
Get "root job" parameters for a task.
wfMakeUrlIndexes($url)
Make URL indexes, appropriate for the el_index field of externallinks.
Revision $mRevision
Revision for which this update has been triggered.
null array $linkInsertions
Added links if calculated.
Represents a title within MediaWiki.
updateCategoryCounts($added, $deleted)
Update all the appropriate counts in the category table.
when a variable name is used in a it is silently declared as a new local masking the global
getExistingProperties()
Get an array of existing categories, with the name in the key and sort key in the value...
Title $mTitle
Title object of the article linked from.
getBacklinkCache()
Get a backlink cache object.
$wgCategoryCollation
Specify how category names should be sorted, when listed on a category page.
__construct(Title $title, ParserOutput $parserOutput, $recursive=true)
Constructor.
getPagePropRowData($prop)
Returns an associative array to be used for inserting a row into the page_props table.
getExistingInterlangs()
Get an array of existing interlanguage links, with the language code in the key and the title in the ...
static queueRecursiveJobsForTable(Title $title, $table)
Queue a RefreshLinks job for any table.
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. '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 '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. 'LanguageGetMagic':DEPRECATED!Use $magicWords in a file listed in $wgExtensionMessagesFiles instead.Use this to define synonyms of magic words depending of the language &$magicExtensions:associative array of magic words synonyms $lang:language code(string) '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 'LanguageGetSpecialPageAliases':DEPRECATED!Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead.Use to define aliases of special pages names depending of the language &$specialPageAliases:associative array of magic words synonyms $lang:language code(string) '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:Associative array mapping language codes to prefixed links of the form"language:title".&$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!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
ParserOutput $mParserOutput
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
getTemplateDeletions($existing)
Given an array of existing templates, returns those templates which are not in $this and thus should ...
The User object encapsulates all of the user-specific settings (user_id, name, rights, email address, options, last login time).
$wgPagePropLinkInvalidations
Page property link table invalidation lists.
getLinkInsertions($existing=[])
Get an array of pagelinks insertions for passing to the DB Skips the titles specified by the 2-D arra...
getInterlangDeletions($existing)
Given an array of existing interlanguage links, returns those links which are not in $this and thus s...
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 true
getPropertyInsertions($existing=[])
Get an array of page property insertions.
getTitle()
Return the title object of the page being updated.
getExistingCategories()
Get an array of existing categories, with the name in the key and sort key in the value...
array $mImages
DB keys of the images used, in the array key only.
static getMain()
Static methods.
invalidatePages($namespace, array $dbkeys)
Invalidate the cache of a list of pages from a single namespace.
getExistingExternals()
Get an array of existing external links, URLs in the keys.
getParserOutput()
Returns parser output.
getCategoryDeletions($existing)
Given an array of existing categories, returns those categories which are not in $this and thus shoul...
Class to invalidate the HTML cache of all the pages linking to a given title.
getAddedLinks()
Fetch page links added by this LinksUpdate.
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 $parserOutput
const GAID_FOR_UPDATE
Used to be GAID_FOR_UPDATE define.
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
Wikitext formatted, in the key only.
setTriggeringUser(User $user)
Set the User who triggered this LinksUpdate.
getRemovedLinks()
Fetch page links removed by this LinksUpdate.
incrTableUpdate($table, $prefix, $deletions, $insertions)
Update a table by doing a delete query then an insert query.
array $mExternals
URLs of external links, array key only.
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
array $mTemplates
Map of title strings to IDs for the template references, including broken ones.
Allows to change the fields on the form that will be generated are created Can be used to omit specific feeds from being outputted You must not use this hook to add use OutputPage::addFeedLink() instead.&$feedLinks conditions will AND in the final query as a Content object as a Content object $title
static addUpdate(DeferrableUpdate $update, $type=self::POSTSEND)
Add an update to the deferred list.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
invalidateCategories($cats)
getExistingImages()
Get an array of existing images, image names in the keys.
getInterlangInsertions($existing=[])
Get an array of interlanguage link insertions.
getTemplateInsertions($existing=[])
Get an array of template insertions.
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
Abstract base class for update jobs that put some secondary data extracted from article content into ...
getExistingTemplates()
Get an array of existing templates, as a 2-D array.
getExternalInsertions($existing=[])
Get an array of externallinks insertions.
getExistingLinks()
Get an array of existing links, as a 2-D array.
invalidateImageDescriptions($images)
static singleton($wiki=false)
Job to update link tables for pages.
array $mLinks
Map of title strings to IDs for the links in the document.
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
getExternalDeletions($existing)
Given an array of existing external links, returns those links which are not in $this and thus should...
wfGetLBFactory()
Get the load balancer factory object.
getInterwikiDeletions($existing)
Given an array of existing interwiki links, returns those links which are not in $this and thus shoul...
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
static newPrioritized(Title $title, array $params)
getPropertyDeletions($existing)
Get array of properties which should be deleted.
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
getInterwikiInsertions($existing=[])
Get an array of interwiki insertions for passing to the DB Skips the titles specified by the 2-D arra...
getLinkDeletions($existing)
Given an array of existing links, returns those links which are not in $this and thus should be delet...
doUpdate()
Update link tables with outgoing links from an updated article.
static consume(ScopedCallback &$sc=null)
Trigger a scoped callback and destroy it.
null array $linkDeletions
Deleted links if calculated.
getImages()
Return the list of images used as generated by the parser.
array $mInterlangs
Map of language codes to titles.
static acquirePageLock(IDatabase $dbw, $pageId, $why= 'atomicity')
Acquire a lock for performing link table updates for a page on a DB.
int $mId
Page ID of the article linked from.
getImageInsertions($existing=[])
Get an array of image insertions Skips the names specified in $existing.
array $mCategories
Map of category names to sort keys.
Job queue task description base code.
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
static makeTitle($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
getScopedLockAndFlush($lockKey, $fname, $timeout)
Acquire a named lock, flush any transaction, and return an RAII style unlocker object.
Basic database interface for live and lazy-loaded DB handles.
array $mInterwikis
2-D map of (prefix => DBK => 1)
Allows to change the fields on the form that will be generated $name