MediaWiki  1.33.0
FileDeleteForm.php
Go to the documentation of this file.
1 <?php
25 
32 
36  private $title = null;
37 
41  private $file = null;
42 
46  private $oldfile = null;
47  private $oldimage = '';
48 
52  public function __construct( $file ) {
53  $this->title = $file->getTitle();
54  $this->file = $file;
55  }
56 
61  public function execute() {
62  global $wgOut, $wgRequest, $wgUser, $wgUploadMaintenance;
63 
64  $permissionErrors = $this->title->getUserPermissionsErrors( 'delete', $wgUser );
65  if ( count( $permissionErrors ) ) {
66  throw new PermissionsError( 'delete', $permissionErrors );
67  }
68 
69  if ( wfReadOnly() ) {
70  throw new ReadOnlyError;
71  }
72 
73  if ( $wgUploadMaintenance ) {
74  throw new ErrorPageError( 'filedelete-maintenance-title', 'filedelete-maintenance' );
75  }
76 
77  $this->setHeaders();
78 
79  $this->oldimage = $wgRequest->getText( 'oldimage', false );
80  $token = $wgRequest->getText( 'wpEditToken' );
81  # Flag to hide all contents of the archived revisions
82  $suppress = $wgRequest->getCheck( 'wpSuppress' ) && $wgUser->isAllowed( 'suppressrevision' );
83 
84  if ( $this->oldimage ) {
85  $this->oldfile = RepoGroup::singleton()->getLocalRepo()->newFromArchiveName(
86  $this->title,
87  $this->oldimage
88  );
89  }
90 
91  if ( !self::haveDeletableFile( $this->file, $this->oldfile, $this->oldimage ) ) {
92  $wgOut->addHTML( $this->prepareMessage( 'filedelete-nofile' ) );
93  $wgOut->addReturnTo( $this->title );
94  return;
95  }
96 
97  // Perform the deletion if appropriate
98  if ( $wgRequest->wasPosted() && $wgUser->matchEditToken( $token, $this->oldimage ) ) {
99  $deleteReasonList = $wgRequest->getText( 'wpDeleteReasonList' );
100  $deleteReason = $wgRequest->getText( 'wpReason' );
101 
102  if ( $deleteReasonList == 'other' ) {
103  $reason = $deleteReason;
104  } elseif ( $deleteReason != '' ) {
105  // Entry from drop down menu + additional comment
106  $reason = $deleteReasonList . wfMessage( 'colon-separator' )
107  ->inContentLanguage()->text() . $deleteReason;
108  } else {
109  $reason = $deleteReasonList;
110  }
111 
113  $this->title,
114  $this->file,
115  $this->oldimage,
116  $reason,
117  $suppress,
118  $wgUser
119  );
120 
121  if ( !$status->isGood() ) {
122  $wgOut->addHTML( '<h2>' . $this->prepareMessage( 'filedeleteerror-short' ) . "</h2>\n" );
123  $wgOut->wrapWikiTextAsInterface(
124  'error',
125  $status->getWikiText( 'filedeleteerror-short', 'filedeleteerror-long' )
126  );
127  }
128  if ( $status->isOK() ) {
129  $wgOut->setPageTitle( wfMessage( 'actioncomplete' ) );
130  $wgOut->addHTML( $this->prepareMessage( 'filedelete-success' ) );
131  // Return to the main page if we just deleted all versions of the
132  // file, otherwise go back to the description page
133  $wgOut->addReturnTo( $this->oldimage ? $this->title : Title::newMainPage() );
134 
135  WatchAction::doWatchOrUnwatch( $wgRequest->getCheck( 'wpWatch' ), $this->title, $wgUser );
136  }
137  return;
138  }
139 
140  $this->showForm();
141  $this->showLogEntries();
142  }
143 
157  public static function doDelete( &$title, &$file, &$oldimage, $reason,
158  $suppress, User $user = null, $tags = []
159  ) {
160  if ( $user === null ) {
161  global $wgUser;
162  $user = $wgUser;
163  }
164 
165  if ( $oldimage ) {
166  $page = null;
167  $status = $file->deleteOld( $oldimage, $reason, $suppress, $user );
168  if ( $status->ok ) {
169  // Need to do a log item
170  $logComment = wfMessage( 'deletedrevision', $oldimage )->inContentLanguage()->text();
171  if ( trim( $reason ) != '' ) {
172  $logComment .= wfMessage( 'colon-separator' )
173  ->inContentLanguage()->text() . $reason;
174  }
175 
176  $logtype = $suppress ? 'suppress' : 'delete';
177 
178  $logEntry = new ManualLogEntry( $logtype, 'delete' );
179  $logEntry->setPerformer( $user );
180  $logEntry->setTarget( $title );
181  $logEntry->setComment( $logComment );
182  $logEntry->setTags( $tags );
183  $logid = $logEntry->insert();
184  $logEntry->publish( $logid );
185 
186  $status->value = $logid;
187  }
188  } else {
189  $status = Status::newFatal( 'cannotdelete',
191  );
192  $page = WikiPage::factory( $title );
193  $dbw = wfGetDB( DB_MASTER );
194  $dbw->startAtomic( __METHOD__ );
195  // delete the associated article first
196  $error = '';
197  $deleteStatus = $page->doDeleteArticleReal( $reason, $suppress, 0, false, $error,
198  $user, $tags );
199  // doDeleteArticleReal() returns a non-fatal error status if the page
200  // or revision is missing, so check for isOK() rather than isGood()
201  if ( $deleteStatus->isOK() ) {
202  $status = $file->delete( $reason, $suppress, $user );
203  if ( $status->isOK() ) {
204  if ( $deleteStatus->value === null ) {
205  // No log ID from doDeleteArticleReal(), probably
206  // because the page/revision didn't exist, so create
207  // one here.
208  $logtype = $suppress ? 'suppress' : 'delete';
209  $logEntry = new ManualLogEntry( $logtype, 'delete' );
210  $logEntry->setPerformer( $user );
211  $logEntry->setTarget( clone $title );
212  $logEntry->setComment( $reason );
213  $logEntry->setTags( $tags );
214  $logid = $logEntry->insert();
215  $dbw->onTransactionPreCommitOrIdle(
216  function () use ( $logEntry, $logid ) {
217  $logEntry->publish( $logid );
218  },
219  __METHOD__
220  );
221  $status->value = $logid;
222  } else {
223  $status->value = $deleteStatus->value; // log id
224  }
225  $dbw->endAtomic( __METHOD__ );
226  } else {
227  // Page deleted but file still there? rollback page delete
228  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
229  $lbFactory->rollbackMasterChanges( __METHOD__ );
230  }
231  } else {
232  $dbw->endAtomic( __METHOD__ );
233  }
234  }
235 
236  if ( $status->isOK() ) {
237  Hooks::run( 'FileDeleteComplete', [ &$file, &$oldimage, &$page, &$user, &$reason ] );
238  }
239 
240  return $status;
241  }
242 
246  private function showForm() {
247  global $wgOut, $wgUser, $wgRequest;
248 
249  $wgOut->addModules( 'mediawiki.action.delete.file' );
250 
251  $checkWatch = $wgUser->getBoolOption( 'watchdeletion' ) || $wgUser->isWatched( $this->title );
252 
253  $wgOut->enableOOUI();
254 
256  $wgOut->msg( 'filedelete-reason-dropdown' )->inContentLanguage()->text(),
257  [ 'other' => $wgOut->msg( 'filedelete-reason-otherlist' )->inContentLanguage()->text() ]
258  );
260 
261  $fields[] = new OOUI\LabelWidget( [ 'label' => new OOUI\HtmlSnippet(
262  $this->prepareMessage( 'filedelete-intro' ) ) ]
263  );
264 
265  $fields[] = new OOUI\FieldLayout(
266  new OOUI\DropdownInputWidget( [
267  'name' => 'wpDeleteReasonList',
268  'inputId' => 'wpDeleteReasonList',
269  'tabIndex' => 1,
270  'infusable' => true,
271  'value' => '',
272  'options' => $options,
273  ] ),
274  [
275  'label' => $wgOut->msg( 'filedelete-comment' )->text(),
276  'align' => 'top',
277  ]
278  );
279 
280  // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
281  // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
282  // Unicode codepoints.
283  $fields[] = new OOUI\FieldLayout(
284  new OOUI\TextInputWidget( [
285  'name' => 'wpReason',
286  'inputId' => 'wpReason',
287  'tabIndex' => 2,
289  'infusable' => true,
290  'value' => $wgRequest->getText( 'wpReason' ),
291  'autofocus' => true,
292  ] ),
293  [
294  'label' => $wgOut->msg( 'filedelete-otherreason' )->text(),
295  'align' => 'top',
296  ]
297  );
298 
299  if ( $wgUser->isAllowed( 'suppressrevision' ) ) {
300  $fields[] = new OOUI\FieldLayout(
301  new OOUI\CheckboxInputWidget( [
302  'name' => 'wpSuppress',
303  'inputId' => 'wpSuppress',
304  'tabIndex' => 3,
305  'selected' => false,
306  ] ),
307  [
308  'label' => $wgOut->msg( 'revdelete-suppress' )->text(),
309  'align' => 'inline',
310  'infusable' => true,
311  ]
312  );
313  }
314 
315  if ( $wgUser->isLoggedIn() ) {
316  $fields[] = new OOUI\FieldLayout(
317  new OOUI\CheckboxInputWidget( [
318  'name' => 'wpWatch',
319  'inputId' => 'wpWatch',
320  'tabIndex' => 3,
321  'selected' => $checkWatch,
322  ] ),
323  [
324  'label' => $wgOut->msg( 'watchthis' )->text(),
325  'align' => 'inline',
326  'infusable' => true,
327  ]
328  );
329  }
330 
331  $fields[] = new OOUI\FieldLayout(
332  new OOUI\ButtonInputWidget( [
333  'name' => 'mw-filedelete-submit',
334  'inputId' => 'mw-filedelete-submit',
335  'tabIndex' => 4,
336  'value' => $wgOut->msg( 'filedelete-submit' )->text(),
337  'label' => $wgOut->msg( 'filedelete-submit' )->text(),
338  'flags' => [ 'primary', 'destructive' ],
339  'type' => 'submit',
340  ] ),
341  [
342  'align' => 'top',
343  ]
344  );
345 
346  $fieldset = new OOUI\FieldsetLayout( [
347  'label' => $wgOut->msg( 'filedelete-legend' )->text(),
348  'items' => $fields,
349  ] );
350 
351  $form = new OOUI\FormLayout( [
352  'method' => 'post',
353  'action' => $this->getAction(),
354  'id' => 'mw-img-deleteconfirm',
355  ] );
356  $form->appendContent(
357  $fieldset,
358  new OOUI\HtmlSnippet(
359  Html::hidden( 'wpEditToken', $wgUser->getEditToken( $this->oldimage ) )
360  )
361  );
362 
363  $wgOut->addHTML(
364  new OOUI\PanelLayout( [
365  'classes' => [ 'deletepage-wrapper' ],
366  'expanded' => false,
367  'padded' => true,
368  'framed' => true,
369  'content' => $form,
370  ] )
371  );
372 
373  if ( $wgUser->isAllowed( 'editinterface' ) ) {
374  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
375  $link = $linkRenderer->makeKnownLink(
376  $wgOut->msg( 'filedelete-reason-dropdown' )->inContentLanguage()->getTitle(),
377  wfMessage( 'filedelete-edit-reasonlist' )->text(),
378  [],
379  [ 'action' => 'edit' ]
380  );
381  $wgOut->addHTML( '<p class="mw-filedelete-editreasons">' . $link . '</p>' );
382  }
383  }
384 
388  private function showLogEntries() {
389  global $wgOut;
390  $deleteLogPage = new LogPage( 'delete' );
391  $wgOut->addHTML( '<h2>' . $deleteLogPage->getName()->escaped() . "</h2>\n" );
392  LogEventsList::showLogExtract( $wgOut, 'delete', $this->title );
393  }
394 
403  private function prepareMessage( $message ) {
404  global $wgLang;
405  if ( $this->oldimage ) {
406  # Message keys used:
407  # 'filedelete-intro-old', 'filedelete-nofile-old', 'filedelete-success-old'
408  return wfMessage(
409  "{$message}-old",
410  wfEscapeWikiText( $this->title->getText() ),
411  $wgLang->date( $this->getTimestamp(), true ),
412  $wgLang->time( $this->getTimestamp(), true ),
413  wfExpandUrl( $this->file->getArchiveUrl( $this->oldimage ), PROTO_CURRENT ) )->parseAsBlock();
414  } else {
415  return wfMessage(
416  $message,
417  wfEscapeWikiText( $this->title->getText() )
418  )->parseAsBlock();
419  }
420  }
421 
425  private function setHeaders() {
426  global $wgOut;
427  $wgOut->setPageTitle( wfMessage( 'filedelete', $this->title->getText() ) );
428  $wgOut->setRobotPolicy( 'noindex,nofollow' );
429  $wgOut->addBacklinkSubtitle( $this->title );
430  }
431 
438  public static function isValidOldSpec( $oldimage ) {
439  return strlen( $oldimage ) >= 16
440  && strpos( $oldimage, '/' ) === false
441  && strpos( $oldimage, '\\' ) === false;
442  }
443 
454  public static function haveDeletableFile( &$file, &$oldfile, $oldimage ) {
455  return $oldimage
456  ? $oldfile && $oldfile->exists() && $oldfile->isLocal()
457  : $file && $file->exists() && $file->isLocal();
458  }
459 
465  private function getAction() {
466  $q = [];
467  $q['action'] = 'delete';
468 
469  if ( $this->oldimage ) {
470  $q['oldimage'] = $this->oldimage;
471  }
472 
473  return $this->title->getLocalURL( $q );
474  }
475 
481  private function getTimestamp() {
482  return $this->oldfile->getTimestamp();
483  }
484 }
ReadOnlyError
Show an error when the wiki is locked/read-only and the user tries to do something that requires writ...
Definition: ReadOnlyError.php:28
$status
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
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
file
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing we can concentrate it all in an extension file
Definition: hooks.txt:91
RepoGroup\singleton
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:61
Xml\listDropDownOptionsOoui
static listDropDownOptionsOoui( $options)
Convert options for a drop-down box into a format accepted by OOUI\DropdownInputWidget etc.
Definition: Xml.php:581
captcha-old.count
count
Definition: captcha-old.py:249
Title\newMainPage
static newMainPage()
Create a new Title for the Main Page.
Definition: Title.php:632
$wgUploadMaintenance
$wgUploadMaintenance
To disable file delete/restore temporarily.
Definition: DefaultSettings.php:8554
Title\getPrefixedText
getPrefixedText()
Get the prefixed title with spaces.
Definition: Title.php:1660
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:68
FileDeleteForm\__construct
__construct( $file)
Definition: FileDeleteForm.php:52
wfReadOnly
wfReadOnly()
Check whether the wiki is in read-only mode.
Definition: GlobalFunctions.php:1197
$linkRenderer
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 an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form before processing starts Return false to skip default processing and return $ret $linkRenderer
Definition: hooks.txt:1985
File\delete
delete( $reason, $suppress=false, $user=null)
Delete all versions of the file.
Definition: File.php:1942
PermissionsError
Show an error when a user tries to do something they do not have the necessary permissions for.
Definition: PermissionsError.php:28
FileDeleteForm\getTimestamp
getTimestamp()
Extract the timestamp of the old version.
Definition: FileDeleteForm.php:481
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
File\exists
exists()
Returns true if file exists in the repository.
Definition: File.php:892
FileDeleteForm\getAction
getAction()
Prepare the form action.
Definition: FileDeleteForm.php:465
File
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition: File.php:52
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:138
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
$wgLang
$wgLang
Definition: Setup.php:875
LogPage
Class to simplify the use of log pages.
Definition: LogPage.php:33
PROTO_CURRENT
const PROTO_CURRENT
Definition: Defines.php:222
FileDeleteForm
File deletion user interface.
Definition: FileDeleteForm.php:31
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
WatchAction\doWatchOrUnwatch
static doWatchOrUnwatch( $watch, Title $title, User $user)
Watch or unwatch a page.
Definition: WatchAction.php:89
LogEventsList\showLogExtract
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Definition: LogEventsList.php:627
DB_MASTER
const DB_MASTER
Definition: defines.php:26
FileDeleteForm\$oldfile
File $oldfile
Definition: FileDeleteForm.php:46
title
title
Definition: parserTests.txt:245
FileDeleteForm\prepareMessage
prepareMessage( $message)
Prepare a message referring to the file being deleted, showing an appropriate message depending upon ...
Definition: FileDeleteForm.php:403
FileDeleteForm\showForm
showForm()
Show the confirmation form.
Definition: FileDeleteForm.php:246
wfEscapeWikiText
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Definition: GlobalFunctions.php:1577
FileDeleteForm\$oldimage
$oldimage
Definition: FileDeleteForm.php:47
CommentStore\COMMENT_CHARACTER_LIMIT
const COMMENT_CHARACTER_LIMIT
Maximum length of a comment in UTF-8 characters.
Definition: CommentStore.php:37
File\getTitle
getTitle()
Return the associated title object.
Definition: File.php:327
Title
Represents a title within MediaWiki.
Definition: Title.php:40
FileDeleteForm\execute
execute()
Fulfil the request; shows the form or deletes the file, pending authentication, confirmation,...
Definition: FileDeleteForm.php:61
FileDeleteForm\$file
File $file
Definition: FileDeleteForm.php:41
$options
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:1985
FileDeleteForm\showLogEntries
showLogEntries()
Show deletion log fragments pertaining to the current file.
Definition: FileDeleteForm.php:388
File\isLocal
isLocal()
Returns true if the file comes from the local file repository.
Definition: File.php:1848
FileDeleteForm\setHeaders
setHeaders()
Set headers, titles and other bits.
Definition: FileDeleteForm.php:425
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:3053
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:1985
FileDeleteForm\$title
Title $title
Definition: FileDeleteForm.php:36
ManualLogEntry
Class for creating new log entries and inserting them into the database.
Definition: LogEntry.php:441
FileDeleteForm\doDelete
static doDelete(&$title, &$file, &$oldimage, $reason, $suppress, User $user=null, $tags=[])
Really delete the file.
Definition: FileDeleteForm.php:157
$wgRequest
if(! $wgDBerrorLogTZ) $wgRequest
Definition: Setup.php:728
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
$wgOut
$wgOut
Definition: Setup.php:880
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:48
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
FileDeleteForm\haveDeletableFile
static haveDeletableFile(&$file, &$oldfile, $oldimage)
Could we delete the file specified? If an oldimage value was provided, does it correspond to an exist...
Definition: FileDeleteForm.php:454
wfExpandUrl
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Definition: GlobalFunctions.php:515
Xml\listDropDownOptions
static listDropDownOptions( $list, $params=[])
Build options for a drop-down box from a textual list.
Definition: Xml.php:539
FileDeleteForm\isValidOldSpec
static isValidOldSpec( $oldimage)
Is the provided oldimage value valid?
Definition: FileDeleteForm.php:438