MediaWiki  1.23.12
ApiQueryFilearchive.php
Go to the documentation of this file.
1 <?php
35 
36  public function __construct( $query, $moduleName ) {
37  parent::__construct( $query, $moduleName, 'fa' );
38  }
39 
40  public function execute() {
41  $user = $this->getUser();
42  // Before doing anything at all, let's check permissions
43  if ( !$user->isAllowed( 'deletedhistory' ) ) {
44  $this->dieUsage(
45  'You don\'t have permission to view deleted file information',
46  'permissiondenied'
47  );
48  }
49 
50  $db = $this->getDB();
51 
52  $params = $this->extractRequestParams();
53 
54  $prop = array_flip( $params['prop'] );
55  $fld_sha1 = isset( $prop['sha1'] );
56  $fld_timestamp = isset( $prop['timestamp'] );
57  $fld_user = isset( $prop['user'] );
58  $fld_size = isset( $prop['size'] );
59  $fld_dimensions = isset( $prop['dimensions'] );
60  $fld_description = isset( $prop['description'] ) || isset( $prop['parseddescription'] );
61  $fld_mime = isset( $prop['mime'] );
62  $fld_mediatype = isset( $prop['mediatype'] );
63  $fld_metadata = isset( $prop['metadata'] );
64  $fld_bitdepth = isset( $prop['bitdepth'] );
65  $fld_archivename = isset( $prop['archivename'] );
66 
67  $this->addTables( 'filearchive' );
68 
70  $this->addFields( array( 'fa_name', 'fa_deleted' ) );
71  $this->addFieldsIf( 'fa_sha1', $fld_sha1 );
72  $this->addFieldsIf( 'fa_timestamp', $fld_timestamp );
73  $this->addFieldsIf( array( 'fa_user', 'fa_user_text' ), $fld_user );
74  $this->addFieldsIf( array( 'fa_height', 'fa_width', 'fa_size' ), $fld_dimensions || $fld_size );
75  $this->addFieldsIf( 'fa_description', $fld_description );
76  $this->addFieldsIf( array( 'fa_major_mime', 'fa_minor_mime' ), $fld_mime );
77  $this->addFieldsIf( 'fa_media_type', $fld_mediatype );
78  $this->addFieldsIf( 'fa_metadata', $fld_metadata );
79  $this->addFieldsIf( 'fa_bits', $fld_bitdepth );
80  $this->addFieldsIf( 'fa_archive_name', $fld_archivename );
81 
82  if ( !is_null( $params['continue'] ) ) {
83  $cont = explode( '|', $params['continue'] );
84  $this->dieContinueUsageIf( count( $cont ) != 1 );
85  $op = $params['dir'] == 'descending' ? '<' : '>';
86  $cont_from = $db->addQuotes( $cont[0] );
87  $this->addWhere( "fa_name $op= $cont_from" );
88  }
89 
90  // Image filters
91  $dir = ( $params['dir'] == 'descending' ? 'older' : 'newer' );
92  $from = ( $params['from'] === null ? null : $this->titlePartToKey( $params['from'], NS_FILE ) );
93  if ( !is_null( $params['continue'] ) ) {
94  $from = $params['continue'];
95  }
96  $to = ( $params['to'] === null ? null : $this->titlePartToKey( $params['to'], NS_FILE ) );
97  $this->addWhereRange( 'fa_name', $dir, $from, $to );
98  if ( isset( $params['prefix'] ) ) {
99  $this->addWhere( 'fa_name' . $db->buildLike(
100  $this->titlePartToKey( $params['prefix'], NS_FILE ),
101  $db->anyString() ) );
102  }
103 
104  $sha1Set = isset( $params['sha1'] );
105  $sha1base36Set = isset( $params['sha1base36'] );
106  if ( $sha1Set || $sha1base36Set ) {
107  $sha1 = false;
108  if ( $sha1Set ) {
109  $sha1 = strtolower( $params['sha1'] );
110  if ( !$this->validateSha1Hash( $sha1 ) ) {
111  $this->dieUsage( 'The SHA1 hash provided is not valid', 'invalidsha1hash' );
112  }
113  $sha1 = wfBaseConvert( $sha1, 16, 36, 31 );
114  } elseif ( $sha1base36Set ) {
115  $sha1 = strtolower( $params['sha1base36'] );
116  if ( !$this->validateSha1Base36Hash( $sha1 ) ) {
117  $this->dieUsage( 'The SHA1Base36 hash provided is not valid', 'invalidsha1base36hash' );
118  }
119  }
120  if ( $sha1 ) {
121  $this->addWhereFld( 'fa_sha1', $sha1 );
122  }
123  }
124 
125  // Exclude files this user can't view.
126  if ( !$user->isAllowed( 'deletedtext' ) ) {
127  $bitmask = File::DELETED_FILE;
128  } elseif ( !$user->isAllowed( 'suppressrevision' ) ) {
130  } else {
131  $bitmask = 0;
132  }
133  if ( $bitmask ) {
134  $this->addWhere( $this->getDB()->bitAnd( 'fa_deleted', $bitmask ) . " != $bitmask" );
135  }
136 
137  $limit = $params['limit'];
138  $this->addOption( 'LIMIT', $limit + 1 );
139  $sort = ( $params['dir'] == 'descending' ? ' DESC' : '' );
140  $this->addOption( 'ORDER BY', 'fa_name' . $sort );
141 
142  $res = $this->select( __METHOD__ );
143 
144  $count = 0;
145  $result = $this->getResult();
146  foreach ( $res as $row ) {
147  if ( ++$count > $limit ) {
148  // We've reached the one extra which shows that there are
149  // additional pages to be had. Stop here...
150  $this->setContinueEnumParameter( 'continue', $row->fa_name );
151  break;
152  }
153 
154  $file = array();
155  $file['name'] = $row->fa_name;
156  $title = Title::makeTitle( NS_FILE, $row->fa_name );
158 
159  if ( $fld_description &&
161  ) {
162  $file['description'] = $row->fa_description;
163  if ( isset( $prop['parseddescription'] ) ) {
164  $file['parseddescription'] = Linker::formatComment(
165  $row->fa_description, $title );
166  }
167  }
168  if ( $fld_user &&
170  ) {
171  $file['userid'] = $row->fa_user;
172  $file['user'] = $row->fa_user_text;
173  }
174  if ( $fld_sha1 ) {
175  $file['sha1'] = wfBaseConvert( $row->fa_sha1, 36, 16, 40 );
176  }
177  if ( $fld_timestamp ) {
178  $file['timestamp'] = wfTimestamp( TS_ISO_8601, $row->fa_timestamp );
179  }
180  if ( $fld_size || $fld_dimensions ) {
181  $file['size'] = $row->fa_size;
182 
183  $pageCount = ArchivedFile::newFromRow( $row )->pageCount();
184  if ( $pageCount !== false ) {
185  $vals['pagecount'] = $pageCount;
186  }
187 
188  $file['height'] = $row->fa_height;
189  $file['width'] = $row->fa_width;
190  }
191  if ( $fld_mediatype ) {
192  $file['mediatype'] = $row->fa_media_type;
193  }
194  if ( $fld_metadata ) {
195  $file['metadata'] = $row->fa_metadata
196  ? ApiQueryImageInfo::processMetaData( unserialize( $row->fa_metadata ), $result )
197  : null;
198  }
199  if ( $fld_bitdepth ) {
200  $file['bitdepth'] = $row->fa_bits;
201  }
202  if ( $fld_mime ) {
203  $file['mime'] = "$row->fa_major_mime/$row->fa_minor_mime";
204  }
205  if ( $fld_archivename && !is_null( $row->fa_archive_name ) ) {
206  $file['archivename'] = $row->fa_archive_name;
207  }
208 
209  if ( $row->fa_deleted & File::DELETED_FILE ) {
210  $file['filehidden'] = '';
211  }
212  if ( $row->fa_deleted & File::DELETED_COMMENT ) {
213  $file['commenthidden'] = '';
214  }
215  if ( $row->fa_deleted & File::DELETED_USER ) {
216  $file['userhidden'] = '';
217  }
218  if ( $row->fa_deleted & File::DELETED_RESTRICTED ) {
219  // This file is deleted for normal admins
220  $file['suppressed'] = '';
221  }
222 
223  $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $file );
224  if ( !$fit ) {
225  $this->setContinueEnumParameter( 'continue', $row->fa_name );
226  break;
227  }
228  }
229 
230  $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'fa' );
231  }
232 
233  public function getAllowedParams() {
234  return array(
235  'from' => null,
236  'continue' => null,
237  'to' => null,
238  'prefix' => null,
239  'limit' => array(
240  ApiBase::PARAM_DFLT => 10,
241  ApiBase::PARAM_TYPE => 'limit',
242  ApiBase::PARAM_MIN => 1,
245  ),
246  'dir' => array(
247  ApiBase::PARAM_DFLT => 'ascending',
249  'ascending',
250  'descending'
251  )
252  ),
253  'sha1' => null,
254  'sha1base36' => null,
255  'prop' => array(
256  ApiBase::PARAM_DFLT => 'timestamp',
257  ApiBase::PARAM_ISMULTI => true,
259  'sha1',
260  'timestamp',
261  'user',
262  'size',
263  'dimensions',
264  'description',
265  'parseddescription',
266  'mime',
267  'mediatype',
268  'metadata',
269  'bitdepth',
270  'archivename',
271  ),
272  ),
273  );
274  }
275 
276  public function getParamDescription() {
277  return array(
278  'from' => 'The image title to start enumerating from',
279  'continue' => 'When more results are available, use this to continue',
280  'to' => 'The image title to stop enumerating at',
281  'prefix' => 'Search for all image titles that begin with this value',
282  'dir' => 'The direction in which to list',
283  'limit' => 'How many images to return in total',
284  'sha1' => "SHA1 hash of image. Overrides {$this->getModulePrefix()}sha1base36",
285  'sha1base36' => 'SHA1 hash of image in base 36 (used in MediaWiki)',
286  'prop' => array(
287  'What image information to get:',
288  ' sha1 - Adds SHA-1 hash for the image',
289  ' timestamp - Adds timestamp for the uploaded version',
290  ' user - Adds user who uploaded the image version',
291  ' size - Adds the size of the image in bytes and the height, ' .
292  'width and page count (if applicable)',
293  ' dimensions - Alias for size',
294  ' description - Adds description the image version',
295  ' parseddescription - Parse the description on the version',
296  ' mime - Adds MIME of the image',
297  ' mediatype - Adds the media type of the image',
298  ' metadata - Lists Exif metadata for the version of the image',
299  ' bitdepth - Adds the bit depth of the version',
300  ' archivename - Adds the file name of the archive version for non-latest versions'
301  ),
302  );
303  }
304 
305  public function getResultProperties() {
306  return array(
307  '' => array(
308  'name' => 'string',
309  'ns' => 'namespace',
310  'title' => 'string',
311  'filehidden' => 'boolean',
312  'commenthidden' => 'boolean',
313  'userhidden' => 'boolean',
314  'suppressed' => 'boolean'
315  ),
316  'sha1' => array(
317  'sha1' => 'string'
318  ),
319  'timestamp' => array(
320  'timestamp' => 'timestamp'
321  ),
322  'user' => array(
323  'userid' => 'integer',
324  'user' => 'string'
325  ),
326  'size' => array(
327  'size' => 'integer',
328  'pagecount' => array(
329  ApiBase::PROP_TYPE => 'integer',
330  ApiBase::PROP_NULLABLE => true
331  ),
332  'height' => 'integer',
333  'width' => 'integer'
334  ),
335  'dimensions' => array(
336  'size' => 'integer',
337  'pagecount' => array(
338  ApiBase::PROP_TYPE => 'integer',
339  ApiBase::PROP_NULLABLE => true
340  ),
341  'height' => 'integer',
342  'width' => 'integer'
343  ),
344  'description' => array(
345  'description' => 'string'
346  ),
347  'parseddescription' => array(
348  'description' => 'string',
349  'parseddescription' => 'string'
350  ),
351  'metadata' => array(
352  'metadata' => 'string'
353  ),
354  'bitdepth' => array(
355  'bitdepth' => 'integer'
356  ),
357  'mime' => array(
358  'mime' => 'string'
359  ),
360  'mediatype' => array(
361  'mediatype' => 'string'
362  ),
363  'archivename' => array(
364  'archivename' => 'string'
365  ),
366  );
367  }
368 
369  public function getDescription() {
370  return 'Enumerate all deleted files sequentially.';
371  }
372 
373  public function getPossibleErrors() {
374  return array_merge( parent::getPossibleErrors(), array(
375  array(
376  'code' => 'permissiondenied',
377  'info' => 'You don\'t have permission to view deleted file information'
378  ),
379  array( 'code' => 'hashsearchdisabled', 'info' => 'Search by hash disabled in Miser Mode' ),
380  array( 'code' => 'invalidsha1hash', 'info' => 'The SHA-1 hash provided is not valid' ),
381  array(
382  'code' => 'invalidsha1base36hash',
383  'info' => 'The SHA1Base36 hash provided is not valid'
384  ),
385  ) );
386  }
387 
388  public function getExamples() {
389  return array(
390  'api.php?action=query&list=filearchive' => array(
391  'Simple Use',
392  'Show a list of all deleted files',
393  ),
394  );
395  }
396 
397  public function getHelpUrls() {
398  return 'https://www.mediawiki.org/wiki/API:Filearchive';
399  }
400 }
ApiQueryFilearchive\getHelpUrls
getHelpUrls()
Definition: ApiQueryFilearchive.php:397
ApiQueryFilearchive
Query module to enumerate all deleted files.
Definition: ApiQueryFilearchive.php:34
ApiQueryBase\validateSha1Base36Hash
validateSha1Base36Hash( $hash)
Definition: ApiQueryBase.php:596
Title\makeTitle
static & makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:398
$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. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag '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 '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. '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 '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 '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 wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() '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 User::isValidEmailAddr(), 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. '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 '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) '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. '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:1528
ApiQueryBase\addFields
addFields( $value)
Add a set of fields to select to the internal array.
Definition: ApiQueryBase.php:117
ApiQueryFilearchive\getParamDescription
getParamDescription()
Returns an array of parameter descriptions.
Definition: ApiQueryFilearchive.php:276
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
File\DELETED_USER
const DELETED_USER
Definition: File.php:54
File\DELETED_RESTRICTED
const DELETED_RESTRICTED
Definition: File.php:55
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:2530
ApiBase\PARAM_TYPE
const PARAM_TYPE
Definition: ApiBase.php:50
ApiBase\getResult
getResult()
Get the result object.
Definition: ApiBase.php:205
ApiQueryBase\select
select( $method, $extraQuery=array())
Execute a SELECT query based on the values in the internal arrays.
Definition: ApiQueryBase.php:274
$from
$from
Definition: importImages.php:90
NS_FILE
const NS_FILE
Definition: Defines.php:85
$params
$params
Definition: styleTest.css.php:40
$limit
if( $sleep) $limit
Definition: importImages.php:99
Revision\userCanBitfield
static userCanBitfield( $bitfield, $field, User $user=null)
Determine if the current user is allowed to view a particular field of this revision,...
Definition: Revision.php:1641
ApiQueryBase\addOption
addOption( $name, $value=null)
Add an option such as LIMIT or USE INDEX.
Definition: ApiQueryBase.php:252
Linker\formatComment
static formatComment( $comment, $title=null, $local=false)
This function is called by all recent changes variants, by the page history, and by the user contribu...
Definition: Linker.php:1254
ContextSource\getUser
getUser()
Get the User object.
Definition: ContextSource.php:132
ApiQueryBase\addFieldsIf
addFieldsIf( $value, $condition)
Same as addFields(), but add the fields only if a condition is met.
Definition: ApiQueryBase.php:131
ApiBase\PARAM_MIN
const PARAM_MIN
Definition: ApiBase.php:56
ApiQueryFilearchive\getResultProperties
getResultProperties()
Returns possible properties in the result, grouped by the value of the prop parameter that shows them...
Definition: ApiQueryFilearchive.php:305
File\DELETED_COMMENT
const DELETED_COMMENT
Definition: File.php:53
ApiQueryFilearchive\getPossibleErrors
getPossibleErrors()
Definition: ApiQueryFilearchive.php:373
ApiQueryBase
This is a base class for all Query modules.
Definition: ApiQueryBase.php:34
ApiBase\LIMIT_BIG1
const LIMIT_BIG1
Definition: ApiBase.php:78
TS_ISO_8601
const TS_ISO_8601
ISO 8601 format with no timezone: 1986-02-09T20:00:00Z.
Definition: GlobalFunctions.php:2495
ApiQueryBase\getDB
getDB()
Get the Query database connection (read-only)
Definition: ApiQueryBase.php:417
ApiBase\PARAM_MAX
const PARAM_MAX
Definition: ApiBase.php:52
ApiQueryFilearchive\getExamples
getExamples()
Returns usage examples for this module.
Definition: ApiQueryFilearchive.php:388
ApiQueryFilearchive\getAllowedParams
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
Definition: ApiQueryFilearchive.php:233
ApiQueryBase\addTables
addTables( $tables, $alias=null)
Add a set of tables to the internal array.
Definition: ApiQueryBase.php:82
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
ApiQueryImageInfo\processMetaData
static processMetaData( $metadata, $result)
Definition: ApiQueryImageInfo.php:551
ApiBase\PROP_TYPE
const PROP_TYPE
Definition: ApiBase.php:74
ApiQueryFilearchive\execute
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
Definition: ApiQueryFilearchive.php:40
$sort
$sort
Definition: profileinfo.php:301
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:205
ApiBase\extractRequestParams
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
Definition: ApiBase.php:687
$title
presenting them properly to the user as errors is done by the caller $title
Definition: hooks.txt:1324
ApiBase\dieContinueUsageIf
dieContinueUsageIf( $condition)
Die with the $prefix.
Definition: ApiBase.php:1969
ApiBase\dieUsage
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:1363
ApiBase\PROP_NULLABLE
const PROP_NULLABLE
Definition: ApiBase.php:76
ApiQueryBase\titlePartToKey
titlePartToKey( $titlePart, $defaultNamespace=NS_MAIN)
An alternative to titleToKey() that doesn't trim trailing spaces, and does not mangle the input if st...
Definition: ApiQueryBase.php:491
ApiQueryBase\addWhereFld
addWhereFld( $field, $value)
Equivalent to addWhere(array($field => $value))
Definition: ApiQueryBase.php:185
$user
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 account $user
Definition: hooks.txt:237
$file
if(PHP_SAPI !='cli') $file
Definition: UtfNormalTest2.php:30
$count
$count
Definition: UtfNormalTest2.php:96
ApiBase\LIMIT_BIG2
const LIMIT_BIG2
Definition: ApiBase.php:79
$dir
if(count( $args)==0) $dir
Definition: importImages.php:49
wfBaseConvert
wfBaseConvert( $input, $sourceBase, $destBase, $pad=1, $lowercase=true, $engine='auto')
Convert an arbitrarily-long digit string from one numeric base to another, optionally zero-padding to...
Definition: GlobalFunctions.php:3424
ApiBase\PARAM_DFLT
const PARAM_DFLT
Definition: ApiBase.php:46
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:148
ApiBase\PARAM_ISMULTI
const PARAM_ISMULTI
Definition: ApiBase.php:48
ApiBase\PARAM_MAX2
const PARAM_MAX2
Definition: ApiBase.php:54
File\DELETED_FILE
const DELETED_FILE
Definition: File.php:52
ApiQueryBase\addWhere
addWhere( $value)
Add a set of WHERE clauses to the internal array.
Definition: ApiQueryBase.php:152
ApiQueryBase\setContinueEnumParameter
setContinueEnumParameter( $paramName, $paramValue)
Set a query-continue value.
Definition: ApiQueryBase.php:404
ArchivedFile\selectFields
static selectFields()
Fields in the filearchive table.
Definition: ArchivedFile.php:190
$query
return true to allow those checks to and false if checking is done use this to change the tables headers temp or archived zone change it to an object instance and return false override the list derivative used the name of the old file when set the default code will be skipped add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1105
$res
$res
Definition: database.txt:21
ArchivedFile\newFromRow
static newFromRow( $row)
Loads a file object from the filearchive table.
Definition: ArchivedFile.php:179
ApiQueryBase\addTitleInfo
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
Definition: ApiQueryBase.php:339
ApiQueryFilearchive\getDescription
getDescription()
Returns the description string for this module.
Definition: ApiQueryFilearchive.php:369
ApiQueryFilearchive\__construct
__construct( $query, $moduleName)
Definition: ApiQueryFilearchive.php:36
ApiQueryBase\validateSha1Hash
validateSha1Hash( $hash)
Definition: ApiQueryBase.php:588