MediaWiki REL1_27
ApiQueryAllDeletedRevisions.php
Go to the documentation of this file.
1<?php
34
35 public function __construct( ApiQuery $query, $moduleName ) {
36 parent::__construct( $query, $moduleName, 'adr' );
37 }
38
43 protected function run( ApiPageSet $resultPageSet = null ) {
44 $user = $this->getUser();
45 // Before doing anything at all, let's check permissions
46 if ( !$user->isAllowed( 'deletedhistory' ) ) {
47 $this->dieUsage(
48 'You don\'t have permission to view deleted revision information',
49 'permissiondenied'
50 );
51 }
52
53 $db = $this->getDB();
54 $params = $this->extractRequestParams( false );
55
56 $result = $this->getResult();
57
58 // This module operates in two modes:
59 // 'user': List deleted revs by a certain user
60 // 'all': List all deleted revs in NS
61 $mode = 'all';
62 if ( !is_null( $params['user'] ) ) {
63 $mode = 'user';
64 }
65
66 if ( $mode == 'user' ) {
67 foreach ( [ 'from', 'to', 'prefix', 'excludeuser' ] as $param ) {
68 if ( !is_null( $params[$param] ) ) {
69 $p = $this->getModulePrefix();
70 $this->dieUsage( "The '{$p}{$param}' parameter cannot be used with '{$p}user'",
71 'badparams' );
72 }
73 }
74 } else {
75 foreach ( [ 'start', 'end' ] as $param ) {
76 if ( !is_null( $params[$param] ) ) {
77 $p = $this->getModulePrefix();
78 $this->dieUsage( "The '{$p}{$param}' parameter may only be used with '{$p}user'",
79 'badparams' );
80 }
81 }
82 }
83
84 // If we're generating titles only, we can use DISTINCT for a better
85 // query. But we can't do that in 'user' mode (wrong index), and we can
86 // only do it when sorting ASC (because MySQL apparently can't use an
87 // index backwards for grouping even though it can for ORDER BY, WTF?)
88 $dir = $params['dir'];
89 $optimizeGenerateTitles = false;
90 if ( $mode === 'all' && $params['generatetitles'] && $resultPageSet !== null ) {
91 if ( $dir === 'newer' ) {
92 $optimizeGenerateTitles = true;
93 } else {
94 $p = $this->getModulePrefix();
95 $this->setWarning( "For better performance when generating titles, set {$p}dir=newer" );
96 }
97 }
98
99 $this->addTables( 'archive' );
100 if ( $resultPageSet === null ) {
101 $this->parseParameters( $params );
103 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
104 } else {
105 $this->limit = $this->getParameter( 'limit' ) ?: 10;
106 $this->addFields( [ 'ar_title', 'ar_namespace' ] );
107 if ( $optimizeGenerateTitles ) {
108 $this->addOption( 'DISTINCT' );
109 } else {
110 $this->addFields( [ 'ar_timestamp', 'ar_rev_id', 'ar_id' ] );
111 }
112 }
113
114 if ( $this->fld_tags ) {
115 $this->addTables( 'tag_summary' );
116 $this->addJoinConds(
117 [ 'tag_summary' => [ 'LEFT JOIN', [ 'ar_rev_id=ts_rev_id' ] ] ]
118 );
119 $this->addFields( 'ts_tags' );
120 }
121
122 if ( !is_null( $params['tag'] ) ) {
123 $this->addTables( 'change_tag' );
124 $this->addJoinConds(
125 [ 'change_tag' => [ 'INNER JOIN', [ 'ar_rev_id=ct_rev_id' ] ] ]
126 );
127 $this->addWhereFld( 'ct_tag', $params['tag'] );
128 }
129
130 if ( $this->fetchContent ) {
131 // Modern MediaWiki has the content for deleted revs in the 'text'
132 // table using fields old_text and old_flags. But revisions deleted
133 // pre-1.5 store the content in the 'archive' table directly using
134 // fields ar_text and ar_flags, and no corresponding 'text' row. So
135 // we have to LEFT JOIN and fetch all four fields.
136 $this->addTables( 'text' );
137 $this->addJoinConds(
138 [ 'text' => [ 'LEFT JOIN', [ 'ar_text_id=old_id' ] ] ]
139 );
140 $this->addFields( [ 'ar_text', 'ar_flags', 'old_text', 'old_flags' ] );
141
142 // This also means stricter restrictions
143 if ( !$user->isAllowedAny( 'undelete', 'deletedtext' ) ) {
144 $this->dieUsage(
145 'You don\'t have permission to view deleted revision content',
146 'permissiondenied'
147 );
148 }
149 }
150
151 $miser_ns = null;
152
153 if ( $mode == 'all' ) {
154 if ( $params['namespace'] !== null ) {
155 $namespaces = $params['namespace'];
156 $this->addWhereFld( 'ar_namespace', $namespaces );
157 } else {
159 }
160
161 // For from/to/prefix, we have to consider the potential
162 // transformations of the title in all specified namespaces.
163 // Generally there will be only one transformation, but wikis with
164 // some namespaces case-sensitive could have two.
165 if ( $params['from'] !== null || $params['to'] !== null ) {
166 $isDirNewer = ( $dir === 'newer' );
167 $after = ( $isDirNewer ? '>=' : '<=' );
168 $before = ( $isDirNewer ? '<=' : '>=' );
169 $where = [];
170 foreach ( $namespaces as $ns ) {
171 $w = [];
172 if ( $params['from'] !== null ) {
173 $w[] = 'ar_title' . $after .
174 $db->addQuotes( $this->titlePartToKey( $params['from'], $ns ) );
175 }
176 if ( $params['to'] !== null ) {
177 $w[] = 'ar_title' . $before .
178 $db->addQuotes( $this->titlePartToKey( $params['to'], $ns ) );
179 }
180 $w = $db->makeList( $w, LIST_AND );
181 $where[$w][] = $ns;
182 }
183 if ( count( $where ) == 1 ) {
184 $where = key( $where );
185 $this->addWhere( $where );
186 } else {
187 $where2 = [];
188 foreach ( $where as $w => $ns ) {
189 $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
190 }
191 $this->addWhere( $db->makeList( $where2, LIST_OR ) );
192 }
193 }
194
195 if ( isset( $params['prefix'] ) ) {
196 $where = [];
197 foreach ( $namespaces as $ns ) {
198 $w = 'ar_title' . $db->buildLike(
199 $this->titlePartToKey( $params['prefix'], $ns ),
200 $db->anyString() );
201 $where[$w][] = $ns;
202 }
203 if ( count( $where ) == 1 ) {
204 $where = key( $where );
205 $this->addWhere( $where );
206 } else {
207 $where2 = [];
208 foreach ( $where as $w => $ns ) {
209 $where2[] = $db->makeList( [ $w, 'ar_namespace' => $ns ], LIST_AND );
210 }
211 $this->addWhere( $db->makeList( $where2, LIST_OR ) );
212 }
213 }
214 } else {
215 if ( $this->getConfig()->get( 'MiserMode' ) ) {
216 $miser_ns = $params['namespace'];
217 } else {
218 $this->addWhereFld( 'ar_namespace', $params['namespace'] );
219 }
220 $this->addTimestampWhereRange( 'ar_timestamp', $dir, $params['start'], $params['end'] );
221 }
222
223 if ( !is_null( $params['user'] ) ) {
224 $this->addWhereFld( 'ar_user_text', $params['user'] );
225 } elseif ( !is_null( $params['excludeuser'] ) ) {
226 $this->addWhere( 'ar_user_text != ' .
227 $db->addQuotes( $params['excludeuser'] ) );
228 }
229
230 if ( !is_null( $params['user'] ) || !is_null( $params['excludeuser'] ) ) {
231 // Paranoia: avoid brute force searches (bug 17342)
232 // (shouldn't be able to get here without 'deletedhistory', but
233 // check it again just in case)
234 if ( !$user->isAllowed( 'deletedhistory' ) ) {
235 $bitmask = Revision::DELETED_USER;
236 } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
238 } else {
239 $bitmask = 0;
240 }
241 if ( $bitmask ) {
242 $this->addWhere( $db->bitAnd( 'ar_deleted', $bitmask ) . " != $bitmask" );
243 }
244 }
245
246 if ( !is_null( $params['continue'] ) ) {
247 $cont = explode( '|', $params['continue'] );
248 $op = ( $dir == 'newer' ? '>' : '<' );
249 if ( $optimizeGenerateTitles ) {
250 $this->dieContinueUsageIf( count( $cont ) != 2 );
251 $ns = intval( $cont[0] );
252 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
253 $title = $db->addQuotes( $cont[1] );
254 $this->addWhere( "ar_namespace $op $ns OR " .
255 "(ar_namespace = $ns AND ar_title $op= $title)" );
256 } elseif ( $mode == 'all' ) {
257 $this->dieContinueUsageIf( count( $cont ) != 4 );
258 $ns = intval( $cont[0] );
259 $this->dieContinueUsageIf( strval( $ns ) !== $cont[0] );
260 $title = $db->addQuotes( $cont[1] );
261 $ts = $db->addQuotes( $db->timestamp( $cont[2] ) );
262 $ar_id = (int)$cont[3];
263 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[3] );
264 $this->addWhere( "ar_namespace $op $ns OR " .
265 "(ar_namespace = $ns AND " .
266 "(ar_title $op $title OR " .
267 "(ar_title = $title AND " .
268 "(ar_timestamp $op $ts OR " .
269 "(ar_timestamp = $ts AND " .
270 "ar_id $op= $ar_id)))))" );
271 } else {
272 $this->dieContinueUsageIf( count( $cont ) != 2 );
273 $ts = $db->addQuotes( $db->timestamp( $cont[0] ) );
274 $ar_id = (int)$cont[1];
275 $this->dieContinueUsageIf( strval( $ar_id ) !== $cont[1] );
276 $this->addWhere( "ar_timestamp $op $ts OR " .
277 "(ar_timestamp = $ts AND " .
278 "ar_id $op= $ar_id)" );
279 }
280 }
281
282 $this->addOption( 'LIMIT', $this->limit + 1 );
283
284 $sort = ( $dir == 'newer' ? '' : ' DESC' );
285 $orderby = [];
286 if ( $optimizeGenerateTitles ) {
287 // Targeting index name_title_timestamp
288 if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
289 $orderby[] = "ar_namespace $sort";
290 }
291 $orderby[] = "ar_title $sort";
292 } elseif ( $mode == 'all' ) {
293 // Targeting index name_title_timestamp
294 if ( $params['namespace'] === null || count( array_unique( $params['namespace'] ) ) > 1 ) {
295 $orderby[] = "ar_namespace $sort";
296 }
297 $orderby[] = "ar_title $sort";
298 $orderby[] = "ar_timestamp $sort";
299 $orderby[] = "ar_id $sort";
300 } else {
301 // Targeting index usertext_timestamp
302 // 'user' is always constant.
303 $orderby[] = "ar_timestamp $sort";
304 $orderby[] = "ar_id $sort";
305 }
306 $this->addOption( 'ORDER BY', $orderby );
307
308 $res = $this->select( __METHOD__ );
309 $pageMap = []; // Maps ns&title to array index
310 $count = 0;
311 $nextIndex = 0;
312 $generated = [];
313 foreach ( $res as $row ) {
314 if ( ++$count > $this->limit ) {
315 // We've had enough
316 if ( $optimizeGenerateTitles ) {
317 $this->setContinueEnumParameter( 'continue', "$row->ar_namespace|$row->ar_title" );
318 } elseif ( $mode == 'all' ) {
319 $this->setContinueEnumParameter( 'continue',
320 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
321 );
322 } else {
323 $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
324 }
325 break;
326 }
327
328 // Miser mode namespace check
329 if ( $miser_ns !== null && !in_array( $row->ar_namespace, $miser_ns ) ) {
330 continue;
331 }
332
333 if ( $resultPageSet !== null ) {
334 if ( $params['generatetitles'] ) {
335 $key = "{$row->ar_namespace}:{$row->ar_title}";
336 if ( !isset( $generated[$key] ) ) {
337 $generated[$key] = Title::makeTitle( $row->ar_namespace, $row->ar_title );
338 }
339 } else {
340 $generated[] = $row->ar_rev_id;
341 }
342 } else {
343 $revision = Revision::newFromArchiveRow( $row );
344 $rev = $this->extractRevisionInfo( $revision, $row );
345
346 if ( !isset( $pageMap[$row->ar_namespace][$row->ar_title] ) ) {
347 $index = $nextIndex++;
348 $pageMap[$row->ar_namespace][$row->ar_title] = $index;
349 $title = $revision->getTitle();
350 $a = [
351 'pageid' => $title->getArticleID(),
352 'revisions' => [ $rev ],
353 ];
354 ApiResult::setIndexedTagName( $a['revisions'], 'rev' );
356 $fit = $result->addValue( [ 'query', $this->getModuleName() ], $index, $a );
357 } else {
358 $index = $pageMap[$row->ar_namespace][$row->ar_title];
359 $fit = $result->addValue(
360 [ 'query', $this->getModuleName(), $index, 'revisions' ],
361 null, $rev );
362 }
363 if ( !$fit ) {
364 if ( $mode == 'all' ) {
365 $this->setContinueEnumParameter( 'continue',
366 "$row->ar_namespace|$row->ar_title|$row->ar_timestamp|$row->ar_id"
367 );
368 } else {
369 $this->setContinueEnumParameter( 'continue', "$row->ar_timestamp|$row->ar_id" );
370 }
371 break;
372 }
373 }
374 }
375
376 if ( $resultPageSet !== null ) {
377 if ( $params['generatetitles'] ) {
378 $resultPageSet->populateFromTitles( $generated );
379 } else {
380 $resultPageSet->populateFromRevisionIDs( $generated );
381 }
382 } else {
383 $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'page' );
384 }
385 }
386
387 public function getAllowedParams() {
388 $ret = parent::getAllowedParams() + [
389 'user' => [
390 ApiBase::PARAM_TYPE => 'user'
391 ],
392 'namespace' => [
394 ApiBase::PARAM_TYPE => 'namespace',
395 ],
396 'start' => [
397 ApiBase::PARAM_TYPE => 'timestamp',
398 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
399 ],
400 'end' => [
401 ApiBase::PARAM_TYPE => 'timestamp',
402 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'useronly' ] ],
403 ],
404 'dir' => [
406 'newer',
407 'older'
408 ],
409 ApiBase::PARAM_DFLT => 'older',
410 ApiBase::PARAM_HELP_MSG => 'api-help-param-direction',
411 ],
412 'from' => [
413 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
414 ],
415 'to' => [
416 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
417 ],
418 'prefix' => [
419 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
420 ],
421 'excludeuser' => [
422 ApiBase::PARAM_TYPE => 'user',
423 ApiBase::PARAM_HELP_MSG_INFO => [ [ 'nonuseronly' ] ],
424 ],
425 'tag' => null,
426 'continue' => [
427 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
428 ],
429 'generatetitles' => [
431 ],
432 ];
433
434 if ( $this->getConfig()->get( 'MiserMode' ) ) {
436 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
437 ];
438 $ret['namespace'][ApiBase::PARAM_HELP_MSG_APPEND] = [
439 'apihelp-query+alldeletedrevisions-param-miser-user-namespace',
440 ];
441 }
442
443 return $ret;
444 }
445
446 protected function getExamplesMessages() {
447 return [
448 'action=query&list=alldeletedrevisions&adruser=Example&adrlimit=50'
449 => 'apihelp-query+alldeletedrevisions-example-user',
450 'action=query&list=alldeletedrevisions&adrdir=newer&adrlimit=50'
451 => 'apihelp-query+alldeletedrevisions-example-ns-main',
452 ];
453 }
454
455 public function getHelpUrls() {
456 return 'https://www.mediawiki.org/wiki/API:Alldeletedrevisions';
457 }
458}
getModulePrefix()
Get parameter prefix (usually two letters or an empty string).
Definition ApiBase.php:472
getParameter( $paramName, $parseLimit=true)
Get a value for the given parameter.
Definition ApiBase.php:709
dieContinueUsageIf( $condition)
Die with the $prefix.
Definition ApiBase.php:2181
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
Definition ApiBase.php:88
const PARAM_HELP_MSG_INFO
(array) Specify additional information tags for the parameter.
Definition ApiBase.php:142
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition ApiBase.php:50
const PARAM_HELP_MSG_APPEND
((string|array|Message)[]) Specify additional i18n messages to append to the normal message for this ...
Definition ApiBase.php:132
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition ApiBase.php:685
setWarning( $warning)
Set warning section for this module.
Definition ApiBase.php:1495
getResult()
Get the result object.
Definition ApiBase.php:584
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition ApiBase.php:125
getModuleName()
Get the name of the module being executed by this instance.
Definition ApiBase.php:464
dieUsage( $description, $errorCode, $httpRespCode=0, $extradata=null)
Throw a UsageException, which will (if uncaught) call the main module's error handler and die with an...
Definition ApiBase.php:1526
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition ApiBase.php:53
This class contains a list of pages that the client has requested.
Query module to enumerate all deleted revisions.
getExamplesMessages()
Returns usage examples for this module.
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
getHelpUrls()
Return links to more detailed help pages about the module.
__construct(ApiQuery $query, $moduleName)
run(ApiPageSet $resultPageSet=null)
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
addFields( $value)
Add a set of fields to select to the internal array.
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
addTimestampWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, similar to addWhereRange, but converts $start and $end t...
getDB()
Get the Query database connection (read-only)
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
addWhere( $value)
Add a set of WHERE clauses to the internal array.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
A base class for functions common to producing a list of revisions.
parseParameters( $params)
Parse the parameters into the various instance fields.
extractRevisionInfo(Revision $revision, $row)
Extract information from the Revision.
This is the main query class.
Definition ApiQuery.php:38
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
getUser()
Get the User object.
getConfig()
Get the Config object.
static getValidNamespaces()
Returns an array of the namespaces (by integer id) that exist on the wiki.
static selectArchiveFields()
Return the list of revision fields that should be selected to create a new revision from an archive r...
Definition Revision.php:460
static newFromArchiveRow( $row, $overrides=[])
Make a fake revision object from an archive table row.
Definition Revision.php:172
const DELETED_USER
Definition Revision.php:78
const DELETED_RESTRICTED
Definition Revision.php:79
static & makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition Title.php:524
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like select() and insert() are usually more convenient. They take care of things like table prefixes and escaping for you. If you really need to make your own SQL
$res
Definition database.txt:21
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database key
Definition design.txt:26
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
const LIST_OR
Definition Defines.php:197
const LIST_AND
Definition Defines.php:194
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition hooks.txt:249
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 '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! 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:Associative array mapping language codes to prefixed links of the form "language:title". & $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':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:1799
namespace and then decline to actually register it & $namespaces
Definition hooks.txt:915
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:1810
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:944
processing should stop and the error should be shown to the user * false
Definition hooks.txt:189
null for the local 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:1458
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:1597
if(count( $args)==0) $dir
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:37
$sort
$params