Go to the documentation of this file.
49 foreach ( $arr
as $item ) {
71 public function addObj( $linkTarget ) {
72 if ( is_object( $linkTarget ) ) {
73 $this->
add( $linkTarget->getNamespace(), $linkTarget->getDBkey() );
75 wfDebug(
"Warning: LinkBatch::addObj got invalid LinkTarget object\n" );
83 public function add( $ns, $dbkey ) {
84 if ( $ns < 0 || $dbkey ===
'' ) {
87 if ( !array_key_exists( $ns, $this->
data ) ) {
88 $this->
data[$ns] = [];
91 $this->
data[$ns][strtr( $dbkey,
' ',
'_' )] = 1;
101 $this->
data = $array;
128 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
163 $titleFormatter = MediaWikiServices::getInstance()->getTitleFormatter();
168 foreach (
$res as $row ) {
171 $pdbk = $titleFormatter->getPrefixedDBkey(
$title );
172 $ids[$pdbk] = $row->page_id;
173 unset( $remaining[$row->page_namespace][$row->page_title] );
177 foreach ( $remaining
as $ns => $dbkeys ) {
178 foreach ( $dbkeys
as $dbkey => $unused ) {
181 $pdbk = $titleFormatter->getPrefixedDBkey(
$title );
201 $fields = array_merge(
203 [
'page_namespace',
'page_title' ]
210 if ( strval( $this->caller ) !==
'' ) {
211 $caller .=
" (for {$this->caller})";
227 $services = MediaWikiServices::getInstance();
229 if ( !
$services->getContentLanguage()->needsGenderDistinction() ) {
233 $genderCache =
$services->getGenderCache();
234 $genderCache->doLinkBatch( $this->
data, $this->caller );
247 return $db->makeWhereFrom2d( $this->
data,
"{$prefix}_namespace",
"{$prefix}_title" );
doGenderQuery()
Do (and cache) {{GENDER:...}} information for userpages in this LinkBatch.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
setCaller( $caller)
Use ->setCaller( METHOD ) to indicate which code is using this class.
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of data
setArray( $array)
Set the link list to a given 2-d array First key is the namespace, second is the DB key,...
static getSelectFields()
Fields that LinkCache needs to select.
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
execute()
Do the query and add the results to the LinkCache object.
getSize()
Returns the size of the batch.
namespace and then decline to actually register it file or subcat img or subcat $title
constructSet( $prefix, $db)
Construct a WHERE clause which will match all the given titles.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
$caller
For debugging which method is using this class.
$data
2-d array, first index namespace, second index dbkey, value arbitrary
doQuery()
Perform the existence test query, return a ResultWrapper with page_id fields.
executeInto(&$cache)
Do the query and add the results to a given LinkCache object Return an array mapping PDBK to ID.
isEmpty()
Returns true if no pages have been added, false otherwise.
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
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
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 MediaWikiServices
addResultToCache( $cache, $res)
Add a ResultWrapper containing IDs and titles to a LinkCache object.
Represents a page (or page fragment) title within MediaWiki.