MediaWiki REL1_37
LinkHolderArray Class Reference
Collaboration diagram for LinkHolderArray:

Public Member Functions

 __construct (Parser $parent, ILanguageConverter $languageConverter=null, HookContainer $hookContainer=null)
 
 __destruct ()
 Reduce memory usage to reduce the impact of circular references.
 
 clear ()
 Clear all stored link holders.
 
 isBig ()
 Returns true if the memory requirements of this object are getting large.
 
 makeHolder (Title $nt, $text='', $trail='', $prefix='')
 Make a link placeholder.
 
 merge ( $other)
 Merge another LinkHolderArray into this one.
 
 replace (&$text)
 Replace link placeholders with actual links, in the buffer.
 
 replaceText ( $text)
 Replace and link placeholders with plain text of links (not HTML-formatted).
 

Public Attributes

array[][] $internals = []
 
array[] $interwikis = []
 
Parser $parent
 
int $size = 0
 

Protected Member Functions

 doVariants (&$classes)
 Modify $this->internals and $classes according to language variant linking rules.
 
 replaceInternal (&$text)
 Replace internal links.
 
 replaceInterwiki (&$text)
 Replace interwiki links.
 

Private Attributes

HookRunner $hookRunner
 
ILanguageConverter $languageConverter
 Current language converter.
 

Detailed Description

Access: internal
for using in Parser only.

Definition at line 33 of file LinkHolderArray.php.

Constructor & Destructor Documentation

◆ __construct()

LinkHolderArray::__construct ( Parser  $parent,
ILanguageConverter  $languageConverter = null,
HookContainer  $hookContainer = null 
)
Parameters
Parser$parent
ILanguageConverter | null$languageConverter
HookContainer | null$hookContainer

Definition at line 62 of file LinkHolderArray.php.

References $languageConverter, $parent, Parser\getTargetLanguage(), and wfDeprecated().

◆ __destruct()

LinkHolderArray::__destruct ( )

Reduce memory usage to reduce the impact of circular references.

Definition at line 84 of file LinkHolderArray.php.

Member Function Documentation

◆ clear()

LinkHolderArray::clear ( )

Clear all stored link holders.

Make sure you don't have any text left using these link holders, before you call this

Definition at line 120 of file LinkHolderArray.php.

◆ doVariants()

LinkHolderArray::doVariants ( $classes)
protected

Modify $this->internals and $classes according to language variant linking rules.

Parameters
array&$classes

Definition at line 345 of file LinkHolderArray.php.

References $dbr, $s, $title, DB_REPLICA, Title\getNamespace(), NS_CATEGORY, NS_SPECIAL, and wfGetDB().

Referenced by replaceInternal().

◆ isBig()

LinkHolderArray::isBig ( )

Returns true if the memory requirements of this object are getting large.

Returns
bool

Definition at line 111 of file LinkHolderArray.php.

References $wgLinkHolderBatchSize.

◆ makeHolder()

LinkHolderArray::makeHolder ( Title  $nt,
  $text = '',
  $trail = '',
  $prefix = '' 
)

Make a link placeholder.

The text returned can be later resolved to a real link with replaceLinkHolders(). This is done for two reasons: firstly to avoid further parsing of interwiki links, and secondly to allow all existence checks and article length checks (for stub links) to be bundled into a single query.

Parameters
Title$nt
string$text
string$trail[optional]
string$prefix[optional]
Returns
string

Definition at line 138 of file LinkHolderArray.php.

References Title\getNamespace(), Title\getPrefixedDBkey(), Title\isExternal(), and Linker\splitTrail().

◆ merge()

LinkHolderArray::merge (   $other)

Merge another LinkHolderArray into this one.

Parameters
LinkHolderArray$other

Definition at line 95 of file LinkHolderArray.php.

◆ replace()

LinkHolderArray::replace ( $text)

Replace link placeholders with actual links, in the buffer.

Parameters
string&$text

Definition at line 166 of file LinkHolderArray.php.

References replaceInternal(), and replaceInterwiki().

◆ replaceInternal()

LinkHolderArray::replaceInternal ( $text)
protected

Replace internal links.

Parameters
string&$text

Definition at line 175 of file LinkHolderArray.php.

References $dbr, $matches, $res, $s, $title, DB_REPLICA, doVariants(), Linker\makeSelfLinkObj(), NS_SPECIAL, and wfGetDB().

Referenced by replace().

◆ replaceInterwiki()

LinkHolderArray::replaceInterwiki ( $text)
protected

Replace interwiki links.

Parameters
string&$text

Definition at line 315 of file LinkHolderArray.php.

References $matches.

Referenced by replace().

◆ replaceText()

LinkHolderArray::replaceText (   $text)

Replace and link placeholders with plain text of links (not HTML-formatted).

Parameters
string$text
Returns
string

Definition at line 503 of file LinkHolderArray.php.

References $matches.

Member Data Documentation

◆ $hookRunner

HookRunner LinkHolderArray::$hookRunner
private

Definition at line 55 of file LinkHolderArray.php.

◆ $internals

array [][] LinkHolderArray::$internals = []

Definition at line 35 of file LinkHolderArray.php.

◆ $interwikis

array [] LinkHolderArray::$interwikis = []

Definition at line 37 of file LinkHolderArray.php.

◆ $languageConverter

ILanguageConverter LinkHolderArray::$languageConverter
private

Current language converter.

Definition at line 50 of file LinkHolderArray.php.

Referenced by __construct().

◆ $parent

Parser LinkHolderArray::$parent

Definition at line 44 of file LinkHolderArray.php.

Referenced by __construct().

◆ $size

int LinkHolderArray::$size = 0

Definition at line 39 of file LinkHolderArray.php.


The documentation for this class was generated from the following file: