MediaWiki REL1_33
OldLocalFile.php
Go to the documentation of this file.
1<?php
25
31class OldLocalFile extends LocalFile {
33 protected $requestedTime;
34
36 protected $archive_name;
37
38 const CACHE_VERSION = 1;
39 const MAX_CACHE_ROWS = 20;
40
48 static function newFromTitle( $title, $repo, $time = null ) {
49 # The null default value is only here to avoid an E_STRICT
50 if ( $time === null ) {
51 throw new MWException( __METHOD__ . ' got null for $time parameter' );
52 }
53
54 return new self( $title, $repo, $time, null );
55 }
56
63 static function newFromArchiveName( $title, $repo, $archiveName ) {
64 return new self( $title, $repo, null, $archiveName );
65 }
66
72 static function newFromRow( $row, $repo ) {
73 $title = Title::makeTitle( NS_FILE, $row->oi_name );
74 $file = new self( $title, $repo, null, $row->oi_archive_name );
75 $file->loadFromRow( $row, 'oi_' );
76
77 return $file;
78 }
79
90 static function newFromKey( $sha1, $repo, $timestamp = false ) {
91 $dbr = $repo->getReplicaDB();
92
93 $conds = [ 'oi_sha1' => $sha1 ];
94 if ( $timestamp ) {
95 $conds['oi_timestamp'] = $dbr->timestamp( $timestamp );
96 }
97
98 $fileQuery = self::getQueryInfo();
99 $row = $dbr->selectRow(
100 $fileQuery['tables'], $fileQuery['fields'], $conds, __METHOD__, [], $fileQuery['joins']
101 );
102 if ( $row ) {
103 return self::newFromRow( $row, $repo );
104 } else {
105 return false;
106 }
107 }
108
114 static function selectFields() {
116
117 wfDeprecated( __METHOD__, '1.31' );
119 // If code is using this instead of self::getQueryInfo(), there's a
120 // decent chance it's going to try to directly access
121 // $row->oi_user or $row->oi_user_text and we can't give it
122 // useful values here once those aren't being used anymore.
123 throw new BadMethodCallException(
124 'Cannot use ' . __METHOD__
125 . ' when $wgActorTableSchemaMigrationStage has SCHEMA_COMPAT_READ_NEW'
126 );
127 }
128
129 return [
130 'oi_name',
131 'oi_archive_name',
132 'oi_size',
133 'oi_width',
134 'oi_height',
135 'oi_metadata',
136 'oi_bits',
137 'oi_media_type',
138 'oi_major_mime',
139 'oi_minor_mime',
140 'oi_user',
141 'oi_user_text',
142 'oi_actor' => 'NULL',
143 'oi_timestamp',
144 'oi_deleted',
145 'oi_sha1',
146 ] + MediaWikiServices::getInstance()->getCommentStore()->getFields( 'oi_description' );
147 }
148
160 public static function getQueryInfo( array $options = [] ) {
161 $commentQuery = MediaWikiServices::getInstance()->getCommentStore()->getJoin( 'oi_description' );
162 $actorQuery = ActorMigration::newMigration()->getJoin( 'oi_user' );
163 $ret = [
164 'tables' => [ 'oldimage' ] + $commentQuery['tables'] + $actorQuery['tables'],
165 'fields' => [
166 'oi_name',
167 'oi_archive_name',
168 'oi_size',
169 'oi_width',
170 'oi_height',
171 'oi_bits',
172 'oi_media_type',
173 'oi_major_mime',
174 'oi_minor_mime',
175 'oi_timestamp',
176 'oi_deleted',
177 'oi_sha1',
178 ] + $commentQuery['fields'] + $actorQuery['fields'],
179 'joins' => $commentQuery['joins'] + $actorQuery['joins'],
180 ];
181
182 if ( in_array( 'omit-nonlazy', $options, true ) ) {
183 // Internal use only for getting only the lazy fields
184 $ret['fields'] = [];
185 }
186 if ( !in_array( 'omit-lazy', $options, true ) ) {
187 // Note: Keep this in sync with self::getLazyCacheFields()
188 $ret['fields'][] = 'oi_metadata';
189 }
190
191 return $ret;
192 }
193
201 function __construct( $title, $repo, $time, $archiveName ) {
202 parent::__construct( $title, $repo );
203 $this->requestedTime = $time;
204 $this->archive_name = $archiveName;
205 if ( is_null( $time ) && is_null( $archiveName ) ) {
206 throw new MWException( __METHOD__ . ': must specify at least one of $time or $archiveName' );
207 }
208 }
209
213 function getCacheKey() {
214 return false;
215 }
216
220 function getArchiveName() {
221 if ( !isset( $this->archive_name ) ) {
222 $this->load();
223 }
224
225 return $this->archive_name;
226 }
227
231 function isOld() {
232 return true;
233 }
234
238 function isVisible() {
239 return $this->exists() && !$this->isDeleted( File::DELETED_FILE );
240 }
241
242 function loadFromDB( $flags = 0 ) {
243 $this->dataLoaded = true;
244
245 $dbr = ( $flags & self::READ_LATEST )
246 ? $this->repo->getMasterDB()
247 : $this->repo->getReplicaDB();
248
249 $conds = [ 'oi_name' => $this->getName() ];
250 if ( is_null( $this->requestedTime ) ) {
251 $conds['oi_archive_name'] = $this->archive_name;
252 } else {
253 $conds['oi_timestamp'] = $dbr->timestamp( $this->requestedTime );
254 }
255 $fileQuery = static::getQueryInfo();
256 $row = $dbr->selectRow(
257 $fileQuery['tables'],
258 $fileQuery['fields'],
259 $conds,
260 __METHOD__,
261 [ 'ORDER BY' => 'oi_timestamp DESC' ],
262 $fileQuery['joins']
263 );
264 if ( $row ) {
265 $this->loadFromRow( $row, 'oi_' );
266 } else {
267 $this->fileExists = false;
268 }
269 }
270
274 protected function loadExtraFromDB() {
275 $this->extraDataLoaded = true;
276 $dbr = $this->repo->getReplicaDB();
277 $conds = [ 'oi_name' => $this->getName() ];
278 if ( is_null( $this->requestedTime ) ) {
279 $conds['oi_archive_name'] = $this->archive_name;
280 } else {
281 $conds['oi_timestamp'] = $dbr->timestamp( $this->requestedTime );
282 }
283 $fileQuery = static::getQueryInfo( [ 'omit-nonlazy' ] );
284 // In theory the file could have just been renamed/deleted...oh well
285 $row = $dbr->selectRow(
286 $fileQuery['tables'],
287 $fileQuery['fields'],
288 $conds,
289 __METHOD__,
290 [ 'ORDER BY' => 'oi_timestamp DESC' ],
291 $fileQuery['joins']
292 );
293
294 if ( !$row ) { // fallback to master
295 $dbr = $this->repo->getMasterDB();
296 $row = $dbr->selectRow(
297 $fileQuery['tables'],
298 $fileQuery['fields'],
299 $conds,
300 __METHOD__,
301 [ 'ORDER BY' => 'oi_timestamp DESC' ],
302 $fileQuery['joins']
303 );
304 }
305
306 if ( $row ) {
307 foreach ( $this->unprefixRow( $row, 'oi_' ) as $name => $value ) {
308 $this->$name = $value;
309 }
310 } else {
311 throw new MWException( "Could not find data for image '{$this->archive_name}'." );
312 }
313 }
314
316 protected function getCacheFields( $prefix = 'img_' ) {
317 $fields = parent::getCacheFields( $prefix );
318 $fields[] = $prefix . 'archive_name';
319 $fields[] = $prefix . 'deleted';
320
321 return $fields;
322 }
323
327 function getRel() {
328 return $this->getArchiveRel( $this->getArchiveName() );
329 }
330
334 function getUrlRel() {
335 return $this->getArchiveRel( rawurlencode( $this->getArchiveName() ) );
336 }
337
338 function upgradeRow() {
339 $this->loadFromFile();
340
341 # Don't destroy file info of missing files
342 if ( !$this->fileExists ) {
343 wfDebug( __METHOD__ . ": file does not exist, aborting\n" );
344
345 return;
346 }
347
348 $dbw = $this->repo->getMasterDB();
349 list( $major, $minor ) = self::splitMime( $this->mime );
350
351 wfDebug( __METHOD__ . ': upgrading ' . $this->archive_name . " to the current schema\n" );
352 $dbw->update( 'oldimage',
353 [
354 'oi_size' => $this->size, // sanity
355 'oi_width' => $this->width,
356 'oi_height' => $this->height,
357 'oi_bits' => $this->bits,
358 'oi_media_type' => $this->media_type,
359 'oi_major_mime' => $major,
360 'oi_minor_mime' => $minor,
361 'oi_metadata' => $this->metadata,
362 'oi_sha1' => $this->sha1,
363 ], [
364 'oi_name' => $this->getName(),
365 'oi_archive_name' => $this->archive_name ],
366 __METHOD__
367 );
368 }
369
375 function isDeleted( $field ) {
376 $this->load();
377
378 return ( $this->deleted & $field ) == $field;
379 }
380
385 function getVisibility() {
386 $this->load();
387
388 return (int)$this->deleted;
389 }
390
399 function userCan( $field, User $user = null ) {
400 $this->load();
401
402 return Revision::userCanBitfield( $this->deleted, $field, $user );
403 }
404
414 public function uploadOld( $srcPath, $timestamp, $comment, $user ) {
415 $this->lock();
416
417 $archiveName = $this->getArchiveName();
418 $dstRel = $this->getArchiveRel( $archiveName );
419 $status = $this->publishTo( $srcPath, $dstRel );
420
421 if ( $status->isGood() &&
422 !$this->recordOldUpload( $srcPath, $archiveName, $timestamp, $comment, $user )
423 ) {
424 $status->fatal( 'filenotfound', $srcPath );
425 }
426
427 $this->unlock();
428
429 return $status;
430 }
431
442 protected function recordOldUpload( $srcPath, $archiveName, $timestamp, $comment, $user ) {
443 $dbw = $this->repo->getMasterDB();
444
445 $dstPath = $this->repo->getZonePath( 'public' ) . '/' . $this->getRel();
446 $props = $this->repo->getFileProps( $dstPath );
447 if ( !$props['fileExists'] ) {
448 return false;
449 }
450
451 $commentFields = MediaWikiServices::getInstance()->getCommentStore()
452 ->insert( $dbw, 'oi_description', $comment );
453 $actorFields = ActorMigration::newMigration()->getInsertValues( $dbw, 'oi_user', $user );
454 $dbw->insert( 'oldimage',
455 [
456 'oi_name' => $this->getName(),
457 'oi_archive_name' => $archiveName,
458 'oi_size' => $props['size'],
459 'oi_width' => intval( $props['width'] ),
460 'oi_height' => intval( $props['height'] ),
461 'oi_bits' => $props['bits'],
462 'oi_timestamp' => $dbw->timestamp( $timestamp ),
463 'oi_metadata' => $props['metadata'],
464 'oi_media_type' => $props['media_type'],
465 'oi_major_mime' => $props['major_mime'],
466 'oi_minor_mime' => $props['minor_mime'],
467 'oi_sha1' => $props['sha1'],
468 ] + $commentFields + $actorFields, __METHOD__
469 );
470
471 return true;
472 }
473
481 public function exists() {
482 $archiveName = $this->getArchiveName();
483 if ( $archiveName === '' || !is_string( $archiveName ) ) {
484 return false;
485 }
486 return parent::exists();
487 }
488}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
getName()
Return the name of this file.
Definition File.php:298
string $name
The name of a file from its title object.
Definition File.php:124
FileRepo LocalRepo ForeignAPIRepo bool $repo
Some member variables can be lazy-initialised using __get().
Definition File.php:97
const DELETED_FILE
Definition File.php:54
static splitMime( $mime)
Split an internet media type into its two components; if not a two-part name, set the minor type to '...
Definition File.php:274
Title string bool $title
Definition File.php:100
getArchiveRel( $suffix=false)
Get the path of an archived file relative to the public zone root.
Definition File.php:1539
Class to represent a local file in the wiki's own database.
Definition LocalFile.php:46
lock()
Start an atomic DB section and lock the image for update or increments a reference counter if the loc...
loadFromRow( $row, $prefix='img_')
Load file metadata from a DB result row.
loadFromFile()
Load metadata from the file itself.
string $timestamp
Upload timestamp.
publishTo( $src, $dstRel, $flags=0, array $options=[])
Move or copy a file to a specified location.
unlock()
Decrement the lock reference count and end the atomic section if it reaches zero.
User $user
Uploader.
string $sha1
SHA-1 base 36 content hash.
Definition LocalFile.php:76
unprefixRow( $row, $prefix='img_')
int $deleted
Bitfield akin to rev_deleted.
Definition LocalFile.php:85
MediaWiki exception.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Class to represent a file in the oldimage table.
const MAX_CACHE_ROWS
static newFromArchiveName( $title, $repo, $archiveName)
upgradeRow()
Fix assorted version-related problems with the image row by reloading it from the file.
recordOldUpload( $srcPath, $archiveName, $timestamp, $comment, $user)
Record a file upload in the oldimage table, without adding log entries.
static newFromRow( $row, $repo)
uploadOld( $srcPath, $timestamp, $comment, $user)
Upload a file directly into archive.
static getQueryInfo(array $options=[])
Return the tables, fields, and join conditions to be selected to create a new oldlocalfile object.
const CACHE_VERSION
__construct( $title, $repo, $time, $archiveName)
loadFromDB( $flags=0)
Load file metadata from the DB.
static newFromKey( $sha1, $repo, $timestamp=false)
Create a OldLocalFile from a SHA-1 key Do not call this except from inside a repo class.
getVisibility()
Returns bitfield value.
static newFromTitle( $title, $repo, $time=null)
string $archive_name
Archive name.
userCan( $field, User $user=null)
Determine if the current user is allowed to view a particular field of this image file,...
static selectFields()
Fields in the oldimage table.
exists()
If archive name is an empty string, then file does not "exist".
getCacheFields( $prefix='img_')
@inheritDoc
string int $requestedTime
Timestamp.
isDeleted( $field)
loadExtraFromDB()
Load lazy file metadata from the DB.
static userCanBitfield( $bitfield, $field, User $user=null, Title $title=null)
Determine if the current user is allowed to view a particular field of this revision,...
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:48
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
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 SCHEMA_COMPAT_READ_NEW
Definition Defines.php:296
const NS_FILE
Definition Defines.php:79
see documentation in includes Linker php for Linker::makeImageLink & $time
Definition hooks.txt:1802
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, 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. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1266
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 & $options
Definition hooks.txt:1999
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition hooks.txt:783
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:2003
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
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
MediaWiki has optional support for a high distributed memory object caching system For general information on but for a larger site with heavy load
Definition memcached.txt:6
width
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition router.php:42