MediaWiki  1.32.0
HistoryAction.php
Go to the documentation of this file.
1 <?php
29 
41  const DIR_PREV = 0;
42  const DIR_NEXT = 1;
43 
45  public $message;
46 
47  public function getName() {
48  return 'history';
49  }
50 
51  public function requiresWrite() {
52  return false;
53  }
54 
55  public function requiresUnblock() {
56  return false;
57  }
58 
59  protected function getPageTitle() {
60  return $this->msg( 'history-title', $this->getTitle()->getPrefixedText() )->text();
61  }
62 
63  protected function getDescription() {
64  // Creation of a subtitle link pointing to [[Special:Log]]
65  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
66  $subtitle = $linkRenderer->makeKnownLink(
67  SpecialPage::getTitleFor( 'Log' ),
68  $this->msg( 'viewpagelogs' )->text(),
69  [],
70  [ 'page' => $this->getTitle()->getPrefixedText() ]
71  );
72 
73  $links = [];
74  // Allow extensions to add more links
75  Hooks::run( 'HistoryPageToolLinks', [ $this->getContext(), $linkRenderer, &$links ] );
76  if ( $links ) {
77  $subtitle .= ''
78  . $this->msg( 'word-separator' )->escaped()
79  . $this->msg( 'parentheses' )
80  ->rawParams( $this->getLanguage()->pipeList( $links ) )
81  ->escaped();
82  }
83  return $subtitle;
84  }
85 
89  public function getArticle() {
90  return $this->page;
91  }
92 
97  private function preCacheMessages() {
98  // Precache various messages
99  if ( !isset( $this->message ) ) {
100  $msgs = [ 'cur', 'last', 'pipe-separator' ];
101  foreach ( $msgs as $msg ) {
102  $this->message[$msg] = $this->msg( $msg )->escaped();
103  }
104  }
105  }
106 
110  function onView() {
111  $out = $this->getOutput();
112  $request = $this->getRequest();
113 
117  if ( $out->checkLastModified( $this->page->getTouched() ) ) {
118  return; // Client cache fresh and headers sent, nothing more to do.
119  }
120 
121  $this->preCacheMessages();
122  $config = $this->context->getConfig();
123 
124  # Fill in the file cache if not set already
125  if ( HTMLFileCache::useFileCache( $this->getContext() ) ) {
126  $cache = new HTMLFileCache( $this->getTitle(), 'history' );
127  if ( !$cache->isCacheGood( /* Assume up to date */ ) ) {
128  ob_start( [ &$cache, 'saveToFileCache' ] );
129  }
130  }
131 
132  // Setup page variables.
133  $out->setFeedAppendQuery( 'action=history' );
134  $out->addModules( 'mediawiki.action.history' );
135  $out->addModuleStyles( [
136  'mediawiki.action.history.styles',
137  'mediawiki.special.changeslist',
138  ] );
139  if ( $config->get( 'UseMediaWikiUIEverywhere' ) ) {
140  $out = $this->getOutput();
141  $out->addModuleStyles( [
142  'mediawiki.ui.input',
143  'mediawiki.ui.checkbox',
144  ] );
145  }
146 
147  // Handle atom/RSS feeds.
148  $feedType = $request->getVal( 'feed' );
149  if ( $feedType ) {
150  $this->feed( $feedType );
151 
152  return;
153  }
154 
155  $this->addHelpLink( '//meta.wikimedia.org/wiki/Special:MyLanguage/Help:Page_history', true );
156 
157  // Fail nicely if article doesn't exist.
158  if ( !$this->page->exists() ) {
159  global $wgSend404Code;
160  if ( $wgSend404Code ) {
161  $out->setStatusCode( 404 );
162  }
163  $out->addWikiMsg( 'nohistory' );
164 
165  $dbr = wfGetDB( DB_REPLICA );
166 
167  # show deletion/move log if there is an entry
169  $out,
170  [ 'delete', 'move', 'protect' ],
171  $this->getTitle(),
172  '',
173  [ 'lim' => 10,
174  'conds' => [ 'log_action != ' . $dbr->addQuotes( 'revision' ) ],
175  'showIfEmpty' => false,
176  'msgKey' => [ 'moveddeleted-notice' ]
177  ]
178  );
179 
180  return;
181  }
182 
186  $year = $request->getInt( 'year' );
187  $month = $request->getInt( 'month' );
188  $tagFilter = $request->getVal( 'tagfilter' );
189  $tagSelector = ChangeTags::buildTagFilterSelector( $tagFilter, false, $this->getContext() );
190 
194  if ( $request->getBool( 'deleted' ) ) {
195  $conds = [ 'rev_deleted != 0' ];
196  } else {
197  $conds = [];
198  }
199  if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
200  $checkDeleted = Xml::checkLabel( $this->msg( 'history-show-deleted' )->text(),
201  'deleted', 'mw-show-deleted-only', $request->getBool( 'deleted' ) ) . "\n";
202  } else {
203  $checkDeleted = '';
204  }
205 
206  // Add the general form
207  $action = htmlspecialchars( wfScript() );
208  $content = Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n";
209  $content .= Html::hidden( 'action', 'history' ) . "\n";
211  ( $year == null ? MWTimestamp::getLocalInstance()->format( 'Y' ) : $year ),
212  $month
213  ) . "\u{00A0}";
214  $content .= $tagSelector ? ( implode( "\u{00A0}", $tagSelector ) . "\u{00A0}" ) : '';
215  $content .= $checkDeleted . Html::submitButton(
216  $this->msg( 'historyaction-submit' )->text(),
217  [],
218  [ 'mw-ui-progressive' ]
219  );
220  $out->addHTML(
221  "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
223  $this->msg( 'history-fieldset-title' )->text(),
224  $content,
225  [ 'id' => 'mw-history-search' ]
226  ) .
227  '</form>'
228  );
229 
230  Hooks::run( 'PageHistoryBeforeList', [ &$this->page, $this->getContext() ] );
231 
232  // Create and output the list.
233  $pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
234  $out->addHTML(
235  $pager->getNavigationBar() .
236  $pager->getBody() .
237  $pager->getNavigationBar()
238  );
239  $out->preventClickjacking( $pager->getPreventClickjacking() );
240  }
241 
252  function fetchRevisions( $limit, $offset, $direction ) {
253  // Fail if article doesn't exist.
254  if ( !$this->getTitle()->exists() ) {
255  return new FakeResultWrapper( [] );
256  }
257 
258  $dbr = wfGetDB( DB_REPLICA );
259 
260  if ( $direction === self::DIR_PREV ) {
261  list( $dirs, $oper ) = [ "ASC", ">=" ];
262  } else { /* $direction === self::DIR_NEXT */
263  list( $dirs, $oper ) = [ "DESC", "<=" ];
264  }
265 
266  if ( $offset ) {
267  $offsets = [ "rev_timestamp $oper " . $dbr->addQuotes( $dbr->timestamp( $offset ) ) ];
268  } else {
269  $offsets = [];
270  }
271 
272  $page_id = $this->page->getId();
273 
275  return $dbr->select(
276  $revQuery['tables'],
277  $revQuery['fields'],
278  array_merge( [ 'rev_page' => $page_id ], $offsets ),
279  __METHOD__,
280  [
281  'ORDER BY' => "rev_timestamp $dirs",
282  'USE INDEX' => [ 'revision' => 'page_timestamp' ],
283  'LIMIT' => $limit
284  ],
285  $revQuery['joins']
286  );
287  }
288 
294  function feed( $type ) {
295  if ( !FeedUtils::checkFeedOutput( $type ) ) {
296  return;
297  }
298  $request = $this->getRequest();
299 
300  $feedClasses = $this->context->getConfig()->get( 'FeedClasses' );
302  $feed = new $feedClasses[$type](
303  $this->getTitle()->getPrefixedText() . ' - ' .
304  $this->msg( 'history-feed-title' )->inContentLanguage()->text(),
305  $this->msg( 'history-feed-description' )->inContentLanguage()->text(),
306  $this->getTitle()->getFullURL( 'action=history' )
307  );
308 
309  // Get a limit on number of feed entries. Provide a sane default
310  // of 10 if none is defined (but limit to $wgFeedLimit max)
311  $limit = $request->getInt( 'limit', 10 );
312  $limit = min(
313  max( $limit, 1 ),
314  $this->context->getConfig()->get( 'FeedLimit' )
315  );
316 
317  $items = $this->fetchRevisions( $limit, 0, self::DIR_NEXT );
318 
319  // Generate feed elements enclosed between header and footer.
320  $feed->outHeader();
321  if ( $items->numRows() ) {
322  foreach ( $items as $row ) {
323  $feed->outItem( $this->feedItem( $row ) );
324  }
325  } else {
326  $feed->outItem( $this->feedEmpty() );
327  }
328  $feed->outFooter();
329  }
330 
331  function feedEmpty() {
332  return new FeedItem(
333  $this->msg( 'nohistory' )->inContentLanguage()->text(),
334  $this->msg( 'history-feed-empty' )->inContentLanguage()->parseAsBlock(),
335  $this->getTitle()->getFullURL(),
336  wfTimestamp( TS_MW ),
337  '',
338  $this->getTitle()->getTalkPage()->getFullURL()
339  );
340  }
341 
350  function feedItem( $row ) {
351  $rev = new Revision( $row, 0, $this->getTitle() );
352 
353  $text = FeedUtils::formatDiffRow(
354  $this->getTitle(),
355  $this->getTitle()->getPreviousRevisionID( $rev->getId() ),
356  $rev->getId(),
357  $rev->getTimestamp(),
358  $rev->getComment()
359  );
360  if ( $rev->getComment() == '' ) {
361  $contLang = MediaWikiServices::getInstance()->getContentLanguage();
362  $title = $this->msg( 'history-feed-item-nocomment',
363  $rev->getUserText(),
364  $contLang->timeanddate( $rev->getTimestamp() ),
365  $contLang->date( $rev->getTimestamp() ),
366  $contLang->time( $rev->getTimestamp() )
367  )->inContentLanguage()->text();
368  } else {
369  $title = $rev->getUserText() .
370  $this->msg( 'colon-separator' )->inContentLanguage()->text() .
371  FeedItem::stripComment( $rev->getComment() );
372  }
373 
374  return new FeedItem(
375  $title,
376  $text,
377  $this->getTitle()->getFullURL( 'diff=' . $rev->getId() . '&oldid=prev' ),
378  $rev->getTimestamp(),
379  $rev->getUserText(),
380  $this->getTitle()->getTalkPage()->getFullURL()
381  );
382  }
383 }
384 
393  public $lastRow = false;
394 
396 
397  protected $oldIdChecked;
398 
399  protected $preventClickjacking = false;
403  protected $parentLens;
404 
406  protected $showTagEditUI;
407 
409  private $tagFilter;
410 
418  function __construct( $historyPage, $year = '', $month = '', $tagFilter = '', $conds = [] ) {
419  parent::__construct( $historyPage->getContext() );
420  $this->historyPage = $historyPage;
421  $this->tagFilter = $tagFilter;
422  $this->getDateCond( $year, $month );
423  $this->conds = $conds;
424  $this->showTagEditUI = ChangeTags::showTagEditingUI( $this->getUser() );
425  }
426 
427  // For hook compatibility...
428  function getArticle() {
429  return $this->historyPage->getArticle();
430  }
431 
432  function getSqlComment() {
433  if ( $this->conds ) {
434  return 'history page filtered'; // potentially slow, see CR r58153
435  } else {
436  return 'history page unfiltered';
437  }
438  }
439 
440  function getQueryInfo() {
441  $revQuery = Revision::getQueryInfo( [ 'user' ] );
442  $queryInfo = [
443  'tables' => $revQuery['tables'],
444  'fields' => $revQuery['fields'],
445  'conds' => array_merge(
446  [ 'rev_page' => $this->getWikiPage()->getId() ],
447  $this->conds ),
448  'options' => [ 'USE INDEX' => [ 'revision' => 'page_timestamp' ] ],
449  'join_conds' => $revQuery['joins'],
450  ];
452  $queryInfo['tables'],
453  $queryInfo['fields'],
454  $queryInfo['conds'],
455  $queryInfo['join_conds'],
456  $queryInfo['options'],
457  $this->tagFilter
458  );
459 
460  // Avoid PHP 7.1 warning of passing $this by reference
461  $historyPager = $this;
462  Hooks::run( 'PageHistoryPager::getQueryInfo', [ &$historyPager, &$queryInfo ] );
463 
464  return $queryInfo;
465  }
466 
467  function getIndexField() {
468  return 'rev_timestamp';
469  }
470 
475  function formatRow( $row ) {
476  if ( $this->lastRow ) {
477  $latest = ( $this->counter == 1 && $this->mIsFirst );
478  $firstInList = $this->counter == 1;
479  $this->counter++;
480 
481  $notifTimestamp = $this->getConfig()->get( 'ShowUpdatedMarker' )
482  ? $this->getTitle()->getNotificationTimestamp( $this->getUser() )
483  : false;
484 
485  $s = $this->historyLine(
486  $this->lastRow, $row, $notifTimestamp, $latest, $firstInList );
487  } else {
488  $s = '';
489  }
490  $this->lastRow = $row;
491 
492  return $s;
493  }
494 
495  function doBatchLookups() {
496  if ( !Hooks::run( 'PageHistoryPager::doBatchLookups', [ $this, $this->mResult ] ) ) {
497  return;
498  }
499 
500  # Do a link batch query
501  $this->mResult->seek( 0 );
502  $batch = new LinkBatch();
503  $revIds = [];
504  foreach ( $this->mResult as $row ) {
505  if ( $row->rev_parent_id ) {
506  $revIds[] = $row->rev_parent_id;
507  }
508  if ( !is_null( $row->user_name ) ) {
509  $batch->add( NS_USER, $row->user_name );
510  $batch->add( NS_USER_TALK, $row->user_name );
511  } else { # for anons or usernames of imported revisions
512  $batch->add( NS_USER, $row->rev_user_text );
513  $batch->add( NS_USER_TALK, $row->rev_user_text );
514  }
515  }
516  $this->parentLens = Revision::getParentLengths( $this->mDb, $revIds );
517  $batch->execute();
518  $this->mResult->seek( 0 );
519  }
520 
526  function getStartBody() {
527  $this->lastRow = false;
528  $this->counter = 1;
529  $this->oldIdChecked = 0;
530 
531  $this->getOutput()->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
532  $s = Html::openElement( 'form', [ 'action' => wfScript(),
533  'id' => 'mw-history-compare' ] ) . "\n";
534  $s .= Html::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n";
535  $s .= Html::hidden( 'action', 'historysubmit' ) . "\n";
536  $s .= Html::hidden( 'type', 'revision' ) . "\n";
537 
538  // Button container stored in $this->buttons for re-use in getEndBody()
539  $this->buttons = '<div>';
540  $className = 'historysubmit mw-history-compareselectedversions-button';
541  $attrs = [ 'class' => $className ]
542  + Linker::tooltipAndAccesskeyAttribs( 'compareselectedversions' );
543  $this->buttons .= $this->submitButton( $this->msg( 'compareselectedversions' )->text(),
544  $attrs
545  ) . "\n";
546 
547  $user = $this->getUser();
548  $actionButtons = '';
549  if ( $user->isAllowed( 'deleterevision' ) ) {
550  $actionButtons .= $this->getRevisionButton( 'revisiondelete', 'showhideselectedversions' );
551  }
552  if ( $this->showTagEditUI ) {
553  $actionButtons .= $this->getRevisionButton( 'editchangetags', 'history-edit-tags' );
554  }
555  if ( $actionButtons ) {
556  $this->buttons .= Xml::tags( 'div', [ 'class' =>
557  'mw-history-revisionactions' ], $actionButtons );
558  }
559 
560  if ( $user->isAllowed( 'deleterevision' ) || $this->showTagEditUI ) {
561  $this->buttons .= ( new ListToggle( $this->getOutput() ) )->getHTML();
562  }
563 
564  $this->buttons .= '</div>';
565 
566  $s .= $this->buttons;
567  $s .= '<ul id="pagehistory">' . "\n";
568 
569  return $s;
570  }
571 
572  private function getRevisionButton( $name, $msg ) {
573  $this->preventClickjacking();
574  # Note T22966, <button> is non-standard in IE<8
575  $element = Html::element(
576  'button',
577  [
578  'type' => 'submit',
579  'name' => $name,
580  'value' => '1',
581  'class' => "historysubmit mw-history-$name-button",
582  ],
583  $this->msg( $msg )->text()
584  ) . "\n";
585  return $element;
586  }
587 
588  function getEndBody() {
589  if ( $this->lastRow ) {
590  $latest = $this->counter == 1 && $this->mIsFirst;
591  $firstInList = $this->counter == 1;
592  if ( $this->mIsBackwards ) {
593  # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
594  if ( $this->mOffset == '' ) {
595  $next = null;
596  } else {
597  $next = 'unknown';
598  }
599  } else {
600  # The next row is the past-the-end row
601  $next = $this->mPastTheEndRow;
602  }
603  $this->counter++;
604 
605  $notifTimestamp = $this->getConfig()->get( 'ShowUpdatedMarker' )
606  ? $this->getTitle()->getNotificationTimestamp( $this->getUser() )
607  : false;
608 
609  $s = $this->historyLine(
610  $this->lastRow, $next, $notifTimestamp, $latest, $firstInList );
611  } else {
612  $s = '';
613  }
614  $s .= "</ul>\n";
615  # Add second buttons only if there is more than one rev
616  if ( $this->getNumRows() > 2 ) {
617  $s .= $this->buttons;
618  }
619  $s .= '</form>';
620 
621  return $s;
622  }
623 
631  function submitButton( $message, $attributes = [] ) {
632  # Disable submit button if history has 1 revision only
633  if ( $this->getNumRows() > 1 ) {
634  return Html::submitButton( $message, $attributes );
635  } else {
636  return '';
637  }
638  }
639 
654  function historyLine( $row, $next, $notificationtimestamp = false,
655  $latest = false, $firstInList = false ) {
656  $rev = new Revision( $row, 0, $this->getTitle() );
657 
658  if ( is_object( $next ) ) {
659  $prevRev = new Revision( $next, 0, $this->getTitle() );
660  } else {
661  $prevRev = null;
662  }
663 
664  $curlink = $this->curLink( $rev, $latest );
665  $lastlink = $this->lastLink( $rev, $next );
666  $curLastlinks = $curlink . $this->historyPage->message['pipe-separator'] . $lastlink;
667  $histLinks = Html::rawElement(
668  'span',
669  [ 'class' => 'mw-history-histlinks' ],
670  $this->msg( 'parentheses' )->rawParams( $curLastlinks )->escaped()
671  );
672 
673  $diffButtons = $this->diffButtons( $rev, $firstInList );
674  $s = $histLinks . $diffButtons;
675 
676  $link = $this->revLink( $rev );
677  $classes = [];
678 
679  $del = '';
680  $user = $this->getUser();
681  $canRevDelete = $user->isAllowed( 'deleterevision' );
682  // Show checkboxes for each revision, to allow for revision deletion and
683  // change tags
684  if ( $canRevDelete || $this->showTagEditUI ) {
685  $this->preventClickjacking();
686  // If revision was hidden from sysops and we don't need the checkbox
687  // for anything else, disable it
688  if ( !$this->showTagEditUI && !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
689  $del = Xml::check( 'deleterevisions', false, [ 'disabled' => 'disabled' ] );
690  // Otherwise, enable the checkbox...
691  } else {
692  $del = Xml::check( 'showhiderevisions', false,
693  [ 'name' => 'ids[' . $rev->getId() . ']' ] );
694  }
695  // User can only view deleted revisions...
696  } elseif ( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) {
697  // If revision was hidden from sysops, disable the link
698  if ( !$rev->userCan( Revision::DELETED_RESTRICTED, $user ) ) {
699  $del = Linker::revDeleteLinkDisabled( false );
700  // Otherwise, show the link...
701  } else {
702  $query = [ 'type' => 'revision',
703  'target' => $this->getTitle()->getPrefixedDBkey(), 'ids' => $rev->getId() ];
704  $del .= Linker::revDeleteLink( $query,
705  $rev->isDeleted( Revision::DELETED_RESTRICTED ), false );
706  }
707  }
708  if ( $del ) {
709  $s .= " $del ";
710  }
711 
712  $lang = $this->getLanguage();
713  $dirmark = $lang->getDirMark();
714 
715  $s .= " $link";
716  $s .= $dirmark;
717  $s .= " <span class='history-user'>" .
718  Linker::revUserTools( $rev, true ) . "</span>";
719  $s .= $dirmark;
720 
721  if ( $rev->isMinor() ) {
722  $s .= ' ' . ChangesList::flag( 'minor', $this->getContext() );
723  }
724 
725  # Sometimes rev_len isn't populated
726  if ( $rev->getSize() !== null ) {
727  # Size is always public data
728  $prevSize = $this->parentLens[$row->rev_parent_id] ?? 0;
729  $sDiff = ChangesList::showCharacterDifference( $prevSize, $rev->getSize() );
730  $fSize = Linker::formatRevisionSize( $rev->getSize() );
731  $s .= ' <span class="mw-changeslist-separator">. .</span> ' . "$fSize $sDiff";
732  }
733 
734  # Text following the character difference is added just before running hooks
735  $s2 = Linker::revComment( $rev, false, true );
736 
737  if ( $notificationtimestamp && ( $row->rev_timestamp >= $notificationtimestamp ) ) {
738  $s2 .= ' <span class="updatedmarker">' . $this->msg( 'updatedmarker' )->escaped() . '</span>';
739  $classes[] = 'mw-history-line-updated';
740  }
741 
742  $tools = [];
743 
744  # Rollback and undo links
745  if ( $prevRev && $this->getTitle()->quickUserCan( 'edit', $user ) ) {
746  if ( $latest && $this->getTitle()->quickUserCan( 'rollback', $user ) ) {
747  // Get a rollback link without the brackets
748  $rollbackLink = Linker::generateRollback(
749  $rev,
750  $this->getContext(),
751  [ 'verify', 'noBrackets' ]
752  );
753  if ( $rollbackLink ) {
754  $this->preventClickjacking();
755  $tools[] = $rollbackLink;
756  }
757  }
758 
759  if ( !$rev->isDeleted( Revision::DELETED_TEXT )
760  && !$prevRev->isDeleted( Revision::DELETED_TEXT )
761  ) {
762  # Create undo tooltip for the first (=latest) line only
763  $undoTooltip = $latest
764  ? [ 'title' => $this->msg( 'tooltip-undo' )->text() ]
765  : [];
766  $undolink = MediaWikiServices::getInstance()->getLinkRenderer()->makeKnownLink(
767  $this->getTitle(),
768  $this->msg( 'editundo' )->text(),
769  $undoTooltip,
770  [
771  'action' => 'edit',
772  'undoafter' => $prevRev->getId(),
773  'undo' => $rev->getId()
774  ]
775  );
776  $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
777  }
778  }
779  // Allow extension to add their own links here
780  Hooks::run( 'HistoryRevisionTools', [ $rev, &$tools, $prevRev, $user ] );
781 
782  if ( $tools ) {
783  $s2 .= ' ' . $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped();
784  }
785 
786  # Tags
787  list( $tagSummary, $newClasses ) = ChangeTags::formatSummaryRow(
788  $row->ts_tags,
789  'history',
790  $this->getContext()
791  );
792  $classes = array_merge( $classes, $newClasses );
793  if ( $tagSummary !== '' ) {
794  $s2 .= " $tagSummary";
795  }
796 
797  # Include separator between character difference and following text
798  if ( $s2 !== '' ) {
799  $s .= ' <span class="mw-changeslist-separator">. .</span> ' . $s2;
800  }
801 
802  $attribs = [ 'data-mw-revid' => $rev->getId() ];
803 
804  Hooks::run( 'PageHistoryLineEnding', [ $this, &$row, &$s, &$classes, &$attribs ] );
805  $attribs = array_filter( $attribs,
806  [ Sanitizer::class, 'isReservedDataAttribute' ],
807  ARRAY_FILTER_USE_KEY
808  );
809 
810  if ( $classes ) {
811  $attribs['class'] = implode( ' ', $classes );
812  }
813 
814  return Xml::tags( 'li', $attribs, $s ) . "\n";
815  }
816 
823  function revLink( $rev ) {
824  $date = $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $this->getUser() );
825  if ( $rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
826  $link = MediaWikiServices::getInstance()->getLinkRenderer()->makeKnownLink(
827  $this->getTitle(),
828  $date,
829  [ 'class' => 'mw-changeslist-date' ],
830  [ 'oldid' => $rev->getId() ]
831  );
832  } else {
833  $link = htmlspecialchars( $date );
834  }
835  if ( $rev->isDeleted( Revision::DELETED_TEXT ) ) {
836  $link = "<span class=\"history-deleted\">$link</span>";
837  }
838 
839  return $link;
840  }
841 
849  function curLink( $rev, $latest ) {
850  $cur = $this->historyPage->message['cur'];
851  if ( $latest || !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
852  return $cur;
853  } else {
854  return MediaWikiServices::getInstance()->getLinkRenderer()->makeKnownLink(
855  $this->getTitle(),
856  new HtmlArmor( $cur ),
857  [],
858  [
859  'diff' => $this->getWikiPage()->getLatest(),
860  'oldid' => $rev->getId()
861  ]
862  );
863  }
864  }
865 
875  function lastLink( $prevRev, $next ) {
876  $last = $this->historyPage->message['last'];
877 
878  if ( $next === null ) {
879  # Probably no next row
880  return $last;
881  }
882 
883  $linkRenderer = MediaWikiServices::getInstance()->getLinkRenderer();
884  if ( $next === 'unknown' ) {
885  # Next row probably exists but is unknown, use an oldid=prev link
886  return $linkRenderer->makeKnownLink(
887  $this->getTitle(),
888  new HtmlArmor( $last ),
889  [],
890  [
891  'diff' => $prevRev->getId(),
892  'oldid' => 'prev'
893  ]
894  );
895  }
896 
897  $nextRev = new Revision( $next );
898 
899  if ( !$prevRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
900  || !$nextRev->userCan( Revision::DELETED_TEXT, $this->getUser() )
901  ) {
902  return $last;
903  }
904 
905  return $linkRenderer->makeKnownLink(
906  $this->getTitle(),
907  new HtmlArmor( $last ),
908  [],
909  [
910  'diff' => $prevRev->getId(),
911  'oldid' => $next->rev_id
912  ]
913  );
914  }
915 
924  function diffButtons( $rev, $firstInList ) {
925  if ( $this->getNumRows() > 1 ) {
926  $id = $rev->getId();
927  $radio = [ 'type' => 'radio', 'value' => $id ];
929  if ( $firstInList ) {
930  $first = Xml::element( 'input',
931  array_merge( $radio, [
932  'style' => 'visibility:hidden',
933  'name' => 'oldid',
934  'id' => 'mw-oldid-null' ] )
935  );
936  $checkmark = [ 'checked' => 'checked' ];
937  } else {
938  # Check visibility of old revisions
939  if ( !$rev->userCan( Revision::DELETED_TEXT, $this->getUser() ) ) {
940  $radio['disabled'] = 'disabled';
941  $checkmark = []; // We will check the next possible one
942  } elseif ( !$this->oldIdChecked ) {
943  $checkmark = [ 'checked' => 'checked' ];
944  $this->oldIdChecked = $id;
945  } else {
946  $checkmark = [];
947  }
948  $first = Xml::element( 'input',
949  array_merge( $radio, $checkmark, [
950  'name' => 'oldid',
951  'id' => "mw-oldid-$id" ] ) );
952  $checkmark = [];
953  }
954  $second = Xml::element( 'input',
955  array_merge( $radio, $checkmark, [
956  'name' => 'diff',
957  'id' => "mw-diff-$id" ] ) );
958 
959  return $first . $second;
960  } else {
961  return '';
962  }
963  }
964 
969  function preventClickjacking( $enable = true ) {
970  $this->preventClickjacking = $enable;
971  }
972 
979  }
980 
981 }
$wgSend404Code
$wgSend404Code
Some web hosts attempt to rewrite all responses with a 404 (not found) status code,...
Definition: DefaultSettings.php:3534
HistoryAction\$message
array $message
Array of message keys and strings.
Definition: HistoryAction.php:45
ContextSource\getConfig
getConfig()
Definition: ContextSource.php:63
HTMLFileCache\useFileCache
static useFileCache(IContextSource $context, $mode=self::MODE_NORMAL)
Check if pages can be cached for this request/user.
Definition: HTMLFileCache.php:93
ReverseChronologicalPager\getDateCond
getDateCond( $year, $month, $day=-1)
Set and return the mOffset timestamp such that we can get all revisions with a timestamp up to the sp...
Definition: ReverseChronologicalPager.php:73
$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
Revision\DELETED_RESTRICTED
const DELETED_RESTRICTED
Definition: Revision.php:50
FeedItem
A base class for basic support for outputting syndication feeds in RSS and other formats.
Definition: Feed.php:38
ContextSource\getContext
getContext()
Get the base IContextSource object.
Definition: ContextSource.php:40
HtmlArmor
Marks HTML that shouldn't be escaped.
Definition: HtmlArmor.php:28
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
HistoryPager\$counter
$counter
Definition: HistoryAction.php:395
HistoryPager\$parentLens
array $parentLens
Definition: HistoryAction.php:403
IndexPager\$mIsFirst
$mIsFirst
True if the current result set is the first one.
Definition: IndexPager.php:115
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
HistoryPager\getPreventClickjacking
getPreventClickjacking()
Get the "prevent clickjacking" flag.
Definition: HistoryAction.php:977
FormlessAction
An action which just does something, without showing a form first.
Definition: FormlessAction.php:28
Action\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: Action.php:199
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
HistoryAction\onView
onView()
Print the history page for an article.
Definition: HistoryAction.php:110
HistoryAction\feedItem
feedItem( $row)
Generate a FeedItem object from a given revision table row Borrows Recent Changes' feed generation fu...
Definition: HistoryAction.php:350
HistoryPager\diffButtons
diffButtons( $rev, $firstInList)
Create radio buttons for page history.
Definition: HistoryAction.php:924
HTMLFileCache
Page view caching in the file system.
Definition: HTMLFileCache.php:33
HistoryAction\requiresWrite
requiresWrite()
Whether this action requires the wiki not to be locked.
Definition: HistoryAction.php:51
HistoryPager\getArticle
getArticle()
Definition: HistoryAction.php:428
$last
$last
Definition: profileinfo.php:419
ContextSource\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: ContextSource.php:168
HistoryAction\getPageTitle
getPageTitle()
Returns the name that goes in the <h1> page title.
Definition: HistoryAction.php:59
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1954
HistoryAction\DIR_NEXT
const DIR_NEXT
Definition: HistoryAction.php:42
FeedUtils\formatDiffRow
static formatDiffRow( $title, $oldid, $newid, $timestamp, $comment, $actiontext='')
Really format a diff for the newsfeed.
Definition: FeedUtils.php:108
HistoryPager\$showTagEditUI
bool $showTagEditUI
Whether to show the tag editing UI.
Definition: HistoryAction.php:406
HistoryPager\$tagFilter
string $tagFilter
Definition: HistoryAction.php:409
HistoryPager\__construct
__construct( $historyPage, $year='', $month='', $tagFilter='', $conds=[])
Definition: HistoryAction.php:418
FeedItem\stripComment
static stripComment( $text)
Quickie hack...
Definition: Feed.php:223
HistoryPager\getRevisionButton
getRevisionButton( $name, $msg)
Definition: HistoryAction.php:572
HistoryAction\fetchRevisions
fetchRevisions( $limit, $offset, $direction)
Fetch an array of revisions, specified by a given limit, offset and direction.
Definition: HistoryAction.php:252
$s
$s
Definition: mergeMessageFileList.php:187
$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
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
page
target page
Definition: All_system_messages.txt:1267
ChangeTags\showTagEditingUI
static showTagEditingUI(User $user)
Indicate whether change tag editing UI is relevant.
Definition: ChangeTags.php:1665
Wikimedia\Rdbms\ResultWrapper
Result wrapper for grabbing data queried from an IDatabase object.
Definition: ResultWrapper.php:24
ChangeTags\buildTagFilterSelector
static buildTagFilterSelector( $selected='', $ooui=false, IContextSource $context=null)
Build a text box to select a change tag.
Definition: ChangeTags.php:867
HistoryAction\getDescription
getDescription()
Returns the description that goes below the <h1> tag.
Definition: HistoryAction.php:63
HistoryPager\$conds
$conds
Definition: HistoryAction.php:395
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
Wikimedia\Rdbms\FakeResultWrapper
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
Definition: FakeResultWrapper.php:11
ContextSource\getTitle
getTitle()
Definition: ContextSource.php:79
$revQuery
$revQuery
Definition: testCompression.php:51
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
Linker\tooltipAndAccesskeyAttribs
static tooltipAndAccesskeyAttribs( $name, array $msgParams=[], $options=null)
Returns the attributes for the tooltip and access key.
Definition: Linker.php:2133
$dbr
$dbr
Definition: testCompression.php:50
HistoryPager\submitButton
submitButton( $message, $attributes=[])
Creates a submit button.
Definition: HistoryAction.php:631
ContextSource\getLanguage
getLanguage()
Definition: ContextSource.php:128
Xml\fieldset
static fieldset( $legend=false, $content=false, $attribs=[])
Shortcut for creating fieldsets.
Definition: Xml.php:611
HistoryPager\$historyPage
$historyPage
Definition: HistoryAction.php:395
Revision
Definition: Revision.php:41
HistoryPager\$lastRow
bool stdClass $lastRow
Definition: HistoryAction.php:393
HistoryPager\historyLine
historyLine( $row, $next, $notificationtimestamp=false, $latest=false, $firstInList=false)
Returns a row from the history printout.
Definition: HistoryAction.php:654
ChangeTags\modifyDisplayQuery
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag='')
Applies all tags-related changes to a query.
Definition: ChangeTags.php:783
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1627
Action\getContext
getContext()
Get the IContextSource in use here.
Definition: Action.php:180
Revision\getQueryInfo
static getQueryInfo( $options=[])
Return the tables, fields, and join conditions to be selected to create a new revision object.
Definition: Revision.php:521
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:964
HistoryPager\preventClickjacking
preventClickjacking( $enable=true)
This is called if a write operation is possible from the generated HTML.
Definition: HistoryAction.php:969
Linker\generateRollback
static generateRollback( $rev, IContextSource $context=null, $options=[ 'verify'])
Generate a rollback link for a given revision.
Definition: Linker.php:1704
HistoryPager\doBatchLookups
doBatchLookups()
Called from getBody(), before getStartBody() is called and after doQuery() was called.
Definition: HistoryAction.php:495
wfScript
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
Definition: GlobalFunctions.php:2771
HistoryPager\$buttons
$buttons
Definition: HistoryAction.php:395
HistoryAction
This class handles printing the history page for an article.
Definition: HistoryAction.php:40
Action\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: Action.php:258
ListToggle
Class for generating clickable toggle links for a list of checkboxes.
Definition: ListToggle.php:31
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2693
HistoryAction\preCacheMessages
preCacheMessages()
As we use the same small set of messages in various methods and that they are called often,...
Definition: HistoryAction.php:97
Linker\revUserTools
static revUserTools( $rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Definition: Linker.php:1053
HistoryAction\feedEmpty
feedEmpty()
Definition: HistoryAction.php:331
ContextSource\getOutput
getOutput()
Definition: ContextSource.php:112
HistoryPager\getSqlComment
getSqlComment()
Get some text to go in brackets in the "function name" part of the SQL comment.
Definition: HistoryAction.php:432
Xml\check
static check( $name, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox.
Definition: Xml.php:325
ContextSource\getWikiPage
getWikiPage()
Get the WikiPage object.
Definition: ContextSource.php:104
$attribs
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 & $attribs
Definition: hooks.txt:2036
HistoryPager\$oldIdChecked
$oldIdChecked
Definition: HistoryAction.php:397
HistoryPager\curLink
curLink( $rev, $latest)
Create a diff-to-current link for this revision for this page.
Definition: HistoryAction.php:849
Xml\element
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
Definition: Xml.php:41
IndexPager\$mPastTheEndRow
$mPastTheEndRow
Definition: IndexPager.php:85
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
HistoryPager\getIndexField
getIndexField()
This function should be overridden to return the name of the index fi- eld.
Definition: HistoryAction.php:467
ChangesList\flag
static flag( $flag, IContextSource $context=null)
Make an "<abbr>" element for a given change flag.
Definition: ChangesList.php:255
Linker\revDeleteLinkDisabled
static revDeleteLinkDisabled( $delete=true)
Creates a dead (show/hide) link for deleting revisions/log entries.
Definition: Linker.php:2114
HistoryPager
Definition: HistoryAction.php:389
$dirs
$dirs
Definition: mergeMessageFileList.php:194
revisions
In both all secondary updates will be triggered handle like object that caches derived data representing a and can trigger updates of cached copies of that e g in the links the and the CDN layer DerivedPageDataUpdater is used by PageUpdater when creating new revisions
Definition: pageupdater.txt:78
LogEventsList\showLogExtract
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
Definition: LogEventsList.php:606
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
HistoryPager\formatRow
formatRow( $row)
Definition: HistoryAction.php:475
list
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
or
or
Definition: COPYING.txt:140
$request
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2675
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
Html\hidden
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
Definition: Html.php:795
Action\getUser
getUser()
Shortcut to get the User being used for this instance.
Definition: Action.php:219
Linker\revComment
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
Definition: Linker.php:1466
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:67
HistoryPager\getEndBody
getEndBody()
Hook into getBody() for the end of the list.
Definition: HistoryAction.php:588
Action\addHelpLink
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Definition: Action.php:390
Revision\getParentLengths
static getParentLengths( $db, array $revIds)
Do a batched query to get the parent revision lengths.
Definition: Revision.php:548
HistoryPager\$preventClickjacking
$preventClickjacking
Definition: HistoryAction.php:399
Xml\tags
static tags( $element, $attribs, $contents)
Same as Xml::element(), but does not escape contents.
Definition: Xml.php:132
HistoryPager\revLink
revLink( $rev)
Create a link to view this revision of the page.
Definition: HistoryAction.php:823
Linker\formatRevisionSize
static formatRevisionSize( $size)
Definition: Linker.php:1489
ChangesList\showCharacterDifference
static showCharacterDifference( $old, $new, IContextSource $context=null)
Show formatted char difference.
Definition: ChangesList.php:316
HistoryPager\getQueryInfo
getQueryInfo()
This function should be overridden to provide all parameters needed for the main paged query.
Definition: HistoryAction.php:440
Action\getTitle
getTitle()
Shortcut to get the Title object from the page.
Definition: Action.php:248
Html\submitButton
static submitButton( $contents, array $attrs, array $modifiers=[])
Returns an HTML link element in a string styled as a button (when $wgUseMediaWikiUIEverywhere is enab...
Definition: Html.php:186
format
if the prop value should be in the metadata multi language array format
Definition: hooks.txt:1683
message
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 message
Definition: hooks.txt:2205
HistoryAction\getName
getName()
Return the name of the action this object responds to.
Definition: HistoryAction.php:47
text
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
Definition: All_system_messages.txt:1267
Action\exists
static exists( $name)
Check if a given action is recognised, even if it's disabled.
Definition: Action.php:171
$cache
$cache
Definition: mcc.php:33
Action\$page
$page
Page on which we're performing the action.
Definition: Action.php:46
HistoryAction\requiresUnblock
requiresUnblock()
Whether this action can still be executed by a blocked user.
Definition: HistoryAction.php:55
$rev
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition: hooks.txt:1808
as
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
Xml\dateMenu
static dateMenu( $year, $month)
Definition: Xml.php:169
Html\openElement
static openElement( $element, $attribs=[])
Identical to rawElement(), but has no third parameter and omits the end tag (and the self-closing '/'...
Definition: Html.php:252
HistoryAction\feed
feed( $type)
Output a subscription feed listing recent edits to this page.
Definition: HistoryAction.php:294
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:210
Action\getLanguage
getLanguage()
Shortcut to get the user Language being used for this instance.
Definition: Action.php:238
Linker\revDeleteLink
static revDeleteLink( $query=[], $restricted=false, $delete=true)
Creates a (show/hide) link for deleting revisions/log entries.
Definition: Linker.php:2092
NS_USER
const NS_USER
Definition: Defines.php:66
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:3090
$batch
$batch
Definition: linkcache.txt:23
Action\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: Action.php:209
$content
$content
Definition: pageupdater.txt:72
of
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
Definition: globals.txt:10
ReverseChronologicalPager
Efficient paging for SQL queries.
Definition: ReverseChronologicalPager.php:28
FeedUtils\checkFeedOutput
static checkFeedOutput( $type)
Check whether feeds can be used and that $type is a valid feed type.
Definition: FeedUtils.php:56
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
Html\element
static element( $element, $attribs=[], $contents='')
Identical to rawElement(), but HTML-escapes $contents (like Xml::element()).
Definition: Html.php:232
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
HistoryPager\getStartBody
getStartBody()
Creates begin of history list with a submit button.
Definition: HistoryAction.php:526
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:200
HistoryAction\DIR_PREV
const DIR_PREV
Definition: HistoryAction.php:41
HistoryAction\getArticle
getArticle()
Definition: HistoryAction.php:89
MWTimestamp\getLocalInstance
static getLocalInstance( $ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
Definition: MWTimestamp.php:204
ChangeTags\formatSummaryRow
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
Definition: ChangeTags.php:93
Revision\DELETED_TEXT
const DELETED_TEXT
Definition: Revision.php:47
IndexPager\getNumRows
getNumRows()
Get the number of rows in the result set.
Definition: IndexPager.php:556
Xml\checkLabel
static checkLabel( $label, $name, $id, $checked=false, $attribs=[])
Convenience function to build an HTML checkbox with a label.
Definition: Xml.php:421
$out
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:813
HistoryPager\lastLink
lastLink( $prevRev, $next)
Create a diff-to-previous link for this revision for this page.
Definition: HistoryAction.php:875
$type
$type
Definition: testCompression.php:48