50 unset( $this->
$name );
63 foreach ( $this->internals
as &$nsLinks ) {
64 foreach ( $nsLinks
as &$entry ) {
65 unset( $entry[
'title'] );
71 foreach ( $this->interwikis
as &$entry ) {
72 unset( $entry[
'title'] );
76 return [
'internals',
'interwikis',
'size' ];
83 foreach ( $this->internals
as &$nsLinks ) {
84 foreach ( $nsLinks
as &$entry ) {
91 foreach ( $this->interwikis
as &$entry ) {
102 foreach ( $other->internals
as $ns => $entries ) {
103 $this->size += count( $entries );
104 if ( !isset( $this->internals[$ns] ) ) {
105 $this->internals[$ns] = $entries;
107 $this->internals[$ns] += $entries;
110 $this->interwikis += $other->interwikis;
126 $this->tempIdOffset = $idOffset = $this->parent->nextLinkID();
129 # Renumber internal links
130 foreach ( $other->internals
as $ns => $nsLinks ) {
131 foreach ( $nsLinks
as $key => $entry ) {
132 $newKey = $idOffset + $key;
133 $this->internals[$ns][$newKey] = $entry;
134 $maxId = $newKey > $maxId ? $newKey : $maxId;
137 $texts = preg_replace_callback(
'/(<!--LINK \d+:)(\d+)(-->)/',
138 [ $this,
'mergeForeignCallback' ], $texts );
140 # Renumber interwiki links
141 foreach ( $other->interwikis
as $key => $entry ) {
142 $newKey = $idOffset + $key;
143 $this->interwikis[$newKey] = $entry;
144 $maxId = $newKey > $maxId ? $newKey : $maxId;
146 $texts = preg_replace_callback(
'/(<!--IWLINK )(\d+)(-->)/',
147 [ $this,
'mergeForeignCallback' ], $texts );
149 # Set the parent link ID to be beyond the highest used ID
150 $this->parent->setLinkID( $maxId + 1 );
151 $this->tempIdOffset = null;
174 while ( $pos < strlen( $text ) ) {
175 if ( !preg_match(
'/<!--LINK (\d+):(\d+)-->/',
176 $text, $m, PREG_OFFSET_CAPTURE, $pos )
182 $sub->internals[$ns][$key] = $this->internals[$ns][$key];
183 $pos = $m[0][1] + strlen( $m[0][0] );
188 while ( $pos < strlen( $text ) ) {
189 if ( !preg_match(
'/<!--IWLINK (\d+)-->/', $text, $m, PREG_OFFSET_CAPTURE, $pos ) ) {
193 $sub->interwikis[$key] = $this->interwikis[$key];
194 $pos = $m[0][1] + strlen( $m[0][0] );
204 global $wgLinkHolderBatchSize;
205 return $this->size > $wgLinkHolderBatchSize;
213 $this->internals = [];
214 $this->interwikis = [];
232 if ( !is_object( $nt ) ) {
234 $retVal =
"<!-- ERROR -->{$prefix}{$text}{$trail}";
236 # Separate the link trail from the rest of the link
241 'text' => $prefix . $text . $inside,
242 'pdbk' => $nt->getPrefixedDBkey(),
248 if ( $nt->isExternal() ) {
250 $key = $this->parent->nextLinkID();
251 $this->interwikis[$key] = $entry;
252 $retVal =
"<!--IWLINK $key-->{$trail}";
254 $key = $this->parent->nextLinkID();
255 $ns = $nt->getNamespace();
256 $this->internals[$ns][$key] = $entry;
257 $retVal =
"<!--LINK $ns:$key-->{$trail}";
281 if ( !$this->internals ) {
289 $output = $this->parent->getOutput();
295 ksort( $this->internals );
297 $linkcolour_ids = [];
301 $lb->setCaller( __METHOD__ );
303 foreach ( $this->internals
as $ns => $entries ) {
304 foreach ( $entries
as $entry ) {
307 $pdbk = $entry[
'pdbk'];
309 # Skip invalid entries.
310 # Result will be ugly, but prevents crash.
311 if ( is_null(
$title ) ) {
315 # Check if it's a static known link, e.g. interwiki
316 if (
$title->isAlwaysKnown() ) {
321 $id = $linkCache->getGoodLinkID( $pdbk );
325 $linkcolour_ids[$id] = $pdbk;
326 } elseif ( $linkCache->isBadLink( $pdbk ) ) {
329 # Not in the link cache, add it to the query
335 if ( !$lb->isEmpty() ) {
336 $fields = array_merge(
338 [
'page_namespace',
'page_title' ]
344 $lb->constructSet(
'page',
$dbr ),
348 # Fetch data and form into an associative array
349 # non-existent = broken
352 $pdbk =
$title->getPrefixedDBkey();
353 $linkCache->addGoodLinkObjFromRow(
$title, $s );
357 $linkcolour_ids[$s->page_id] = $pdbk;
361 if ( count( $linkcolour_ids ) ) {
366 # Do a second query for different language variants of links and categories
367 if ( $wgContLang->hasVariants() ) {
371 # Construct search and replace arrays
373 foreach ( $this->internals
as $ns => $entries ) {
374 foreach ( $entries
as $index => $entry ) {
375 $pdbk = $entry[
'pdbk'];
377 $query = isset( $entry[
'query'] ) ? $entry[
'query'] : [];
379 $searchkey =
"<!--LINK $key-->";
380 $displayText = $entry[
'text'];
381 if ( isset( $entry[
'selflink'] ) ) {
385 if ( $displayText ===
'' ) {
388 $displayText =
new HtmlArmor( $displayText );
395 $linkCache->addBadLinkObj(
$title );
406 $replacePairs[$searchkey] =
$link;
412 $text = preg_replace_callback(
413 '/(<!--LINK .*?-->)/',
425 if ( empty( $this->interwikis ) ) {
429 # Make interwiki link HTML
430 $output = $this->parent->getOutput();
433 foreach ( $this->interwikis
as $key =>
$link ) {
442 $text = preg_replace_callback(
443 '/<!--IWLINK (.*?)-->/',
456 $output = $this->parent->getOutput();
458 $titlesToBeConverted =
'';
464 foreach ( $this->internals
as $ns => $entries ) {
468 foreach ( $entries
as $index => $entry ) {
469 $pdbk = $entry[
'pdbk'];
472 $titlesAttrs[] = [ $index, $entry[
'title'] ];
475 $titlesToBeConverted .= $entry[
'title']->getText() .
"\0";
481 $titlesAllVariants = $wgContLang->autoConvertToAllVariants( rtrim( $titlesToBeConverted,
"\0" ) );
482 $allVariantsName = array_keys( $titlesAllVariants );
483 foreach ( $titlesAllVariants
as &$titlesVariant ) {
484 $titlesVariant = explode(
"\0", $titlesVariant );
488 $parentTitle = $this->parent->getTitle();
489 foreach ( $titlesAttrs
as $i => $attrs ) {
492 $ns =
$title->getNamespace();
493 $text =
$title->getText();
495 foreach ( $allVariantsName
as $variantName ) {
496 $textVariant = $titlesAllVariants[$variantName][$i];
497 if ( $textVariant === $text ) {
506 if ( $variantTitle->equals( $parentTitle ) && !
$title->hasFragment() ) {
507 $this->internals[$ns][$index][
'selflink'] =
true;
511 $linkBatch->addObj( $variantTitle );
512 $variantMap[$variantTitle->getPrefixedDBkey()][] =
"$ns:$index";
521 $linkBatch->addObj( $categoryTitle );
522 $variants = $wgContLang->autoConvertToAllVariants( $category );
523 foreach ( $variants
as $variant ) {
524 if ( $variant !== $category ) {
526 if ( is_null( $variantTitle ) ) {
529 $linkBatch->addObj( $variantTitle );
530 $categoryMap[$variant] = [ $category, $categoryTitle ];
535 if ( !$linkBatch->isEmpty() ) {
538 $fields = array_merge(
540 [
'page_namespace',
'page_title' ]
543 $varRes =
$dbr->select(
'page',
545 $linkBatch->constructSet(
'page',
$dbr ),
549 $linkcolour_ids = [];
553 foreach ( $varRes
as $s ) {
555 $varPdbk = $variantTitle->getPrefixedDBkey();
556 $vardbk = $variantTitle->getDBkey();
559 if ( isset( $variantMap[$varPdbk] ) ) {
560 $holderKeys = $variantMap[$varPdbk];
561 $linkCache->addGoodLinkObjFromRow( $variantTitle, $s );
566 foreach ( $holderKeys
as $key ) {
567 list( $ns, $index ) = explode(
':', $key, 2 );
568 $entry =& $this->internals[$ns][$index];
569 $pdbk = $entry[
'pdbk'];
573 $entry[
'title'] = $variantTitle;
574 $entry[
'pdbk'] = $varPdbk;
578 $linkcolour_ids[$s->page_id] = $pdbk;
583 if ( isset( $categoryMap[$vardbk] ) ) {
584 list( $oldkey, $oldtitle ) = $categoryMap[$vardbk];
585 if ( !isset( $varCategories[$oldkey] ) && !$oldtitle->exists() ) {
586 $varCategories[$oldkey] = $vardbk;
593 if ( count( $varCategories ) > 0 ) {
596 foreach ( $originalCats
as $cat => $sortkey ) {
598 if ( array_key_exists( $cat, $varCategories ) ) {
599 $newCats[$varCategories[$cat]] = $sortkey;
601 $newCats[$cat] = $sortkey;
618 $text = preg_replace_callback(
619 '/<!--(LINK|IWLINK) (.*?)-->/',
620 [ &$this,
'replaceTextCallback' ],
636 if (
$type ==
'LINK' ) {
637 list( $ns, $index ) = explode(
':', $key, 2 );
638 if ( isset( $this->internals[$ns][$index][
'text'] ) ) {
639 return $this->internals[$ns][$index][
'text'];
641 } elseif (
$type ==
'IWLINK' ) {
642 if ( isset( $this->interwikis[$key][
'text'] ) ) {
643 return $this->interwikis[$key][
'text'];
replace(&$text)
Replace link placeholders with actual links, in the buffer.
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
wfGetDB($db, $groups=[], $wiki=false)
Get a Database object.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
getSubArray($text)
Get a subset of the current LinkHolderArray which is sufficient to interpret the given text...
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 after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
isBig()
Returns true if the memory requirements of this object are getting large.
static makeSelfLinkObj($nt, $html= '', $query= '', $trail= '', $prefix= '')
Make appropriate markup for a link to the current article.
makeHolder($nt, $text= '', $query=[], $trail= '', $prefix= '')
Make a link placeholder.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
doVariants(&$colours)
Modify $this->internals and $colours according to language variant linking rules. ...
when a variable name is used in a it is silently declared as a new local masking the global
replaceInterwiki(&$text)
Replace interwiki links.
static splitTrail($trail)
Split a link trail, return the "inside" portion and the remainder of the trail as a two-element array...
mergeForeign($other, $texts)
Merge a LinkHolderArray from another parser instance into this one.
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Class representing a list of titles The execute() method checks them all for existence and adds them ...
replaceInternal(&$text)
Replace internal links.
static singleton()
Get an instance of this class.
Class to perform replacement based on a simple hashtable lookup.
__sleep()
Don't serialize the parent object, it is big, and not needed when it is a parameter to mergeForeign()...
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
static makeTitleSafe($ns, $title, $fragment= '', $interwiki= '')
Create a new Title from a namespace index and a DB key.
namespace and then decline to actually register it file or subcat img or subcat $title
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
if the prop value should be in the metadata multi language array can modify can modify indexed by page_id & $colours
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
__destruct()
Reduce memory usage to reduce the impact of circular references.
static getSelectFields()
Fields that LinkCache needs to select.
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 as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
replaceText($text)
Replace link placeholders with plain text of links (not HTML-formatted).
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
__wakeup()
Recreate the Title objects.
clear()
Clear all stored link holders.
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
addLink(Title $title, $id=null)
Record a local or interwiki inline link for saving in future link tables.
merge($other)
Merge another LinkHolderArray into this one.
replaceTextCallback($matches)
Callback for replaceText()
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.
Allows to change the fields on the form that will be generated $name