MediaWiki  1.27.2
SpecialRevisiondelete.php
Go to the documentation of this file.
1 <?php
32  protected $wasSaved = false;
33 
35  private $submitClicked;
36 
38  private $ids;
39 
41  private $archiveName;
42 
44  private $token;
45 
47  private $targetObj;
48 
50  private $typeName;
51 
53  private $checks;
54 
56  private $typeLabels;
57 
59  private $revDelList;
60 
62  private $mIsAllowed;
63 
65  private $otherReason;
66 
70  private static $UILabels = [
71  'revision' => [
72  'check-label' => 'revdelete-hide-text',
73  'success' => 'revdelete-success',
74  'failure' => 'revdelete-failure',
75  'text' => 'revdelete-text-text',
76  'selected'=> 'revdelete-selected-text',
77  ],
78  'archive' => [
79  'check-label' => 'revdelete-hide-text',
80  'success' => 'revdelete-success',
81  'failure' => 'revdelete-failure',
82  'text' => 'revdelete-text-text',
83  'selected'=> 'revdelete-selected-text',
84  ],
85  'oldimage' => [
86  'check-label' => 'revdelete-hide-image',
87  'success' => 'revdelete-success',
88  'failure' => 'revdelete-failure',
89  'text' => 'revdelete-text-file',
90  'selected'=> 'revdelete-selected-file',
91  ],
92  'filearchive' => [
93  'check-label' => 'revdelete-hide-image',
94  'success' => 'revdelete-success',
95  'failure' => 'revdelete-failure',
96  'text' => 'revdelete-text-file',
97  'selected'=> 'revdelete-selected-file',
98  ],
99  'logging' => [
100  'check-label' => 'revdelete-hide-name',
101  'success' => 'logdelete-success',
102  'failure' => 'logdelete-failure',
103  'text' => 'logdelete-text',
104  'selected' => 'logdelete-selected',
105  ],
106  ];
107 
108  public function __construct() {
109  parent::__construct( 'Revisiondelete', 'deletedhistory' );
110  }
111 
112  public function doesWrites() {
113  return true;
114  }
115 
116  public function execute( $par ) {
117  $this->useTransactionalTimeLimit();
118 
119  $this->checkPermissions();
120  $this->checkReadOnly();
121 
122  $output = $this->getOutput();
123  $user = $this->getUser();
124 
125  // Check blocks
126  if ( $user->isBlocked() ) {
127  throw new UserBlockedError( $user->getBlock() );
128  }
129 
130  $this->setHeaders();
131  $this->outputHeader();
132  $request = $this->getRequest();
133  $this->submitClicked = $request->wasPosted() && $request->getBool( 'wpSubmit' );
134  # Handle our many different possible input types.
135  $ids = $request->getVal( 'ids' );
136  if ( !is_null( $ids ) ) {
137  # Allow CSV, for backwards compatibility, or a single ID for show/hide links
138  $this->ids = explode( ',', $ids );
139  } else {
140  # Array input
141  $this->ids = array_keys( $request->getArray( 'ids', [] ) );
142  }
143  // $this->ids = array_map( 'intval', $this->ids );
144  $this->ids = array_unique( array_filter( $this->ids ) );
145 
146  $this->typeName = $request->getVal( 'type' );
147  $this->targetObj = Title::newFromText( $request->getText( 'target' ) );
148 
149  # For reviewing deleted files...
150  $this->archiveName = $request->getVal( 'file' );
151  $this->token = $request->getVal( 'token' );
152  if ( $this->archiveName && $this->targetObj ) {
153  $this->tryShowFile( $this->archiveName );
154 
155  return;
156  }
157 
158  $this->typeName = RevisionDeleter::getCanonicalTypeName( $this->typeName );
159 
160  # No targets?
161  if ( !$this->typeName || count( $this->ids ) == 0 ) {
162  throw new ErrorPageError( 'revdelete-nooldid-title', 'revdelete-nooldid-text' );
163  }
164 
165  # Allow the list type to adjust the passed target
166  $this->targetObj = RevisionDeleter::suggestTarget(
167  $this->typeName,
168  $this->targetObj,
169  $this->ids
170  );
171 
172  # We need a target page!
173  if ( $this->targetObj === null ) {
174  $output->addWikiMsg( 'undelete-header' );
175 
176  return;
177  }
178 
179  $this->typeLabels = self::$UILabels[$this->typeName];
180  $list = $this->getList();
181  $list->reset();
182  $this->mIsAllowed = $user->isAllowed( RevisionDeleter::getRestriction( $this->typeName ) );
183  $canViewSuppressedOnly = $this->getUser()->isAllowed( 'viewsuppressed' ) &&
184  !$this->getUser()->isAllowed( 'suppressrevision' );
185  $pageIsSuppressed = $list->areAnySuppressed();
186  $this->mIsAllowed = $this->mIsAllowed && !( $canViewSuppressedOnly && $pageIsSuppressed );
187 
188  $this->otherReason = $request->getVal( 'wpReason' );
189  # Give a link to the logs/hist for this page
190  $this->showConvenienceLinks();
191 
192  # Initialise checkboxes
193  $this->checks = [
194  # Messages: revdelete-hide-text, revdelete-hide-image, revdelete-hide-name
195  [ $this->typeLabels['check-label'], 'wpHidePrimary',
196  RevisionDeleter::getRevdelConstant( $this->typeName )
197  ],
198  [ 'revdelete-hide-comment', 'wpHideComment', Revision::DELETED_COMMENT ],
199  [ 'revdelete-hide-user', 'wpHideUser', Revision::DELETED_USER ]
200  ];
201  if ( $user->isAllowed( 'suppressrevision' ) ) {
202  $this->checks[] = [ 'revdelete-hide-restricted',
203  'wpHideRestricted', Revision::DELETED_RESTRICTED ];
204  }
205 
206  # Either submit or create our form
207  if ( $this->mIsAllowed && $this->submitClicked ) {
208  $this->submit( $request );
209  } else {
210  $this->showForm();
211  }
212 
213  $qc = $this->getLogQueryCond();
214  # Show relevant lines from the deletion log
215  $deleteLogPage = new LogPage( 'delete' );
216  $output->addHTML( "<h2>" . $deleteLogPage->getName()->escaped() . "</h2>\n" );
218  $output,
219  'delete',
220  $this->targetObj,
221  '', /* user */
222  [ 'lim' => 25, 'conds' => $qc, 'useMaster' => $this->wasSaved ]
223  );
224  # Show relevant lines from the suppression log
225  if ( $user->isAllowed( 'suppressionlog' ) ) {
226  $suppressLogPage = new LogPage( 'suppress' );
227  $output->addHTML( "<h2>" . $suppressLogPage->getName()->escaped() . "</h2>\n" );
229  $output,
230  'suppress',
231  $this->targetObj,
232  '',
233  [ 'lim' => 25, 'conds' => $qc, 'useMaster' => $this->wasSaved ]
234  );
235  }
236  }
237 
241  protected function showConvenienceLinks() {
242  # Give a link to the logs/hist for this page
243  if ( $this->targetObj ) {
244  // Also set header tabs to be for the target.
245  $this->getSkin()->setRelevantTitle( $this->targetObj );
246 
247  $links = [];
248  $links[] = Linker::linkKnown(
249  SpecialPage::getTitleFor( 'Log' ),
250  $this->msg( 'viewpagelogs' )->escaped(),
251  [],
252  [ 'page' => $this->targetObj->getPrefixedText() ]
253  );
254  if ( !$this->targetObj->isSpecialPage() ) {
255  # Give a link to the page history
256  $links[] = Linker::linkKnown(
257  $this->targetObj,
258  $this->msg( 'pagehist' )->escaped(),
259  [],
260  [ 'action' => 'history' ]
261  );
262  # Link to deleted edits
263  if ( $this->getUser()->isAllowed( 'undelete' ) ) {
264  $undelete = SpecialPage::getTitleFor( 'Undelete' );
265  $links[] = Linker::linkKnown(
266  $undelete,
267  $this->msg( 'deletedhist' )->escaped(),
268  [],
269  [ 'target' => $this->targetObj->getPrefixedDBkey() ]
270  );
271  }
272  }
273  # Logs themselves don't have histories or archived revisions
274  $this->getOutput()->addSubtitle( $this->getLanguage()->pipeList( $links ) );
275  }
276  }
277 
282  protected function getLogQueryCond() {
283  $conds = [];
284  // Revision delete logs for these item
285  $conds['log_type'] = [ 'delete', 'suppress' ];
286  $conds['log_action'] = $this->getList()->getLogAction();
287  $conds['ls_field'] = RevisionDeleter::getRelationType( $this->typeName );
288  $conds['ls_value'] = $this->ids;
289 
290  return $conds;
291  }
292 
300  protected function tryShowFile( $archiveName ) {
301  $repo = RepoGroup::singleton()->getLocalRepo();
302  $oimage = $repo->newFromArchiveName( $this->targetObj, $archiveName );
303  $oimage->load();
304  // Check if user is allowed to see this file
305  if ( !$oimage->exists() ) {
306  $this->getOutput()->addWikiMsg( 'revdelete-no-file' );
307 
308  return;
309  }
310  $user = $this->getUser();
311  if ( !$oimage->userCan( File::DELETED_FILE, $user ) ) {
312  if ( $oimage->isDeleted( File::DELETED_RESTRICTED ) ) {
313  throw new PermissionsError( 'suppressrevision' );
314  } else {
315  throw new PermissionsError( 'deletedtext' );
316  }
317  }
318  if ( !$user->matchEditToken( $this->token, $archiveName ) ) {
319  $lang = $this->getLanguage();
320  $this->getOutput()->addWikiMsg( 'revdelete-show-file-confirm',
321  $this->targetObj->getText(),
322  $lang->userDate( $oimage->getTimestamp(), $user ),
323  $lang->userTime( $oimage->getTimestamp(), $user ) );
324  $this->getOutput()->addHTML(
325  Xml::openElement( 'form', [
326  'method' => 'POST',
327  'action' => $this->getPageTitle()->getLocalURL( [
328  'target' => $this->targetObj->getPrefixedDBkey(),
329  'file' => $archiveName,
330  'token' => $user->getEditToken( $archiveName ),
331  ] )
332  ]
333  ) .
334  Xml::submitButton( $this->msg( 'revdelete-show-file-submit' )->text() ) .
335  '</form>'
336  );
337 
338  return;
339  }
340  $this->getOutput()->disable();
341  # We mustn't allow the output to be CDN cached, otherwise
342  # if an admin previews a deleted image, and it's cached, then
343  # a user without appropriate permissions can toddle off and
344  # nab the image, and CDN will serve it
345  $this->getRequest()->response()->header( 'Expires: ' . gmdate( 'D, d M Y H:i:s', 0 ) . ' GMT' );
346  $this->getRequest()->response()->header(
347  'Cache-Control: no-cache, no-store, max-age=0, must-revalidate'
348  );
349  $this->getRequest()->response()->header( 'Pragma: no-cache' );
350 
351  $key = $oimage->getStorageKey();
352  $path = $repo->getZonePath( 'deleted' ) . '/' . $repo->getDeletedHashPath( $key ) . $key;
353  $repo->streamFile( $path );
354  }
355 
360  protected function getList() {
361  if ( is_null( $this->revDelList ) ) {
362  $this->revDelList = RevisionDeleter::createList(
363  $this->typeName, $this->getContext(), $this->targetObj, $this->ids
364  );
365  }
366 
367  return $this->revDelList;
368  }
369 
374  protected function showForm() {
375  $userAllowed = true;
376 
377  // Messages: revdelete-selected-text, revdelete-selected-file, logdelete-selected
378  $out = $this->getOutput();
379  $out->wrapWikiMsg( "<strong>$1</strong>", [ $this->typeLabels['selected'],
380  $this->getLanguage()->formatNum( count( $this->ids ) ), $this->targetObj->getPrefixedText() ] );
381 
382  $this->addHelpLink( 'Help:RevisionDelete' );
383  $out->addHTML( "<ul>" );
384 
385  $numRevisions = 0;
386  // Live revisions...
387  $list = $this->getList();
388  // @codingStandardsIgnoreStart Generic.CodeAnalysis.ForLoopWithTestFunctionCall.NotAllowed
389  for ( $list->reset(); $list->current(); $list->next() ) {
390  // @codingStandardsIgnoreEnd
391  $item = $list->current();
392 
393  if ( !$item->canView() ) {
394  if ( !$this->submitClicked ) {
395  throw new PermissionsError( 'suppressrevision' );
396  }
397  $userAllowed = false;
398  }
399 
400  $numRevisions++;
401  $out->addHTML( $item->getHTML() );
402  }
403 
404  if ( !$numRevisions ) {
405  throw new ErrorPageError( 'revdelete-nooldid-title', 'revdelete-nooldid-text' );
406  }
407 
408  $out->addHTML( "</ul>" );
409  // Explanation text
410  $this->addUsageText();
411 
412  // Normal sysops can always see what they did, but can't always change it
413  if ( !$userAllowed ) {
414  return;
415  }
416 
417  // Show form if the user can submit
418  if ( $this->mIsAllowed ) {
419  $out->addModuleStyles( 'mediawiki.special' );
420 
421  $form = Xml::openElement( 'form', [ 'method' => 'post',
422  'action' => $this->getPageTitle()->getLocalURL( [ 'action' => 'submit' ] ),
423  'id' => 'mw-revdel-form-revisions' ] ) .
424  Xml::fieldset( $this->msg( 'revdelete-legend' )->text() ) .
425  $this->buildCheckBoxes() .
426  Xml::openElement( 'table' ) .
427  "<tr>\n" .
428  '<td class="mw-label">' .
429  Xml::label( $this->msg( 'revdelete-log' )->text(), 'wpRevDeleteReasonList' ) .
430  '</td>' .
431  '<td class="mw-input">' .
432  Xml::listDropDown( 'wpRevDeleteReasonList',
433  $this->msg( 'revdelete-reason-dropdown' )->inContentLanguage()->text(),
434  $this->msg( 'revdelete-reasonotherlist' )->inContentLanguage()->text(),
435  $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' ), 'wpReasonDropDown'
436  ) .
437  '</td>' .
438  "</tr><tr>\n" .
439  '<td class="mw-label">' .
440  Xml::label( $this->msg( 'revdelete-otherreason' )->text(), 'wpReason' ) .
441  '</td>' .
442  '<td class="mw-input">' .
443  Xml::input(
444  'wpReason',
445  60,
446  $this->otherReason,
447  [ 'id' => 'wpReason', 'maxlength' => 100 ]
448  ) .
449  '</td>' .
450  "</tr><tr>\n" .
451  '<td></td>' .
452  '<td class="mw-submit">' .
453  Xml::submitButton( $this->msg( 'revdelete-submit', $numRevisions )->text(),
454  [ 'name' => 'wpSubmit' ] ) .
455  '</td>' .
456  "</tr>\n" .
457  Xml::closeElement( 'table' ) .
458  Html::hidden( 'wpEditToken', $this->getUser()->getEditToken() ) .
459  Html::hidden( 'target', $this->targetObj->getPrefixedText() ) .
460  Html::hidden( 'type', $this->typeName ) .
461  Html::hidden( 'ids', implode( ',', $this->ids ) ) .
462  Xml::closeElement( 'fieldset' ) . "\n" .
463  Xml::closeElement( 'form' ) . "\n";
464  // Show link to edit the dropdown reasons
465  if ( $this->getUser()->isAllowed( 'editinterface' ) ) {
467  $this->msg( 'revdelete-reason-dropdown' )->inContentLanguage()->getTitle(),
468  $this->msg( 'revdelete-edit-reasonlist' )->escaped(),
469  [],
470  [ 'action' => 'edit' ]
471  );
472  $form .= Xml::tags( 'p', [ 'class' => 'mw-revdel-editreasons' ], $link ) . "\n";
473  }
474  } else {
475  $form = '';
476  }
477  $out->addHTML( $form );
478  }
479 
484  protected function addUsageText() {
485  // Messages: revdelete-text-text, revdelete-text-file, logdelete-text
486  $this->getOutput()->wrapWikiMsg(
487  "<strong>$1</strong>\n$2", $this->typeLabels['text'],
488  'revdelete-text-others'
489  );
490 
491  if ( $this->getUser()->isAllowed( 'suppressrevision' ) ) {
492  $this->getOutput()->addWikiMsg( 'revdelete-suppress-text' );
493  }
494 
495  if ( $this->mIsAllowed ) {
496  $this->getOutput()->addWikiMsg( 'revdelete-confirm' );
497  }
498  }
499 
503  protected function buildCheckBoxes() {
504  $html = '<table>';
505  // If there is just one item, use checkboxes
506  $list = $this->getList();
507  if ( $list->length() == 1 ) {
508  $list->reset();
509  $bitfield = $list->current()->getBits(); // existing field
510 
511  if ( $this->submitClicked ) {
512  $bitfield = RevisionDeleter::extractBitfield( $this->extractBitParams(), $bitfield );
513  }
514 
515  foreach ( $this->checks as $item ) {
516  // Messages: revdelete-hide-text, revdelete-hide-image, revdelete-hide-name,
517  // revdelete-hide-comment, revdelete-hide-user, revdelete-hide-restricted
518  list( $message, $name, $field ) = $item;
519  $innerHTML = Xml::checkLabel(
520  $this->msg( $message )->text(),
521  $name,
522  $name,
523  $bitfield & $field
524  );
525 
526  if ( $field == Revision::DELETED_RESTRICTED ) {
527  $innerHTML = "<b>$innerHTML</b>";
528  }
529 
530  $line = Xml::tags( 'td', [ 'class' => 'mw-input' ], $innerHTML );
531  $html .= "<tr>$line</tr>\n";
532  }
533  } else {
534  // Otherwise, use tri-state radios
535  $html .= '<tr>';
536  $html .= '<th class="mw-revdel-checkbox">'
537  . $this->msg( 'revdelete-radio-same' )->escaped() . '</th>';
538  $html .= '<th class="mw-revdel-checkbox">'
539  . $this->msg( 'revdelete-radio-unset' )->escaped() . '</th>';
540  $html .= '<th class="mw-revdel-checkbox">'
541  . $this->msg( 'revdelete-radio-set' )->escaped() . '</th>';
542  $html .= "<th></th></tr>\n";
543  foreach ( $this->checks as $item ) {
544  // Messages: revdelete-hide-text, revdelete-hide-image, revdelete-hide-name,
545  // revdelete-hide-comment, revdelete-hide-user, revdelete-hide-restricted
546  list( $message, $name, $field ) = $item;
547  // If there are several items, use third state by default...
548  if ( $this->submitClicked ) {
549  $selected = $this->getRequest()->getInt( $name, 0 /* unchecked */ );
550  } else {
551  $selected = -1; // use existing field
552  }
553  $line = '<td class="mw-revdel-checkbox">' . Xml::radio( $name, -1, $selected == -1 ) . '</td>';
554  $line .= '<td class="mw-revdel-checkbox">' . Xml::radio( $name, 0, $selected == 0 ) . '</td>';
555  $line .= '<td class="mw-revdel-checkbox">' . Xml::radio( $name, 1, $selected == 1 ) . '</td>';
556  $label = $this->msg( $message )->escaped();
557  if ( $field == Revision::DELETED_RESTRICTED ) {
558  $label = "<b>$label</b>";
559  }
560  $line .= "<td>$label</td>";
561  $html .= "<tr>$line</tr>\n";
562  }
563  }
564 
565  $html .= '</table>';
566 
567  return $html;
568  }
569 
575  protected function submit() {
576  # Check edit token on submission
577  $token = $this->getRequest()->getVal( 'wpEditToken' );
578  if ( $this->submitClicked && !$this->getUser()->matchEditToken( $token ) ) {
579  $this->getOutput()->addWikiMsg( 'sessionfailure' );
580 
581  return false;
582  }
583  $bitParams = $this->extractBitParams();
584  // from dropdown
585  $listReason = $this->getRequest()->getText( 'wpRevDeleteReasonList', 'other' );
586  $comment = $listReason;
587  if ( $comment === 'other' ) {
589  } elseif ( $this->otherReason !== '' ) {
590  // Entry from drop down menu + additional comment
591  $comment .= $this->msg( 'colon-separator' )->inContentLanguage()->text()
593  }
594  # Can the user set this field?
595  if ( $bitParams[Revision::DELETED_RESTRICTED] == 1
596  && !$this->getUser()->isAllowed( 'suppressrevision' )
597  ) {
598  throw new PermissionsError( 'suppressrevision' );
599  }
600  # If the save went through, go to success message...
601  $status = $this->save( $bitParams, $comment );
602  if ( $status->isGood() ) {
603  $this->success();
604 
605  return true;
606  } else {
607  # ...otherwise, bounce back to form...
608  $this->failure( $status );
609  }
610 
611  return false;
612  }
613 
617  protected function success() {
618  // Messages: revdelete-success, logdelete-success
619  $this->getOutput()->setPageTitle( $this->msg( 'actioncomplete' ) );
620  $this->getOutput()->wrapWikiMsg(
621  "<div class=\"successbox\">\n$1\n</div>",
622  $this->typeLabels['success']
623  );
624  $this->wasSaved = true;
625  $this->revDelList->reloadFromMaster();
626  $this->showForm();
627  }
628 
633  protected function failure( $status ) {
634  // Messages: revdelete-failure, logdelete-failure
635  $this->getOutput()->setPageTitle( $this->msg( 'actionfailed' ) );
636  $this->getOutput()->addWikiText( '<div class="errorbox">' .
637  $status->getWikiText( $this->typeLabels['failure'] ) .
638  '</div>'
639  );
640  $this->showForm();
641  }
642 
648  protected function extractBitParams() {
649  $bitfield = [];
650  foreach ( $this->checks as $item ) {
651  list( /* message */, $name, $field ) = $item;
652  $val = $this->getRequest()->getInt( $name, 0 /* unchecked */ );
653  if ( $val < -1 || $val > 1 ) {
654  $val = -1; // -1 for existing value
655  }
656  $bitfield[$field] = $val;
657  }
658  if ( !isset( $bitfield[Revision::DELETED_RESTRICTED] ) ) {
659  $bitfield[Revision::DELETED_RESTRICTED] = 0;
660  }
661 
662  return $bitfield;
663  }
664 
671  protected function save( array $bitPars, $reason ) {
672  return $this->getList()->setVisibility(
673  [ 'value' => $bitPars, 'comment' => $reason ]
674  );
675  }
676 
677  protected function getGroupName() {
678  return 'pagetools';
679  }
680 }
string $archiveName
Archive name, for reviewing deleted files.
showConvenienceLinks()
Show some useful links in the subtitle.
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 & $html
Definition: hooks.txt:1798
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition: hooks.txt:762
the array() calling protocol came about after MediaWiki 1.4rc1.
string $typeName
Deletion type, may be revision, archive, oldimage, filearchive, logging.
tryShowFile($archiveName)
Show a deleted file version requested by the visitor.
Shortcut to construct a special page which is unlisted by default.
static linkKnown($target, $html=null, $customAttribs=[], $query=[], $options=[ 'known', 'noclasses'])
Identical to link(), except $options defaults to 'known'.
Definition: Linker.php:264
magic word the default is to use $key to get the and $key value or $key value text $key value html to format the value $key
Definition: hooks.txt:2321
bool $mIsAllowed
Whether user is allowed to perform the action.
static getRevdelConstant($typeName)
Get the revision deletion constant for the RevDel type.
getContext()
Gets the context this SpecialPage is executed in.
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name.
Definition: SpecialPage.php:75
if(!isset($args[0])) $lang
static hidden($name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:759
$comment
static $UILabels
UI labels for each type.
static suggestTarget($typeName, $target, array $ids)
Suggest a target for the revision deletion.
static input($name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
Definition: Xml.php:275
msg()
Wrapper around wfMessage that sets the current context.
getOutput()
Get the OutputPage being used for this instance.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:277
Title $targetObj
Title object for target parameter.
static submitButton($value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
Definition: Xml.php:460
addHelpLink($to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
showForm()
Show a list of items that we will operate on, and show a form with checkboxes which will allow the us...
static label($label, $id, $attribs=[])
Convenience function to build an HTML form label.
Definition: Xml.php:359
static showLogExtract(&$out, $types=[], $page= '', $user= '', $param=[])
Show log extract.
const DELETED_FILE
Definition: File.php:52
outputHeader($summaryMessageKey= '')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
the value to return A Title object or null for latest to be modified or replaced by the hook handler or if authentication is not possible after cache objects are set for highlighting & $link
Definition: hooks.txt:2581
Class to simplify the use of log pages.
Definition: LogPage.php:32
static fieldset($legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
Definition: Xml.php:578
static closeElement($element)
Shortcut to close an XML element.
Definition: Xml.php:118
Special page allowing users with the appropriate permissions to view and hide revisions.
bool $wasSaved
Was the DB modified in this request.
bool $submitClicked
True if the submit button was clicked, and the form was posted.
An error page which can definitely be safely rendered using the OutputPage.
getLogQueryCond()
Get the condition used for fetching log snippets.
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
array $typeLabels
UI Labels about the current type.
static openElement($element, $attribs=null)
This opens an XML element.
Definition: Xml.php:109
getTitle($subpage=false)
Get a self-referential title object.
getSkin()
Shortcut to get the skin being used for this instance.
static extractBitfield(array $bitPars, $oldfield)
Put together a rev_deleted bitfield.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes! ...
const DELETED_RESTRICTED
Definition: Revision.php:79
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
static getRelationType($typeName)
Get DB field name for URL param...
Show an error when the user tries to do something whilst blocked.
array $checks
Array of checkbox specs (message, name, deletion bits)
failure($status)
Report that the submit operation failed.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
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 local account $user
Definition: hooks.txt:242
static radio($name, $value, $checked=false, $attribs=[])
Convenience function to build an HTML radio button.
Definition: Xml.php:342
const DELETED_RESTRICTED
Definition: File.php:55
extractBitParams()
Put together an array that contains -1, 0, or the *_deleted const for each bit.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object & $output
Definition: hooks.txt:1004
string $token
Edit token for securing image views against XSS.
array $ids
Target ID list.
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
static tags($element, $attribs=null, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:131
const DELETED_USER
Definition: Revision.php:78
error also a ContextSource you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2418
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getUser()
Shortcut to get the User executing this instance.
$line
Definition: cdb.php:59
addUsageText()
Show some introductory text.
Show an error when a user tries to do something they do not have the necessary permissions for...
getLanguage()
Shortcut to get user's language.
save(array $bitPars, $reason)
Do the write operations.
getList()
Get the list object for this request.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1004
static checkLabel($label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
Definition: Xml.php:420
static createList($typeName, IContextSource $context, Title $title, array $ids)
Instantiate the appropriate list class for a given list of IDs.
static getCanonicalTypeName($typeName)
Gets the canonical type name, if any.
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
const DELETED_COMMENT
Definition: Revision.php:77
getRequest()
Get the WebRequest being used for this instance.
RevDelList $revDelList
RevDelList object, storing the list of items to be deleted/undeleted.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
static listDropDown($name= '', $list= '', $other= '', $selected= '', $class= '', $tabindex=null)
Build a drop-down box from a textual list.
Definition: Xml.php:508
static getRestriction($typeName)
Get the user right required for the RevDel type.
success()
Report that the submit operation succeeded.
getPageTitle($subpage=false)
Get a self-referential title object.
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:310
submit()
UI entry point for form submission.