MediaWiki REL1_39
|
Public Member Functions | |
__construct (Parser $parent, ILanguageConverter $languageConverter, HookContainer $hookContainer) | |
__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. | |
Definition at line 34 of file LinkHolderArray.php.
LinkHolderArray::__construct | ( | Parser | $parent, |
ILanguageConverter | $languageConverter, | ||
HookContainer | $hookContainer ) |
Parser | $parent | |
ILanguageConverter | $languageConverter | |
HookContainer | $hookContainer |
Definition at line 63 of file LinkHolderArray.php.
References $parent.
LinkHolderArray::__destruct | ( | ) |
Reduce memory usage to reduce the impact of circular references.
Definition at line 74 of file LinkHolderArray.php.
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 111 of file LinkHolderArray.php.
|
protected |
Modify $this->internals and $classes according to language variant linking rules.
array | &$classes |
Definition at line 331 of file LinkHolderArray.php.
References $dbr, $s, $title, DB_REPLICA, Title\getNamespace(), NS_CATEGORY, NS_SPECIAL, and wfGetDB().
Referenced by replaceInternal().
LinkHolderArray::isBig | ( | ) |
Returns true if the memory requirements of this object are getting large.
Definition at line 101 of file LinkHolderArray.php.
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.
Title | $nt | |
string | $text | |
string | $trail | [optional] |
string | $prefix | [optional] |
Definition at line 129 of file LinkHolderArray.php.
References Title\getNamespace(), Title\getPrefixedDBkey(), Title\isExternal(), and Linker\splitTrail().
LinkHolderArray::merge | ( | $other | ) |
Merge another LinkHolderArray into this one.
LinkHolderArray | $other |
Definition at line 85 of file LinkHolderArray.php.
LinkHolderArray::replace | ( | & | $text | ) |
Replace link placeholders with actual links, in the buffer.
string | &$text |
Definition at line 157 of file LinkHolderArray.php.
References replaceInternal(), and replaceInterwiki().
|
protected |
Replace internal links.
string | &$text |
Definition at line 166 of file LinkHolderArray.php.
References $dbr, $matches, $res, $s, $title, DB_REPLICA, doVariants(), Linker\makeSelfLinkObj(), NS_SPECIAL, and wfGetDB().
Referenced by replace().
|
protected |
Replace interwiki links.
string | &$text |
Definition at line 301 of file LinkHolderArray.php.
References $matches.
Referenced by replace().
LinkHolderArray::replaceText | ( | $text | ) |
Replace and link placeholders with plain text of links (not HTML-formatted).
string | $text |
Definition at line 486 of file LinkHolderArray.php.
References $matches.
array [][] LinkHolderArray::$internals = [] |
Definition at line 36 of file LinkHolderArray.php.
array [] LinkHolderArray::$interwikis = [] |
Definition at line 38 of file LinkHolderArray.php.
Parser LinkHolderArray::$parent |
Definition at line 45 of file LinkHolderArray.php.
Referenced by __construct().
int LinkHolderArray::$size = 0 |
Definition at line 40 of file LinkHolderArray.php.