MediaWiki REL1_39
|
Class representing a list of titles The execute() method checks them all for existence and adds them to a LinkCache object. More...
Public Member Functions | |
__construct (iterable $arr=[], ?LinkCache $linkCache=null, ?TitleFormatter $titleFormatter=null, ?Language $contentLanguage=null, ?GenderCache $genderCache=null, ?ILoadBalancer $loadBalancer=null, ?LinksMigration $linksMigration=null, ?LoggerInterface $logger=null) | |
add ( $ns, $dbkey) | |
addObj ( $link) | |
addResultToCache ( $cache, $res) | |
Add a result wrapper containing IDs and titles to a LinkCache object. | |
constructSet ( $prefix, $db) | |
Construct a WHERE clause which will match all the given titles. | |
doGenderQuery () | |
Do (and cache) {{GENDER:...}} information for userpages in this LinkBatch. | |
doQuery () | |
Perform the existence test query, return a result wrapper with page_id fields. | |
execute () | |
Do the query and add the results to the LinkCache object. | |
getPageIdentities () | |
Do the query, add the results to the LinkCache object, and return ProperPageIdentity instances corresponding to the pages in the batch. | |
getSize () | |
Returns the size of the batch. | |
isEmpty () | |
Returns true if no pages have been added, false otherwise. | |
setArray ( $array) | |
Set the link list to a given 2-d array First key is the namespace, second is the DB key, value arbitrary. | |
setCaller ( $caller) | |
Use ->setCaller( METHOD ) to indicate which code is using this class. | |
Public Attributes | |
array[] | $data = [] |
2-d array, first index namespace, second index dbkey, value arbitrary | |
Protected Member Functions | |
executeInto ( $cache) | |
Do the query and add the results to a given LinkCache object Return an array mapping PDBK to ID. | |
Protected Attributes | |
string null | $caller |
For debugging which method is using this class. | |
Class representing a list of titles The execute() method checks them all for existence and adds them to a LinkCache object.
Definition at line 44 of file LinkBatch.php.
LinkBatch::__construct | ( | iterable | $arr = [], |
?LinkCache | $linkCache = null, | ||
?TitleFormatter | $titleFormatter = null, | ||
?Language | $contentLanguage = null, | ||
?GenderCache | $genderCache = null, | ||
?ILoadBalancer | $loadBalancer = null, | ||
?LinksMigration | $linksMigration = null, | ||
?LoggerInterface | $logger = null ) |
iterable<LinkTarget>|iterable<PageReference> | $arr Initial items to be added to the batch | |
LinkCache | null | $linkCache | |
TitleFormatter | null | $titleFormatter | |
Language | null | $contentLanguage | |
GenderCache | null | $genderCache | |
ILoadBalancer | null | $loadBalancer | |
LinksMigration | null | $linksMigration | |
LoggerInterface | null | $logger |
Definition at line 102 of file LinkBatch.php.
References addObj().
LinkBatch::add | ( | $ns, | |
$dbkey ) |
int | $ns | |
string | $dbkey |
Definition at line 173 of file LinkBatch.php.
Referenced by addObj().
LinkBatch::addObj | ( | $link | ) |
LinkTarget | PageReference | $link |
Definition at line 147 of file LinkBatch.php.
References add(), and MediaWiki\Linker\LinkTarget\isExternal().
Referenced by __construct().
LinkBatch::addResultToCache | ( | $cache, | |
$res ) |
Add a result wrapper containing IDs and titles to a LinkCache object.
As normal, titles will go into the static Title cache field. This function also stores extra fields of the title used for link parsing to avoid extra DB queries.
LinkCache | $cache | |
IResultWrapper | $res |
Definition at line 260 of file LinkBatch.php.
LinkBatch::constructSet | ( | $prefix, | |
$db ) |
Construct a WHERE clause which will match all the given titles.
string | $prefix | The appropriate table's field name prefix ('page', 'pl', etc) |
IDatabase | $db | DB object to use |
Definition at line 376 of file LinkBatch.php.
LinkBatch::doGenderQuery | ( | ) |
Do (and cache) {{GENDER:...}} information for userpages in this LinkBatch.
Definition at line 355 of file LinkBatch.php.
LinkBatch::doQuery | ( | ) |
Perform the existence test query, return a result wrapper with page_id fields.
Definition at line 329 of file LinkBatch.php.
References $dbr, and DB_REPLICA.
LinkBatch::execute | ( | ) |
Do the query and add the results to the LinkCache object.
Definition at line 218 of file LinkBatch.php.
References executeInto().
Referenced by getPageIdentities().
|
protected |
LinkBatch::getPageIdentities | ( | ) |
Do the query, add the results to the LinkCache object, and return ProperPageIdentity instances corresponding to the pages in the batch.
Definition at line 229 of file LinkBatch.php.
References execute().
LinkBatch::getSize | ( | ) |
Returns the size of the batch.
Definition at line 209 of file LinkBatch.php.
Referenced by isEmpty().
LinkBatch::isEmpty | ( | ) |
Returns true if no pages have been added, false otherwise.
Definition at line 200 of file LinkBatch.php.
References getSize().
LinkBatch::setArray | ( | $array | ) |
Set the link list to a given 2-d array First key is the namespace, second is the DB key, value arbitrary.
array | $array |
Definition at line 191 of file LinkBatch.php.
LinkBatch::setCaller | ( | $caller | ) |
Use ->setCaller( METHOD ) to indicate which code is using this class.
Only used in debugging output.
string | $caller |
Definition at line 138 of file LinkBatch.php.
References $caller.
|
protected |
For debugging which method is using this class.
Definition at line 58 of file LinkBatch.php.
Referenced by setCaller().
array [] LinkBatch::$data = [] |
2-d array, first index namespace, second index dbkey, value arbitrary
Definition at line 48 of file LinkBatch.php.