MediaWiki  1.32.0
ApiQueryAllRevisions.php
Go to the documentation of this file.
1 <?php
25 
33 
34  public function __construct( ApiQuery $query, $moduleName ) {
35  parent::__construct( $query, $moduleName, 'arv' );
36  }
37 
42  protected function run( ApiPageSet $resultPageSet = null ) {
43  $db = $this->getDB();
44  $params = $this->extractRequestParams( false );
45  $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
46 
47  $result = $this->getResult();
48 
49  $this->requireMaxOneParameter( $params, 'user', 'excludeuser' );
50 
51  // Namespace check is likely to be desired, but can't be done
52  // efficiently in SQL.
53  $miser_ns = null;
54  $needPageTable = false;
55  if ( $params['namespace'] !== null ) {
56  $params['namespace'] = array_unique( $params['namespace'] );
57  sort( $params['namespace'] );
58  if ( $params['namespace'] != MWNamespace::getValidNamespaces() ) {
59  $needPageTable = true;
60  if ( $this->getConfig()->get( 'MiserMode' ) ) {
61  $miser_ns = $params['namespace'];
62  } else {
63  $this->addWhere( [ 'page_namespace' => $params['namespace'] ] );
64  }
65  }
66  }
67 
68  if ( $resultPageSet === null ) {
69  $this->parseParameters( $params );
70  $revQuery = $revisionStore->getQueryInfo(
71  $this->fetchContent ? [ 'page', 'text' ] : [ 'page' ]
72  );
73  $this->addTables( $revQuery['tables'] );
74  $this->addFields( $revQuery['fields'] );
75  $this->addJoinConds( $revQuery['joins'] );
76 
77  // Review this depeneding on the outcome of T113901
78  $this->addOption( 'STRAIGHT_JOIN' );
79  } else {
80  $this->limit = $this->getParameter( 'limit' ) ?: 10;
81  $this->addTables( 'revision' );
82  $this->addFields( [ 'rev_timestamp', 'rev_id' ] );
83  if ( $params['generatetitles'] ) {
84  $this->addFields( [ 'rev_page' ] );
85  }
86 
87  if ( $needPageTable ) {
88  $this->addTables( 'page' );
89  $this->addJoinConds(
90  [ 'page' => [ 'INNER JOIN', [ 'rev_page = page_id' ] ] ]
91  );
92  $this->addFieldsIf( [ 'page_namespace' ], (bool)$miser_ns );
93 
94  // Review this depeneding on the outcome of T113901
95  $this->addOption( 'STRAIGHT_JOIN' );
96  }
97  }
98 
99  $dir = $params['dir'];
100  $this->addTimestampWhereRange( 'rev_timestamp', $dir, $params['start'], $params['end'] );
101 
102  if ( $this->fld_tags ) {
103  $this->addTables( 'tag_summary' );
104  $this->addJoinConds(
105  [ 'tag_summary' => [ 'LEFT JOIN', [ 'rev_id=ts_rev_id' ] ] ]
106  );
107  $this->addFields( 'ts_tags' );
108  }
109 
110  if ( $params['user'] !== null ) {
111  $actorQuery = ActorMigration::newMigration()
112  ->getWhere( $db, 'rev_user', User::newFromName( $params['user'], false ) );
113  $this->addTables( $actorQuery['tables'] );
114  $this->addJoinConds( $actorQuery['joins'] );
115  $this->addWhere( $actorQuery['conds'] );
116  } elseif ( $params['excludeuser'] !== null ) {
117  $actorQuery = ActorMigration::newMigration()
118  ->getWhere( $db, 'rev_user', User::newFromName( $params['excludeuser'], false ) );
119  $this->addTables( $actorQuery['tables'] );
120  $this->addJoinConds( $actorQuery['joins'] );
121  $this->addWhere( 'NOT(' . $actorQuery['conds'] . ')' );
122  }
123 
124  if ( $params['user'] !== null || $params['excludeuser'] !== null ) {
125  // Paranoia: avoid brute force searches (T19342)
126  if ( !$this->getUser()->isAllowed( 'deletedhistory' ) ) {
127  $bitmask = RevisionRecord::DELETED_USER;
128  } elseif ( !$this->getUser()->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
129  $bitmask = RevisionRecord::DELETED_USER | RevisionRecord::DELETED_RESTRICTED;
130  } else {
131  $bitmask = 0;
132  }
133  if ( $bitmask ) {
134  $this->addWhere( $db->bitAnd( 'rev_deleted', $bitmask ) . " != $bitmask" );
135  }
136  }
137 
138  if ( $params['continue'] !== null ) {
139  $op = ( $dir == 'newer' ? '>' : '<' );
140  $cont = explode( '|', $params['continue'] );
141  $this->dieContinueUsageIf( count( $cont ) != 2 );
142  $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
143  $rev_id = (int)$cont[1];
144  $this->dieContinueUsageIf( strval( $rev_id ) !== $cont[1] );
145  $this->addWhere( "rev_timestamp $op $ts OR " .
146  "(rev_timestamp = $ts AND " .
147  "rev_id $op= $rev_id)" );
148  }
149 
150  $this->addOption( 'LIMIT', $this->limit + 1 );
151 
152  $sort = ( $dir == 'newer' ? '' : ' DESC' );
153  $orderby = [];
154  // Targeting index rev_timestamp, user_timestamp, or usertext_timestamp
155  // But 'user' is always constant for the latter two, so it doesn't matter here.
156  $orderby[] = "rev_timestamp $sort";
157  $orderby[] = "rev_id $sort";
158  $this->addOption( 'ORDER BY', $orderby );
159 
160  $hookData = [];
161  $res = $this->select( __METHOD__, [], $hookData );
162  $pageMap = []; // Maps rev_page to array index
163  $count = 0;
164  $nextIndex = 0;
165  $generated = [];
166  foreach ( $res as $row ) {
167  if ( $count === 0 && $resultPageSet !== null ) {
168  // Set the non-continue since the list of all revisions is
169  // prone to having entries added at the start frequently.
170  $this->getContinuationManager()->addGeneratorNonContinueParam(
171  $this, 'continue', "$row->rev_timestamp|$row->rev_id"
172  );
173  }
174  if ( ++$count > $this->limit ) {
175  // We've had enough
176  $this->setContinueEnumParameter( 'continue', "$row->rev_timestamp|$row->rev_id" );
177  break;
178  }
179 
180  // Miser mode namespace check
181  if ( $miser_ns !== null && !in_array( $row->page_namespace, $miser_ns ) ) {
182  continue;
183  }
184 
185  if ( $resultPageSet !== null ) {
186  if ( $params['generatetitles'] ) {
187  $generated[$row->rev_page] = $row->rev_page;
188  } else {
189  $generated[] = $row->rev_id;
190  }
191  } else {
192  $revision = $revisionStore->newRevisionFromRow( $row );
193  $rev = $this->extractRevisionInfo( $revision, $row );
194 
195  if ( !isset( $pageMap[$row->rev_page] ) ) {
196  $index = $nextIndex++;
197  $pageMap[$row->rev_page] = $index;
198  $title = Title::newFromLinkTarget( $revision->getPageAsLinkTarget() );
199  $a = [
200  'pageid' => $title->getArticleID(),
201  'revisions' => [ $rev ],
202  ];
203  ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
205  $fit = $this->processRow( $row, $a['revisions'][0], $hookData ) &&
206  $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
207  } else {
208  $index = $pageMap[$row->rev_page];
209  $fit = $this->processRow( $row, $rev, $hookData ) &&
210  $result->addValue( [ 'query', $this->getModuleName(), $index, 'revisions' ], null, $rev );
211  }
212  if ( !$fit ) {
213  $this->setContinueEnumParameter( 'continue', "$row->rev_timestamp|$row->rev_id" );
214  break;
215  }
216  }
217  }
218 
219  if ( $resultPageSet !== null ) {
220  if ( $params['generatetitles'] ) {
221  $resultPageSet->populateFromPageIDs( $generated );
222  } else {
223  $resultPageSet->populateFromRevisionIDs( $generated );
224  }
225  } else {
226  $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
227  }
228  }
229 
230  public function getAllowedParams() {
231  $ret = parent::getAllowedParams() + [
232  'user' => [
233  ApiBase::PARAM_TYPE => 'user',
234  ],
235  'namespace' => [
236  ApiBase::PARAM_ISMULTI => true,
237  ApiBase::PARAM_TYPE => 'namespace',
238  ApiBase::PARAM_DFLT => null,
239  ],
240  'start' => [
241  ApiBase::PARAM_TYPE => 'timestamp',
242  ],
243  'end' => [
244  ApiBase::PARAM_TYPE => 'timestamp',
245  ],
246  'dir' => [
248  'newer',
249  'older'
250  ],
251  ApiBase::PARAM_DFLT => 'older',
252  ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
253  ],
254  'excludeuser' => [
255  ApiBase::PARAM_TYPE => 'user',
256  ],
257  'continue' => [
258  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
259  ],
260  'generatetitles' => [
261  ApiBase::PARAM_DFLT => false,
262  ],
263  ];
264 
265  if ( $this->getConfig()->get( 'MiserMode' ) ) {
266  $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
267  'api-help-param-limited-in-miser-mode',
268  ];
269  }
270 
271  return $ret;
272  }
273 
274  protected function getExamplesMessages() {
275  return [
276  'action=query&list=allrevisions&arvuser=Example&arvlimit=50'
277  => 'apihelp-query+allrevisions-example-user',
278  'action=query&list=allrevisions&arvdir=newer&arvlimit=50'
279  => 'apihelp-query+allrevisions-example-ns-main',
280  ];
281  }
282 
283  public function getHelpUrls() {
284  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allrevisions';
285  }
286 }
ApiQueryRevisionsBase\parseParameters
parseParameters( $params)
Parse the parameters into the various instance fields.
Definition: ApiQueryRevisionsBase.php:76
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
ApiQueryBase\processRow
processRow( $row, array &$data, array &$hookData)
Call the ApiQueryBaseProcessRow hook.
Definition: ApiQueryBase.php:400
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:192
ApiQueryAllRevisions\run
run(ApiPageSet $resultPageSet=null)
Definition: ApiQueryAllRevisions.php:42
ApiQuery
This is the main query class.
Definition: ApiQuery.php:36
Revision\RevisionRecord
Page revision base class.
Definition: RevisionRecord.php:45
MWNamespace\getValidNamespaces
static getValidNamespaces()
Returns an array of the namespaces (by integer id) that exist on the wiki.
Definition: MWNamespace.php:286
captcha-old.count
count
Definition: captcha-old.py:249
ApiQueryAllRevisions\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiQueryAllRevisions.php:274
ApiQueryBase\addTimestampWhereRange
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
Definition: ApiQueryBase.php:313
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:124
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED since 1.16! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:2034
ApiBase\PARAM_TYPE
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition: ApiBase.php:87
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:659
$params
$params
Definition: styleTest.css.php:44
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:592
ApiQueryAllRevisions\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiQueryAllRevisions.php:283
$res
$res
Definition: database.txt:21
ApiQueryBase\addOption
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
Definition: ApiQueryBase.php:325
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
$revQuery
$revQuery
Definition: testCompression.php:51
ApiBase\PARAM_HELP_MSG_APPEND
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition: ApiBase.php:131
ActorMigration\newMigration
static newMigration()
Static constructor.
Definition: ActorMigration.php:111
ApiQueryBase\addFieldsIf
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
Definition: ApiQueryBase.php:206
ApiPageSet
This class contains a list of pages that the client has requested.
Definition: ApiPageSet.php:40
php
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
Definition: injection.txt:35
ApiQueryRevisionsBase
A base class for functions common to producing a list of revisions.
Definition: ApiQueryRevisionsBase.php:33
ApiQueryGeneratorBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
Definition: ApiQueryGeneratorBase.php:84
$query
null for the 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
Definition: hooks.txt:1627
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
ApiQueryAllRevisions\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiQueryAllRevisions.php:230
Title\newFromLinkTarget
static newFromLinkTarget(LinkTarget $linkTarget)
Create a new Title from a LinkTarget.
Definition: Title.php:251
ApiQueryBase\getDB
getDB()
Get the Query database connection (read-only)
Definition: ApiQueryBase.php:105
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:158
ApiQueryBase\select
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:350
use
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
Definition: MIT-LICENSE.txt:10
ApiBase\extractRequestParams
extractRequestParams( $options=[])
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:770
$sort
$sort
Definition: profileinfo.php:328
ApiQueryAllRevisions
Query module to enumerate all revisions.
Definition: ApiQueryAllRevisions.php:32
ApiBase\getContinuationManager
getContinuationManager()
Get the continuation manager.
Definition: ApiBase.php:699
ApiResult\setIndexedTagName
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
Definition: ApiResult.php:616
ApiBase\dieContinueUsageIf
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition: ApiBase.php:2155
ApiQueryRevisionsBase\extractRevisionInfo
extractRevisionInfo(RevisionRecord $revision, $row)
Extract information from the RevisionRecord.
Definition: ApiQueryRevisionsBase.php:231
ApiQueryBase\addJoinConds
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
Definition: ApiQueryBase.php:181
$ret
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 & $ret
Definition: hooks.txt:2036
ApiBase\requireMaxOneParameter
requireMaxOneParameter( $params, $required)
Die if more than one of a certain set of parameters is set and not false.
Definition: ApiBase.php:939
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:48
$rev
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition: hooks.txt:1808
ApiBase\getParameter
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
Definition: ApiBase.php:884
as
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
Definition: distributors.txt:9
ApiBase\getModuleName
getModuleName()
Get the name of the module being executed by this instance.
Definition: ApiBase.php:539
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:51
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:227
MediaWikiServices
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
Definition: injection.txt:23
ApiQueryAllRevisions\__construct
__construct(ApiQuery $query, $moduleName)
Definition: ApiQueryAllRevisions.php:34
ApiQueryBase\addTitleInfo
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
Definition: ApiQueryBase.php:487