MediaWiki  1.32.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->addWikiText( '<div class="error">' .
124  $status->getWikiText( 'filedeleteerror-short', 'filedeleteerror-long' )
125  . '</div>' );
126  }
127  if ( $status->isOK() ) {
128  $wgOut->setPageTitle( wfMessage( 'actioncomplete' ) );
129  $wgOut->addHTML( $this->prepareMessage( 'filedelete-success' ) );
130  // Return to the main page if we just deleted all versions of the
131  // file, otherwise go back to the description page
132  $wgOut->addReturnTo( $this->oldimage ? $this->title : Title::newMainPage() );
133 
134  WatchAction::doWatchOrUnwatch( $wgRequest->getCheck( 'wpWatch' ), $this->title, $wgUser );
135  }
136  return;
137  }
138 
139  $this->showForm();
140  $this->showLogEntries();
141  }
142 
156  public static function doDelete( &$title, &$file, &$oldimage, $reason,
157  $suppress, User $user = null, $tags = []
158  ) {
159  if ( $user === null ) {
160  global $wgUser;
161  $user = $wgUser;
162  }
163 
164  if ( $oldimage ) {
165  $page = null;
166  $status = $file->deleteOld( $oldimage, $reason, $suppress, $user );
167  if ( $status->ok ) {
168  // Need to do a log item
169  $logComment = wfMessage( 'deletedrevision', $oldimage )->inContentLanguage()->text();
170  if ( trim( $reason ) != '' ) {
171  $logComment .= wfMessage( 'colon-separator' )
172  ->inContentLanguage()->text() . $reason;
173  }
174 
175  $logtype = $suppress ? 'suppress' : 'delete';
176 
177  $logEntry = new ManualLogEntry( $logtype, 'delete' );
178  $logEntry->setPerformer( $user );
179  $logEntry->setTarget( $title );
180  $logEntry->setComment( $logComment );
181  $logEntry->setTags( $tags );
182  $logid = $logEntry->insert();
183  $logEntry->publish( $logid );
184 
185  $status->value = $logid;
186  }
187  } else {
188  $status = Status::newFatal( 'cannotdelete',
190  );
191  $page = WikiPage::factory( $title );
192  $dbw = wfGetDB( DB_MASTER );
193  $dbw->startAtomic( __METHOD__ );
194  // delete the associated article first
195  $error = '';
196  $deleteStatus = $page->doDeleteArticleReal( $reason, $suppress, 0, false, $error,
197  $user, $tags );
198  // doDeleteArticleReal() returns a non-fatal error status if the page
199  // or revision is missing, so check for isOK() rather than isGood()
200  if ( $deleteStatus->isOK() ) {
201  $status = $file->delete( $reason, $suppress, $user );
202  if ( $status->isOK() ) {
203  if ( $deleteStatus->value === null ) {
204  // No log ID from doDeleteArticleReal(), probably
205  // because the page/revision didn't exist, so create
206  // one here.
207  $logtype = $suppress ? 'suppress' : 'delete';
208  $logEntry = new ManualLogEntry( $logtype, 'delete' );
209  $logEntry->setPerformer( $user );
210  $logEntry->setTarget( clone $title );
211  $logEntry->setComment( $reason );
212  $logEntry->setTags( $tags );
213  $logid = $logEntry->insert();
214  $dbw->onTransactionPreCommitOrIdle(
215  function () use ( $logEntry, $logid ) {
216  $logEntry->publish( $logid );
217  },
218  __METHOD__
219  );
220  $status->value = $logid;
221  } else {
222  $status->value = $deleteStatus->value; // log id
223  }
224  $dbw->endAtomic( __METHOD__ );
225  } else {
226  // Page deleted but file still there? rollback page delete
227  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
228  $lbFactory->rollbackMasterChanges( __METHOD__ );
229  }
230  } else {
231  // Done; nothing changed
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  $conf = RequestContext::getMain()->getConfig();
250  $oldCommentSchema = $conf->get( 'CommentTableSchemaMigrationStage' ) === MIGRATION_OLD;
251 
252  $wgOut->addModules( 'mediawiki.action.delete.file' );
253 
254  $checkWatch = $wgUser->getBoolOption( 'watchdeletion' ) || $wgUser->isWatched( $this->title );
255 
256  $wgOut->enableOOUI();
257 
259  $wgOut->msg( 'filedelete-reason-dropdown' )->inContentLanguage()->text(),
260  [ 'other' => $wgOut->msg( 'filedelete-reason-otherlist' )->inContentLanguage()->text() ]
261  );
263 
264  $fields[] = new OOUI\LabelWidget( [ 'label' => new OOUI\HtmlSnippet(
265  $this->prepareMessage( 'filedelete-intro' ) ) ]
266  );
267 
268  $fields[] = new OOUI\FieldLayout(
269  new OOUI\DropdownInputWidget( [
270  'name' => 'wpDeleteReasonList',
271  'inputId' => 'wpDeleteReasonList',
272  'tabIndex' => 1,
273  'infusable' => true,
274  'value' => '',
275  'options' => $options,
276  ] ),
277  [
278  'label' => $wgOut->msg( 'filedelete-comment' )->text(),
279  'align' => 'top',
280  ]
281  );
282 
283  // HTML maxlength uses "UTF-16 code units", which means that characters outside BMP
284  // (e.g. emojis) count for two each. This limit is overridden in JS to instead count
285  // Unicode codepoints (or 255 UTF-8 bytes for old schema).
286  $fields[] = new OOUI\FieldLayout(
287  new OOUI\TextInputWidget( [
288  'name' => 'wpReason',
289  'inputId' => 'wpReason',
290  'tabIndex' => 2,
291  'maxLength' => $oldCommentSchema ? 255 : CommentStore::COMMENT_CHARACTER_LIMIT,
292  'infusable' => true,
293  'value' => $wgRequest->getText( 'wpReason' ),
294  'autofocus' => true,
295  ] ),
296  [
297  'label' => $wgOut->msg( 'filedelete-otherreason' )->text(),
298  'align' => 'top',
299  ]
300  );
301 
302  if ( $wgUser->isAllowed( 'suppressrevision' ) ) {
303  $fields[] = new OOUI\FieldLayout(
304  new OOUI\CheckboxInputWidget( [
305  'name' => 'wpSuppress',
306  'inputId' => 'wpSuppress',
307  'tabIndex' => 3,
308  'selected' => false,
309  ] ),
310  [
311  'label' => $wgOut->msg( 'revdelete-suppress' )->text(),
312  'align' => 'inline',
313  'infusable' => true,
314  ]
315  );
316  }
317 
318  if ( $wgUser->isLoggedIn() ) {
319  $fields[] = new OOUI\FieldLayout(
320  new OOUI\CheckboxInputWidget( [
321  'name' => 'wpWatch',
322  'inputId' => 'wpWatch',
323  'tabIndex' => 3,
324  'selected' => $checkWatch,
325  ] ),
326  [
327  'label' => $wgOut->msg( 'watchthis' )->text(),
328  'align' => 'inline',
329  'infusable' => true,
330  ]
331  );
332  }
333 
334  $fields[] = new OOUI\FieldLayout(
335  new OOUI\ButtonInputWidget( [
336  'name' => 'mw-filedelete-submit',
337  'inputId' => 'mw-filedelete-submit',
338  'tabIndex' => 4,
339  'value' => $wgOut->msg( 'filedelete-submit' )->text(),
340  'label' => $wgOut->msg( 'filedelete-submit' )->text(),
341  'flags' => [ 'primary', 'destructive' ],
342  'type' => 'submit',
343  ] ),
344  [
345  'align' => 'top',
346  ]
347  );
348 
349  $fieldset = new OOUI\FieldsetLayout( [
350  'label' => $wgOut->msg( 'filedelete-legend' )->text(),
351  'items' => $fields,
352  ] );
353 
354  $form = new OOUI\FormLayout( [
355  'method' => 'post',
356  'action' => $this->getAction(),
357  'id' => 'mw-img-deleteconfirm',
358  ] );
359  $form->appendContent(
360  $fieldset,
361  new OOUI\HtmlSnippet(
362  Html::hidden( 'wpEditToken', $wgUser->getEditToken( $this->oldimage ) )
363  )
364  );
365 
366  $wgOut->addHTML(
367  new OOUI\PanelLayout( [
368  'classes' => [ 'deletepage-wrapper' ],
369  'expanded' => false,
370  'padded' => true,
371  'framed' => true,
372  'content' => $form,
373  ] )
374  );
375 
376  if ( $wgUser->isAllowed( 'editinterface' ) ) {
377  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
378  $link = $linkRenderer->makeKnownLink(
379  $wgOut->msg( 'filedelete-reason-dropdown' )->inContentLanguage()->getTitle(),
380  wfMessage( 'filedelete-edit-reasonlist' )->text(),
381  [],
382  [ 'action' => 'edit' ]
383  );
384  $wgOut->addHTML( '<p class="mw-filedelete-editreasons">' . $link . '</p>' );
385  }
386  }
387 
391  private function showLogEntries() {
392  global $wgOut;
393  $deleteLogPage = new LogPage( 'delete' );
394  $wgOut->addHTML( '<h2>' . $deleteLogPage->getName()->escaped() . "</h2>\n" );
395  LogEventsList::showLogExtract( $wgOut, 'delete', $this->title );
396  }
397 
406  private function prepareMessage( $message ) {
407  global $wgLang;
408  if ( $this->oldimage ) {
409  # Message keys used:
410  # 'filedelete-intro-old', 'filedelete-nofile-old', 'filedelete-success-old'
411  return wfMessage(
412  "{$message}-old",
413  wfEscapeWikiText( $this->title->getText() ),
414  $wgLang->date( $this->getTimestamp(), true ),
415  $wgLang->time( $this->getTimestamp(), true ),
416  wfExpandUrl( $this->file->getArchiveUrl( $this->oldimage ), PROTO_CURRENT ) )->parseAsBlock();
417  } else {
418  return wfMessage(
419  $message,
420  wfEscapeWikiText( $this->title->getText() )
421  )->parseAsBlock();
422  }
423  }
424 
428  private function setHeaders() {
429  global $wgOut;
430  $wgOut->setPageTitle( wfMessage( 'filedelete', $this->title->getText() ) );
431  $wgOut->setRobotPolicy( 'noindex,nofollow' );
432  $wgOut->addBacklinkSubtitle( $this->title );
433  }
434 
441  public static function isValidOldSpec( $oldimage ) {
442  return strlen( $oldimage ) >= 16
443  && strpos( $oldimage, '/' ) === false
444  && strpos( $oldimage, '\\' ) === false;
445  }
446 
457  public static function haveDeletableFile( &$file, &$oldfile, $oldimage ) {
458  return $oldimage
459  ? $oldfile && $oldfile->exists() && $oldfile->isLocal()
460  : $file && $file->exists() && $file->isLocal();
461  }
462 
468  private function getAction() {
469  $q = [];
470  $q['action'] = 'delete';
471 
472  if ( $this->oldimage ) {
473  $q['oldimage'] = $this->oldimage;
474  }
475 
476  return $this->title->getLocalURL( $q );
477  }
478 
484  private function getTimestamp() {
485  return $this->oldfile->getTimestamp();
486  }
487 }
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:1305
$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:244
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:59
Xml\listDropDownOptionsOoui
static listDropDownOptionsOoui( $options)
Convert options for a drop-down box into a format accepted by OOUI\DropdownInputWidget etc.
Definition: Xml.php:583
captcha-old.count
count
Definition: captcha-old.py:249
Title\newMainPage
static newMainPage()
Create a new Title for the Main Page.
Definition: Title.php:597
$wgUploadMaintenance
$wgUploadMaintenance
To disable file delete/restore temporarily.
Definition: DefaultSettings.php:8587
Title\getPrefixedText
getPrefixedText()
Get the prefixed title with spaces.
Definition: Title.php:1694
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:1237
$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:2036
File\delete
delete( $reason, $suppress=false, $user=null)
Delete all versions of the file.
Definition: File.php:1950
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:484
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:896
FileDeleteForm\getAction
getAction()
Prepare the form action.
Definition: FileDeleteForm.php:468
File
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition: File.php:51
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:127
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2693
$wgLang
$wgLang
Definition: Setup.php:902
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:606
DB_MASTER
const DB_MASTER
Definition: defines.php:26
FileDeleteForm\$oldfile
File $oldfile
Definition: FileDeleteForm.php:46
MIGRATION_OLD
const MIGRATION_OLD
Definition: Defines.php:315
Html\hidden
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:795
title
title
Definition: parserTests.txt:239
FileDeleteForm\prepareMessage
prepareMessage( $message)
Prepare a message referring to the file being deleted, showing an appropriate message depending upon ...
Definition: FileDeleteForm.php:406
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:1617
FileDeleteForm\$oldimage
$oldimage
Definition: FileDeleteForm.php:47
RequestContext\getMain
static getMain()
Get the RequestContext object associated with the main request.
Definition: RequestContext.php:432
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:326
Title
Represents a title within MediaWiki.
Definition: Title.php:39
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:2036
FileDeleteForm\showLogEntries
showLogEntries()
Show deletion log fragments pertaining to the current file.
Definition: FileDeleteForm.php:391
File\isLocal
isLocal()
Returns true if the file comes from the local file repository.
Definition: File.php:1856
FileDeleteForm\setHeaders
setHeaders()
Set headers, titles and other bits.
Definition: FileDeleteForm.php:428
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:3090
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:2036
FileDeleteForm\$title
Title $title
Definition: FileDeleteForm.php:36
ManualLogEntry
Class for creating new log entries and inserting them into the database.
Definition: LogEntry.php:437
FileDeleteForm\doDelete
static doDelete(&$title, &$file, &$oldimage, $reason, $suppress, User $user=null, $tags=[])
Really delete the file.
Definition: FileDeleteForm.php:156
$wgRequest
if(! $wgDBerrorLogTZ) $wgRequest
Definition: Setup.php:747
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:907
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:47
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:457
wfExpandUrl
wfExpandUrl( $url, $defaultProto=PROTO_CURRENT)
Expand a potentially local URL to a fully-qualified URL.
Definition: GlobalFunctions.php:512
Xml\listDropDownOptions
static listDropDownOptions( $list, $params=[])
Build options for a drop-down box from a textual list.
Definition: Xml.php:541
FileDeleteForm\isValidOldSpec
static isValidOldSpec( $oldimage)
Is the provided oldimage value valid?
Definition: FileDeleteForm.php:441