MediaWiki  1.29.2
ApiQueryAllPages.php
Go to the documentation of this file.
1 <?php
27 
34 
35  public function __construct( ApiQuery $query, $moduleName ) {
36  parent::__construct( $query, $moduleName, 'ap' );
37  }
38 
39  public function execute() {
40  $this->run();
41  }
42 
43  public function getCacheMode( $params ) {
44  return 'public';
45  }
46 
51  public function executeGenerator( $resultPageSet ) {
52  if ( $resultPageSet->isResolvingRedirects() ) {
53  $this->dieWithError( 'apierror-allpages-generator-redirects', 'params' );
54  }
55 
56  $this->run( $resultPageSet );
57  }
58 
63  private function run( $resultPageSet = null ) {
64  $db = $this->getDB();
65 
66  $params = $this->extractRequestParams();
67 
68  // Page filters
69  $this->addTables( 'page' );
70 
71  if ( !is_null( $params['continue'] ) ) {
72  $cont = explode( '|', $params['continue'] );
73  $this->dieContinueUsageIf( count( $cont ) != 1 );
74  $op = $params['dir'] == 'descending' ? '<' : '>';
75  $cont_from = $db->addQuotes( $cont[0] );
76  $this->addWhere( "page_title $op= $cont_from" );
77  }
78 
79  $miserMode = $this->getConfig()->get( 'MiserMode' );
80  if ( !$miserMode ) {
81  if ( $params['filterredir'] == 'redirects' ) {
82  $this->addWhereFld( 'page_is_redirect', 1 );
83  } elseif ( $params['filterredir'] == 'nonredirects' ) {
84  $this->addWhereFld( 'page_is_redirect', 0 );
85  }
86  }
87 
88  $this->addWhereFld( 'page_namespace', $params['namespace'] );
89  $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
90  $from = ( $params['from'] === null
91  ? null
92  : $this->titlePartToKey( $params['from'], $params['namespace'] ) );
93  $to = ( $params['to'] === null
94  ? null
95  : $this->titlePartToKey( $params['to'], $params['namespace'] ) );
96  $this->addWhereRange( 'page_title', $dir, $from, $to );
97 
98  if ( isset( $params['prefix'] ) ) {
99  $this->addWhere( 'page_title' . $db->buildLike(
100  $this->titlePartToKey( $params['prefix'], $params['namespace'] ),
101  $db->anyString() ) );
102  }
103 
104  if ( is_null( $resultPageSet ) ) {
105  $selectFields = [
106  'page_namespace',
107  'page_title',
108  'page_id'
109  ];
110  } else {
111  $selectFields = $resultPageSet->getPageTableFields();
112  }
113 
114  $miserModeFilterRedirValue = null;
115  $miserModeFilterRedir = $miserMode && $params['filterredir'] !== 'all';
116  if ( $miserModeFilterRedir ) {
117  $selectFields[] = 'page_is_redirect';
118 
119  if ( $params['filterredir'] == 'redirects' ) {
120  $miserModeFilterRedirValue = 1;
121  } elseif ( $params['filterredir'] == 'nonredirects' ) {
122  $miserModeFilterRedirValue = 0;
123  }
124  }
125 
126  $this->addFields( $selectFields );
127  $forceNameTitleIndex = true;
128  if ( isset( $params['minsize'] ) ) {
129  $this->addWhere( 'page_len>=' . intval( $params['minsize'] ) );
130  $forceNameTitleIndex = false;
131  }
132 
133  if ( isset( $params['maxsize'] ) ) {
134  $this->addWhere( 'page_len<=' . intval( $params['maxsize'] ) );
135  $forceNameTitleIndex = false;
136  }
137 
138  // Page protection filtering
139  if ( count( $params['prtype'] ) || $params['prexpiry'] != 'all' ) {
140  $this->addTables( 'page_restrictions' );
141  $this->addWhere( 'page_id=pr_page' );
142  $this->addWhere( "pr_expiry > {$db->addQuotes( $db->timestamp() )} OR pr_expiry IS NULL" );
143 
144  if ( count( $params['prtype'] ) ) {
145  $this->addWhereFld( 'pr_type', $params['prtype'] );
146 
147  if ( isset( $params['prlevel'] ) ) {
148  // Remove the empty string and '*' from the prlevel array
149  $prlevel = array_diff( $params['prlevel'], [ '', '*' ] );
150 
151  if ( count( $prlevel ) ) {
152  $this->addWhereFld( 'pr_level', $prlevel );
153  }
154  }
155  if ( $params['prfiltercascade'] == 'cascading' ) {
156  $this->addWhereFld( 'pr_cascade', 1 );
157  } elseif ( $params['prfiltercascade'] == 'noncascading' ) {
158  $this->addWhereFld( 'pr_cascade', 0 );
159  }
160  }
161  $forceNameTitleIndex = false;
162 
163  if ( $params['prexpiry'] == 'indefinite' ) {
164  $this->addWhere( "pr_expiry = {$db->addQuotes( $db->getInfinity() )} OR pr_expiry IS NULL" );
165  } elseif ( $params['prexpiry'] == 'definite' ) {
166  $this->addWhere( "pr_expiry != {$db->addQuotes( $db->getInfinity() )}" );
167  }
168 
169  $this->addOption( 'DISTINCT' );
170  } elseif ( isset( $params['prlevel'] ) ) {
171  $this->dieWithError(
172  [ 'apierror-invalidparammix-mustusewith', 'prlevel', 'prtype' ], 'invalidparammix'
173  );
174  }
175 
176  if ( $params['filterlanglinks'] == 'withoutlanglinks' ) {
177  $this->addTables( 'langlinks' );
178  $this->addJoinConds( [ 'langlinks' => [ 'LEFT JOIN', 'page_id=ll_from' ] ] );
179  $this->addWhere( 'll_from IS NULL' );
180  $forceNameTitleIndex = false;
181  } elseif ( $params['filterlanglinks'] == 'withlanglinks' ) {
182  $this->addTables( 'langlinks' );
183  $this->addWhere( 'page_id=ll_from' );
184  $this->addOption( 'STRAIGHT_JOIN' );
185 
186  // MySQL filesorts if we use a GROUP BY that works with the rules
187  // in the 1992 SQL standard (it doesn't like having the
188  // constant-in-WHERE page_namespace column in there). Using the
189  // 1999 rules works fine, but that breaks other DBs. Sigh.
191  $dbType = $db->getType();
192  if ( $dbType === 'mysql' || $dbType === 'sqlite' ) {
193  // Ignore the rules, or 1999 rules if you count unique keys
194  // over non-NULL columns as satisfying the requirement for
195  // "functional dependency" and don't require including
196  // constant-in-WHERE columns in the GROUP BY.
197  $this->addOption( 'GROUP BY', [ 'page_title' ] );
198  } elseif ( $dbType === 'postgres' && $db->getServerVersion() >= 9.1 ) {
199  // 1999 rules only counting primary keys
200  $this->addOption( 'GROUP BY', [ 'page_title', 'page_id' ] );
201  } else {
202  // 1992 rules
203  $this->addOption( 'GROUP BY', $selectFields );
204  }
205 
206  $forceNameTitleIndex = false;
207  }
208 
209  if ( $forceNameTitleIndex ) {
210  $this->addOption( 'USE INDEX', 'name_title' );
211  }
212 
213  $limit = $params['limit'];
214  $this->addOption( 'LIMIT', $limit + 1 );
215  $res = $this->select( __METHOD__ );
216 
217  // Get gender information
218  if ( MWNamespace::hasGenderDistinction( $params['namespace'] ) ) {
219  $users = [];
220  foreach ( $res as $row ) {
221  $users[] = $row->page_title;
222  }
223  MediaWikiServices::getInstance()->getGenderCache()->doQuery( $users, __METHOD__ );
224  $res->rewind(); // reset
225  }
226 
227  $count = 0;
228  $result = $this->getResult();
229  foreach ( $res as $row ) {
230  if ( ++$count > $limit ) {
231  // We've reached the one extra which shows that there are
232  // additional pages to be had. Stop here...
233  $this->setContinueEnumParameter( 'continue', $row->page_title );
234  break;
235  }
236 
237  if ( $miserModeFilterRedir && (int)$row->page_is_redirect !== $miserModeFilterRedirValue ) {
238  // Filter implemented in PHP due to being in Miser Mode
239  continue;
240  }
241 
242  if ( is_null( $resultPageSet ) ) {
243  $title = Title::makeTitle( $row->page_namespace, $row->page_title );
244  $vals = [
245  'pageid' => intval( $row->page_id ),
246  'ns' => intval( $title->getNamespace() ),
247  'title' => $title->getPrefixedText()
248  ];
249  $fit = $result->addValue( [ 'query', $this->getModuleName() ], null, $vals );
250  if ( !$fit ) {
251  $this->setContinueEnumParameter( 'continue', $row->page_title );
252  break;
253  }
254  } else {
255  $resultPageSet->processDbRow( $row );
256  }
257  }
258 
259  if ( is_null( $resultPageSet ) ) {
260  $result->addIndexedTagName( [ 'query', $this->getModuleName() ], 'p' );
261  }
262  }
263 
264  public function getAllowedParams() {
265  $ret = [
266  'from' => null,
267  'continue' => [
268  ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
269  ],
270  'to' => null,
271  'prefix' => null,
272  'namespace' => [
274  ApiBase::PARAM_TYPE => 'namespace',
275  ],
276  'filterredir' => [
277  ApiBase::PARAM_DFLT => 'all',
278  ApiBase::PARAM_TYPE => [
279  'all',
280  'redirects',
281  'nonredirects'
282  ]
283  ],
284  'minsize' => [
285  ApiBase::PARAM_TYPE => 'integer',
286  ],
287  'maxsize' => [
288  ApiBase::PARAM_TYPE => 'integer',
289  ],
290  'prtype' => [
293  ],
294  'prlevel' => [
295  ApiBase::PARAM_TYPE => $this->getConfig()->get( 'RestrictionLevels' ),
297  ],
298  'prfiltercascade' => [
299  ApiBase::PARAM_DFLT => 'all',
300  ApiBase::PARAM_TYPE => [
301  'cascading',
302  'noncascading',
303  'all'
304  ],
305  ],
306  'limit' => [
307  ApiBase::PARAM_DFLT => 10,
308  ApiBase::PARAM_TYPE => 'limit',
309  ApiBase::PARAM_MIN => 1,
312  ],
313  'dir' => [
314  ApiBase::PARAM_DFLT => 'ascending',
316  'ascending',
317  'descending'
318  ]
319  ],
320  'filterlanglinks' => [
322  'withlanglinks',
323  'withoutlanglinks',
324  'all'
325  ],
326  ApiBase::PARAM_DFLT => 'all'
327  ],
328  'prexpiry' => [
330  'indefinite',
331  'definite',
332  'all'
333  ],
334  ApiBase::PARAM_DFLT => 'all'
335  ],
336  ];
337 
338  if ( $this->getConfig()->get( 'MiserMode' ) ) {
339  $ret['filterredir'][ApiBase::PARAM_HELP_MSG_APPEND] = [ 'api-help-param-limited-in-miser-mode' ];
340  }
341 
342  return $ret;
343  }
344 
345  protected function getExamplesMessages() {
346  return [
347  'action=query&list=allpages&apfrom=B'
348  => 'apihelp-query+allpages-example-B',
349  'action=query&generator=allpages&gaplimit=4&gapfrom=T&prop=info'
350  => 'apihelp-query+allpages-example-generator',
351  'action=query&generator=allpages&gaplimit=2&' .
352  'gapfilterredir=nonredirects&gapfrom=Re&prop=revisions&rvprop=content'
353  => 'apihelp-query+allpages-example-generator-revisions',
354  ];
355  }
356 
357  public function getHelpUrls() {
358  return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Allpages';
359  }
360 }
ContextSource\getConfig
getConfig()
Get the Config object.
Definition: ContextSource.php:68
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:198
ApiQuery
This is the main query class.
Definition: ApiQuery.php:40
Title\getFilteredRestrictionTypes
static getFilteredRestrictionTypes( $exists=true)
Get a filtered list of all restriction types supported by this wiki.
Definition: Title.php:2546
ApiQueryAllPages\getHelpUrls
getHelpUrls()
Return links to more detailed help pages about the module.
Definition: ApiQueryAllPages.php:357
MWNamespace\hasGenderDistinction
static hasGenderDistinction( $index)
Does the namespace (potentially) have different aliases for different genders.
Definition: MWNamespace.php:411
ApiQueryAllPages
Query module to enumerate all available pages.
Definition: ApiQueryAllPages.php:33
captcha-old.count
count
Definition: captcha-old.py:225
ApiBase\dieWithError
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
Definition: ApiBase.php:1796
ApiBase\PARAM_HELP_MSG
const PARAM_HELP_MSG
(string|array|Message) Specify an alternative i18n documentation message for this parameter.
Definition: ApiBase.php:128
$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 '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: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! 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:1954
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:91
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:610
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
$params
$params
Definition: styleTest.css.php:40
$res
$res
Definition: database.txt:21
ApiQueryBase\addOption
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
Definition: ApiQueryBase.php:333
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:135
ApiQueryAllPages\__construct
__construct(ApiQuery $query, $moduleName)
Definition: ApiQueryAllPages.php:35
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
NS_MAIN
const NS_MAIN
Definition: Defines.php:62
ApiQueryGeneratorBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
Definition: ApiQueryGeneratorBase.php:88
$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:1572
ApiBase\PARAM_MIN
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:103
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
ApiBase\LIMIT_BIG1
const LIMIT_BIG1
Fast query, standard limit.
Definition: ApiBase.php:203
ApiQueryBase\getDB
getDB()
Get the Query database connection (read-only)
Definition: ApiQueryBase.php:111
ApiBase\PARAM_MAX
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
Definition: ApiBase.php:94
$limit
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers please use GetContentModels hook to make them known to core if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
Definition: hooks.txt:1049
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:164
ApiQueryBase\select
select( $method, $extraQuery=[], array &$hookData=null)
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:358
ApiQueryAllPages\getExamplesMessages
getExamplesMessages()
Returns usage examples for this module.
Definition: ApiQueryAllPages.php:345
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:514
$dir
$dir
Definition: Autoload.php:8
ApiQueryBase\addWhereRange
addWhereRange( $field, $dir, $start, $end, $sort=true)
Add a WHERE clause corresponding to a range, and an ORDER BY clause to sort in the right direction.
Definition: ApiQueryBase.php:286
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:718
ApiBase\dieContinueUsageIf
dieContinueUsageIf( $condition)
Die with the 'badcontinue' error.
Definition: ApiBase.php:1950
ApiQueryBase\addJoinConds
addJoinConds( $join_conds)
Add a set of JOIN conditions to the internal array.
Definition: ApiQueryBase.php:187
ApiQueryAllPages\run
run( $resultPageSet=null)
Definition: ApiQueryAllPages.php:63
ApiQueryAllPages\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiQueryAllPages.php:264
$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:1956
ApiQueryBase\addWhereFld
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
Definition: ApiQueryBase.php:266
ApiQueryAllPages\executeGenerator
executeGenerator( $resultPageSet)
Definition: ApiQueryAllPages.php:51
ApiQueryAllPages\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiQueryAllPages.php:39
ApiQueryGeneratorBase
Definition: ApiQueryGeneratorBase.php:30
ApiBase\LIMIT_BIG2
const LIMIT_BIG2
Fast query, apihighlimits limit.
Definition: ApiBase.php:205
ApiBase\PARAM_DFLT
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
Definition: ApiBase.php:52
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:490
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Definition: ApiBase.php:55
ApiBase\PARAM_MAX2
const PARAM_MAX2
(integer) Max value allowed for the parameter for users with the apihighlimits right,...
Definition: ApiBase.php:100
true
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 just before the function returns a value If you return true
Definition: hooks.txt:1956
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:233
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
ApiQueryAllPages\getCacheMode
getCacheMode( $params)
Get the cache mode for the data generated by this module.
Definition: ApiQueryAllPages.php:43
ApiQueryBase\titlePartToKey
titlePartToKey( $titlePart, $namespace=NS_MAIN)
Convert an input title or title prefix into a dbkey.
Definition: ApiQueryBase.php:549