44 $this->mParams[
'async'] = ( $this->mParams[
'async'] &&
45 $this->
getConfig()->get(
'EnableAsyncUploads' ) );
47 $this->mParams[
'file'] =
$request->getFileName(
'file' );
48 $this->mParams[
'chunk'] =
$request->getFileName(
'chunk' );
51 if ( !$this->mParams[
'filekey'] && $this->mParams[
'sessionkey'] ) {
52 $this->mParams[
'filekey'] = $this->mParams[
'sessionkey'];
59 } elseif ( !isset( $this->mUpload ) ) {
60 $this->
dieDebug( __METHOD__,
'No upload module set' );
71 $status = $this->mUpload->fetchFile();
77 if ( $this->mParams[
'chunk'] ) {
79 if ( $this->mParams[
'filesize'] > $maxSize ) {
82 if ( !$this->mUpload->getTitle() ) {
85 } elseif ( $this->mParams[
'async'] && $this->mParams[
'filekey'] ) {
88 wfDebug( __METHOD__ .
" about to verify\n" );
95 if ( !$this->mParams[
'stash'] ) {
96 $permErrors = $this->mUpload->verifyTitlePermissions( $user );
97 if ( $permErrors !==
true ) {
112 if ( $result[
'result'] ===
'Success' ) {
113 $imageinfo = $this->mUpload->getImageInfo( $this->
getResult() );
118 $this->mUpload->cleanupTempFile();
127 if ( $warnings && !$this->mParams[
'ignorewarnings'] ) {
130 } elseif ( $this->mParams[
'chunk'] ) {
133 } elseif ( $this->mParams[
'stash'] ) {
156 $result[
'result'] =
'Success';
157 if ( $warnings && count( $warnings ) > 0 ) {
158 $result[
'warnings'] = $warnings;
174 $result[
'result'] =
'Warning';
175 $result[
'warnings'] = $warnings;
191 if ( $warnings && count( $warnings ) > 0 ) {
192 $result[
'warnings'] = $warnings;
196 $chunkPath =
$request->getFileTempname(
'chunk' );
197 $chunkSize =
$request->getUpload(
'chunk' )->getSize();
198 $totalSoFar = $this->mParams[
'offset'] + $chunkSize;
199 $minChunkSize = $this->
getConfig()->get(
'MinUploadChunkSize' );
202 if ( $totalSoFar > $this->mParams[
'filesize'] ) {
207 if ( $totalSoFar != $this->mParams[
'filesize'] && $chunkSize < $minChunkSize ) {
208 $this->
dieWithError( [
'apierror-chunk-too-small', Message::numParam( $minChunkSize ) ] );
211 if ( $this->mParams[
'offset'] == 0 ) {
214 $filekey = $this->mParams[
'filekey'];
220 $this->
dieWithError(
'apierror-stashfailed-nosession',
'stashfailed' );
221 } elseif ( $progress[
'result'] !==
'Continue' || $progress[
'stage'] !==
'uploading' ) {
222 $this->
dieWithError(
'apierror-stashfailed-complete',
'stashfailed' );
225 $status = $this->mUpload->addChunk(
226 $chunkPath, $chunkSize, $this->mParams[
'offset'] );
229 'offset' => $this->mUpload->getOffset(),
237 if ( $totalSoFar == $this->mParams[
'filesize'] ) {
238 if ( $this->mParams[
'async'] ) {
242 [
'result' =>
'Poll',
243 'stage' =>
'queued',
'status' => Status::newGood() ]
246 Title::makeTitle(
NS_FILE, $filekey ),
248 'filename' => $this->mParams[
'filename'],
249 'filekey' => $filekey,
253 $result[
'result'] =
'Poll';
254 $result[
'stage'] =
'queued';
256 $status = $this->mUpload->concatenateChunks();
261 [
'result' =>
'Failure',
'stage' =>
'assembling',
'status' =>
$status ]
269 $result[
'warnings'] = $warnings;
275 $this->mUpload->stash->removeFile( $filekey );
276 $filekey = $this->mUpload->getStashFile()->getFileKey();
278 $result[
'result'] =
'Success';
285 'result' =>
'Continue',
286 'stage' =>
'uploading',
287 'offset' => $totalSoFar,
288 'status' => Status::newGood(),
291 $result[
'result'] =
'Continue';
292 $result[
'offset'] = $totalSoFar;
295 $result[
'filekey'] = $filekey;
313 $isPartial = (bool)$this->mParams[
'chunk'];
315 $status = $this->mUpload->tryStashFile( $this->
getUser(), $isPartial );
321 }
catch ( Exception
$e ) {
322 $debugMessage =
'Stashing temporary file failed: ' . get_class(
$e ) .
' ' .
$e->getMessage();
323 wfDebug( __METHOD__ .
' ' . $debugMessage .
"\n" );
325 $e, [
'wrap' =>
new ApiMessage(
'apierror-stashexception',
'stashfailed' ) ]
330 $stashFile =
$status->getValue();
331 $data[
'filekey'] = $stashFile->getFileKey();
333 $data[
'sessionkey'] = $data[
'filekey'];
334 return $data[
'filekey'];
337 if (
$status->getMessage()->getKey() ===
'uploadstash-exception' ) {
340 list( $exceptionType, $message ) =
$status->getMessage()->getParams();
341 $debugMessage =
'Stashing temporary file failed: ' . $exceptionType .
' ' . $message;
342 wfDebug( __METHOD__ .
' ' . $debugMessage .
"\n" );
346 if ( $failureMode !==
'optional' ) {
367 $data[
'invalidparameter'] = $parameter;
370 $sv = StatusValue::newGood();
371 foreach ( $errors as $error ) {
373 $msg->setApiData( $msg->getApiData() + $data );
389 $sv = StatusValue::newGood();
390 foreach (
$status->getErrors() as $error ) {
392 if ( $moreExtraData ) {
393 $msg->setApiData( $msg->getApiData() + $moreExtraData );
411 if ( !$this->mParams[
'chunk'] ) {
413 'filekey',
'file',
'url' );
417 if ( $this->mParams[
'filekey'] && $this->mParams[
'checkstatus'] ) {
420 $this->
dieWithError(
'api-upload-missingresult',
'missingresult' );
421 } elseif ( !$progress[
'status']->isGood() ) {
424 if ( isset( $progress[
'status']->value[
'verification'] ) ) {
427 if ( isset( $progress[
'status']->value[
'warnings'] ) ) {
430 $progress[
'warnings'] = $warnings;
433 unset( $progress[
'status'] );
435 if ( isset( $progress[
'imageinfo'] ) ) {
436 $imageinfo = $progress[
'imageinfo'];
437 unset( $progress[
'imageinfo'] );
451 if ( is_null( $this->mParams[
'filename'] ) ) {
452 $this->
dieWithError( [
'apierror-missingparam',
'filename' ] );
455 if ( $this->mParams[
'chunk'] ) {
458 if ( isset( $this->mParams[
'filekey'] ) ) {
459 if ( $this->mParams[
'offset'] === 0 ) {
460 $this->
dieWithError(
'apierror-upload-filekeynotallowed',
'filekeynotallowed' );
464 $this->mUpload->continueChunks(
465 $this->mParams[
'filename'],
466 $this->mParams[
'filekey'],
470 if ( $this->mParams[
'offset'] !== 0 ) {
471 $this->
dieWithError(
'apierror-upload-filekeyneeded',
'filekeyneeded' );
475 $this->mUpload->initialize(
476 $this->mParams[
'filename'],
480 } elseif ( isset( $this->mParams[
'filekey'] ) ) {
489 $this->mUpload->initialize(
490 $this->mParams[
'filekey'], $this->mParams[
'filename'], !$this->mParams[
'async']
492 } elseif ( isset( $this->mParams[
'file'] ) ) {
496 if ( $this->mParams[
'async'] ) {
497 $this->
dieWithError(
'apierror-cannot-async-upload-file' );
501 $this->mUpload->initialize(
502 $this->mParams[
'filename'],
505 } elseif ( isset( $this->mParams[
'url'] ) ) {
520 $this->mUpload->
initialize( $this->mParams[
'filename'],
521 $this->mParams[
'url'] );
534 $permission = $this->mUpload->isAllowed( $user );
536 if ( $permission !==
true ) {
537 if ( !$user->isLoggedIn() ) {
538 $this->
dieWithError( [
'apierror-mustbeloggedin', $this->
msg(
'action-upload' ) ] );
545 if ( $user->isBlocked() ) {
550 if ( $user->isBlockedGlobally() ) {
559 $verification = $this->mUpload->verifyUpload();
572 switch ( $verification[
'status'] ) {
580 'illegal-filename',
null, [
'filename' => $verification[
'filtered'] ]
604 'filetype' => $verification[
'finalExt'],
605 'allowed' => array_values( array_unique( $this->
getConfig()->
get(
'FileExtensions' ) ) )
607 $extensions = array_unique( $this->
getConfig()->
get(
'FileExtensions' ) );
609 'filetype-banned-type',
611 Message::listParam( $extensions,
'comma' ),
612 count( $extensions ),
617 if ( isset( $verification[
'blacklistedExt'] ) ) {
618 $msg[1] = Message::listParam( $verification[
'blacklistedExt'],
'comma' );
619 $msg[4] = count( $verification[
'blacklistedExt'] );
620 $extradata[
'blacklisted'] = array_values( $verification[
'blacklistedExt'] );
623 $msg[1] = $verification[
'finalExt'];
627 $this->
dieWithError( $msg,
'filetype-banned', $extradata );
633 $details = array_merge( [ $msg->getKey() ], $msg->getParams() );
635 $details = $verification[
'details'];
638 $msg->setApiData( $msg->getApiData() + [
'details' => $details ] );
643 $msg = $verification[
'error'] ===
'' ?
'hookaborted' : $verification[
'error'];
644 $this->
dieWithError( $msg,
'hookaborted', [
'details' => $verification[
'error'] ] );
647 $this->
dieWithError(
'apierror-unknownerror-nocode',
'unknown-error',
648 [
'details' => [
'code' => $verification[
'status'] ] ] );
661 $warnings = $this->mUpload->checkWarnings();
671 if ( isset( $warnings[
'duplicate'] ) ) {
674 foreach ( $warnings[
'duplicate'] as $dupe ) {
675 $dupes[] = $dupe->getName();
678 $warnings[
'duplicate'] = $dupes;
681 if ( isset( $warnings[
'exists'] ) ) {
682 $warning = $warnings[
'exists'];
683 unset( $warnings[
'exists'] );
685 $localFile = isset( $warning[
'normalizedFile'] )
686 ? $warning[
'normalizedFile']
688 $warnings[$warning[
'warning']] = $localFile->getName();
691 if ( isset( $warnings[
'no-change'] ) ) {
693 $file = $warnings[
'no-change'];
694 unset( $warnings[
'no-change'] );
696 $warnings[
'nochange'] = [
697 'timestamp' =>
wfTimestamp( TS_ISO_8601, $file->getTimestamp() )
701 if ( isset( $warnings[
'duplicate-version'] ) ) {
704 foreach ( $warnings[
'duplicate-version'] as $dupe ) {
706 'timestamp' =>
wfTimestamp( TS_ISO_8601, $dupe->getTimestamp() )
709 unset( $warnings[
'duplicate-version'] );
712 $warnings[
'duplicateversions'] = $dupes;
726 switch ( get_class(
$e ) ) {
727 case UploadStashFileNotFoundException::class:
728 $wrap =
'apierror-stashedfilenotfound';
730 case UploadStashBadPathException::class:
731 $wrap =
'apierror-stashpathinvalid';
733 case UploadStashFileException::class:
734 $wrap =
'apierror-stashfilestorage';
736 case UploadStashZeroLengthFileException::class:
737 $wrap =
'apierror-stashzerolength';
739 case UploadStashNotLoggedInException::class:
741 [
'apierror-mustbeloggedin', $this->
msg(
'action-upload' ) ],
'stashnotloggedin'
743 case UploadStashWrongOwnerException::class:
744 $wrap =
'apierror-stashwrongowner';
746 case UploadStashNoSuchKeyException::class:
747 $wrap =
'apierror-stashnosuchfilekey';
750 $wrap = [
'uploadstash-exception', get_class(
$e ) ];
753 return StatusValue::newFatal(
767 if ( is_null( $this->mParams[
'text'] ) ) {
768 $this->mParams[
'text'] = $this->mParams[
'comment'];
772 $file = $this->mUpload->getLocalFile();
780 $this->mParams[
'watchlist'], $file->getTitle(),
'watchdefault'
783 if ( !$watch && $this->mParams[
'watchlist'] ==
'preferences' && !$file->exists() ) {
791 if ( $this->mParams[
'watch'] ) {
795 if ( $this->mParams[
'tags'] ) {
803 if ( $this->mParams[
'async'] ) {
805 if ( $progress && $progress[
'result'] ===
'Poll' ) {
806 $this->
dieWithError(
'apierror-upload-inprogress',
'publishfailed' );
810 $this->mParams[
'filekey'],
811 [
'result' =>
'Poll',
'stage' =>
'queued',
'status' => Status::newGood() ]
814 Title::makeTitle(
NS_FILE, $this->mParams[
'filename'] ),
816 'filename' => $this->mParams[
'filename'],
817 'filekey' => $this->mParams[
'filekey'],
818 'comment' => $this->mParams[
'comment'],
819 'tags' => $this->mParams[
'tags'],
820 'text' => $this->mParams[
'text'],
825 $result[
'result'] =
'Poll';
826 $result[
'stage'] =
'queued';
829 $status = $this->mUpload->performUpload( $this->mParams[
'comment'],
830 $this->mParams[
'text'], $watch, $this->
getUser(), $this->mParams[
'tags'] );
835 $result[
'result'] =
'Success';
838 $result[
'filename'] = $file->getName();
839 if ( $warnings && count( $warnings ) > 0 ) {
840 $result[
'warnings'] = $warnings;
881 'ignorewarnings' =>
false,
906 'checkstatus' =>
false,
918 'action=upload&filename=Wiki.png' .
919 '&url=http%3A//upload.wikimedia.org/wikipedia/en/b/bc/Wiki.png&token=123ABC'
920 =>
'apihelp-upload-example-url',
921 'action=upload&filename=Wiki.png&filekey=filekey&ignorewarnings=1&token=123ABC'
922 =>
'apihelp-upload-example-filekey',
927 return 'https://www.mediawiki.org/wiki/Special:MyLanguage/API:Upload';
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
This abstract class implements many basic API functions, and is the base of all API classes.
const PARAM_DEPRECATED
(boolean) Is the parameter deprecated (will show a warning)?
const PARAM_MAX
(integer) Max value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
dieWithError( $msg, $code=null, $data=null, $httpCode=null)
Abort execution with an error.
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
getMain()
Get the main module.
const PARAM_TYPE
(string|string[]) Either an array of allowed value strings, or a string type as described below.
getErrorFormatter()
Get the error formatter.
const PARAM_DFLT
(null|boolean|integer|string) Default value of the parameter.
extractRequestParams( $parseLimit=true)
Using getAllowedParams(), this function makes an array of the values provided by the user,...
const PARAM_MIN
(integer) Lowest value allowed for the parameter, for PARAM_TYPE 'integer' and 'limit'.
getResult()
Get the result object.
getWatchlistValue( $watchlist, $titleObj, $userOption=null)
Return true if we're to watch the page, false if not, null if no change.
getModuleName()
Get the name of the module being executed by this instance.
dieStatus(StatusValue $status)
Throw an ApiUsageException based on the Status object.
dieBlocked(Block $block)
Throw an ApiUsageException, which will (if uncaught) call the main module's error handler and die wit...
requireOnlyOneParameter( $params, $required)
Die if none or more than one of a certain set of parameters is set and not false.
const PARAM_ISMULTI
(boolean) Accept multiple pipe-separated values for this parameter (e.g.
Extension of Message implementing IApiMessage.
static create( $msg, $code=null, array $data=null)
Create an IApiMessage for the message.
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
performStash( $failureMode, &$data=null)
Stash the file and add the file key, or error information if it fails, to the data.
execute()
Evaluates the parameters, performs the requested query, and sets up the result.
checkPermissions( $user)
Checks that the user has permissions to perform this upload.
dieRecoverableError( $errors, $parameter=null)
Throw an error that the user can recover from by providing a better value for $parameter.
verifyUpload()
Performs file verification, dies on error.
UploadBase UploadFromChunks $mUpload
getAllowedParams()
Returns an array of allowed parameters (parameter name) => (default value) or (parameter name) => (ar...
transformWarnings( $warnings)
handleStashException( $e)
Handles a stash exception, giving a useful error to the user.
getHelpUrls()
Return links to more detailed help pages about the module.
dieStatusWithCode( $status, $overrideCode, $moreExtraData=null)
Like dieStatus(), but always uses $overrideCode for the error code, unless the code comes from IApiMe...
isWriteMode()
Indicates whether this module requires write mode.
getWarningsResult( $warnings)
Get Warnings Result.
getContextResult()
Get an upload result based on upload context.
getChunkResult( $warnings)
Get the result of a chunk upload.
getExamplesMessages()
Returns usage examples for this module.
selectUploadModule()
Select an upload module and set it to mUpload.
getStashResult( $warnings)
Get Stash Result, throws an exception if the file could not be stashed.
needsToken()
Returns the token type this module requires in order to execute.
performUpload( $warnings)
Perform the actual upload.
checkVerification(array $verification)
Performs file verification, dies on error.
mustBePosted()
Indicates whether this module must be called with a POST request.
getApiWarnings()
Check warnings.
Assemble the segments of a chunked upload.
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
exportSession()
Export the resolved user IP, HTTP headers, user ID, and session ID.
getContext()
Get the base IContextSource object.
static singleton( $domain=false)
Upload a file from the upload stash into the local file repo.
UploadBase and subclasses are the backend of MediaWiki's file uploads.
static getSessionStatus(User $user, $statusKey)
Get the current status of a chunked upload (used for polling)
static isEnabled()
Returns true if uploads are enabled.
const WINDOWS_NONASCII_FILENAME
static getMaxUploadSize( $forType=null)
Get the MediaWiki maximum uploaded file size for given type of upload, based on $wgMaxUploadSize.
static isThrottled( $user)
Returns true if the user has surpassed the upload rate limit, false otherwise.
const MIN_LENGTH_PARTNAME
static setSessionStatus(User $user, $statusKey, $value)
Set the current status of a chunked upload (used for polling)
Implements uploading from chunks.
Implements regular file uploads.
Implements uploading from previously stored file.
Implements uploading from a HTTP resource.
initialize( $name, $url)
Entry point for API upload.
static isAllowedHost( $url)
Checks whether the URL is for an allowed host The domains in the whitelist can include wildcard chara...
static isAllowedUrl( $url)
Checks whether the URL is not allowed.
static isEnabled()
Checks if the upload from URL feature is enabled.
static newFatalPermissionDeniedStatus( $permission)
Factory function for fatal permission-denied errors.
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
namespace being checked & $result
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
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. '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
returning false will NOT prevent logging $e