5 * Split off from Article.php and Skin.php, 2003-12-22
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
27 * This class handles printing the history page for an article. In order to
28 * be efficient, it uses timestamps rather than offsets for paging, to avoid
29 * costly LIMIT,offset queries.
31 * Construct it by passing in an Article, and call $h->history() to print the
36 class HistoryAction
extends FormlessAction
{
40 public function getName() {
44 public function requiresWrite() {
48 public function requiresUnblock() {
52 protected function getPageTitle() {
53 return $this->msg( 'history-title', $this->getTitle()->getPrefixedText() )->text();
56 protected function getDescription() {
57 // Creation of a subtitle link pointing to [[Special:Log]]
58 return Linker
::linkKnown(
59 SpecialPage
::getTitleFor( 'Log' ),
60 $this->msg( 'viewpagelogs' )->escaped(),
62 array( 'page' => $this->getTitle()->getPrefixedText() )
67 * Get the Article object we are working on.
70 public function getArticle() {
75 * As we use the same small set of messages in various methods and that
76 * they are called often, we call them once and save them in $this->message
78 private function preCacheMessages() {
79 // Precache various messages
80 if ( !isset( $this->message
) ) {
81 $msgs = array( 'cur', 'last', 'pipe-separator' );
82 foreach ( $msgs as $msg ) {
83 $this->message
[$msg] = $this->msg( $msg )->escaped();
89 * Print the history page for an article.
92 global $wgScript, $wgUseFileCache;
94 $out = $this->getOutput();
95 $request = $this->getRequest();
98 * Allow client caching.
100 if ( $out->checkLastModified( $this->page
->getTouched() ) ) {
101 return; // Client cache fresh and headers sent, nothing more to do.
104 wfProfileIn( __METHOD__
);
106 $this->preCacheMessages();
108 # Fill in the file cache if not set already
109 if ( $wgUseFileCache && HTMLFileCache
::useFileCache( $this->getContext() ) ) {
110 $cache = HTMLFileCache
::newFromTitle( $this->getTitle(), 'history' );
111 if ( !$cache->isCacheGood( /* Assume up to date */ ) ) {
112 ob_start( array( &$cache, 'saveToFileCache' ) );
116 // Setup page variables.
117 $out->setFeedAppendQuery( 'action=history' );
118 $out->addModules( array( 'mediawiki.legacy.history', 'mediawiki.action.history' ) );
120 // Handle atom/RSS feeds.
121 $feedType = $request->getVal( 'feed' );
123 $this->feed( $feedType );
124 wfProfileOut( __METHOD__
);
128 // Fail nicely if article doesn't exist.
129 if ( !$this->page
->exists() ) {
130 $out->addWikiMsg( 'nohistory' );
131 # show deletion/move log if there is an entry
132 LogEventsList
::showLogExtract(
134 array( 'delete', 'move' ),
138 'conds' => array( "log_action != 'revision'" ),
139 'showIfEmpty' => false,
140 'msgKey' => array( 'moveddeleted-notice' )
143 wfProfileOut( __METHOD__
);
148 * Add date selector to quickly get to a certain time
150 $year = $request->getInt( 'year' );
151 $month = $request->getInt( 'month' );
152 $tagFilter = $request->getVal( 'tagfilter' );
153 $tagSelector = ChangeTags
::buildTagFilterSelector( $tagFilter );
156 * Option to show only revisions that have been (partially) hidden via RevisionDelete
158 if ( $request->getBool( 'deleted' ) ) {
159 $conds = array( 'rev_deleted != 0' );
163 if ( $this->getUser()->isAllowed( 'deletedhistory' ) ) {
164 $checkDeleted = Xml
::checkLabel( $this->msg( 'history-show-deleted' )->text(),
165 'deleted', 'mw-show-deleted-only', $request->getBool( 'deleted' ) ) . "\n";
170 // Add the general form
171 $action = htmlspecialchars( $wgScript );
173 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
175 $this->msg( 'history-fieldset-title' )->text(),
177 array( 'id' => 'mw-history-search' )
179 Html
::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n" .
180 Html
::hidden( 'action', 'history' ) . "\n" .
181 Xml
::dateMenu( ( $year == null ? MWTimestamp
::getLocalInstance()->format( 'Y' ) : $year ), $month ) . ' ' .
182 ( $tagSelector ?
( implode( ' ', $tagSelector ) . ' ' ) : '' ) .
184 Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() ) . "\n" .
188 wfRunHooks( 'PageHistoryBeforeList', array( &$this->page
, $this->getContext() ) );
190 // Create and output the list.
191 $pager = new HistoryPager( $this, $year, $month, $tagFilter, $conds );
193 $pager->getNavigationBar() .
195 $pager->getNavigationBar()
197 $out->preventClickjacking( $pager->getPreventClickjacking() );
199 wfProfileOut( __METHOD__
);
203 * Fetch an array of revisions, specified by a given limit, offset and
204 * direction. This is now only used by the feeds. It was previously
205 * used by the main UI but that's now handled by the pager.
207 * @param $limit Integer: the limit number of revisions to get
208 * @param $offset Integer
209 * @param $direction Integer: either HistoryPage::DIR_PREV or HistoryPage::DIR_NEXT
210 * @return ResultWrapper
212 function fetchRevisions( $limit, $offset, $direction ) {
213 // Fail if article doesn't exist.
214 if ( !$this->getTitle()->exists() ) {
215 return new FakeResultWrapper( array() );
218 $dbr = wfGetDB( DB_SLAVE
);
220 if ( $direction == HistoryPage
::DIR_PREV
) {
221 list( $dirs, $oper ) = array( "ASC", ">=" );
222 } else { /* $direction == HistoryPage::DIR_NEXT */
223 list( $dirs, $oper ) = array( "DESC", "<=" );
227 $offsets = array( "rev_timestamp $oper " . $dbr->addQuotes( $dbr->timestamp( $offset ) ) );
232 $page_id = $this->page
->getId();
234 return $dbr->select( 'revision',
235 Revision
::selectFields(),
236 array_merge( array( 'rev_page' => $page_id ), $offsets ),
238 array( 'ORDER BY' => "rev_timestamp $dirs",
239 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit )
244 * Output a subscription feed listing recent edits to this page.
246 * @param string $type feed type
248 function feed( $type ) {
249 global $wgFeedClasses, $wgFeedLimit;
250 if ( !FeedUtils
::checkFeedOutput( $type ) ) {
253 $request = $this->getRequest();
255 $feed = new $wgFeedClasses[$type](
256 $this->getTitle()->getPrefixedText() . ' - ' .
257 $this->msg( 'history-feed-title' )->inContentLanguage()->text(),
258 $this->msg( 'history-feed-description' )->inContentLanguage()->text(),
259 $this->getTitle()->getFullURL( 'action=history' )
262 // Get a limit on number of feed entries. Provide a sane default
263 // of 10 if none is defined (but limit to $wgFeedLimit max)
264 $limit = $request->getInt( 'limit', 10 );
265 $limit = min( max( $limit, 1 ), $wgFeedLimit );
267 $items = $this->fetchRevisions( $limit, 0, HistoryPage
::DIR_NEXT
);
269 // Generate feed elements enclosed between header and footer.
271 if ( $items->numRows() ) {
272 foreach ( $items as $row ) {
273 $feed->outItem( $this->feedItem( $row ) );
276 $feed->outItem( $this->feedEmpty() );
281 function feedEmpty() {
283 $this->msg( 'nohistory' )->inContentLanguage()->text(),
284 $this->msg( 'history-feed-empty' )->inContentLanguage()->parseAsBlock(),
285 $this->getTitle()->getFullURL(),
286 wfTimestamp( TS_MW
),
288 $this->getTitle()->getTalkPage()->getFullURL()
293 * Generate a FeedItem object from a given revision table row
294 * Borrows Recent Changes' feed generation functions for formatting;
295 * includes a diff to the previous revision (if any).
297 * @param $row Object: database row
300 function feedItem( $row ) {
301 $rev = new Revision( $row );
302 $rev->setTitle( $this->getTitle() );
303 $text = FeedUtils
::formatDiffRow(
305 $this->getTitle()->getPreviousRevisionID( $rev->getId() ),
307 $rev->getTimestamp(),
310 if ( $rev->getComment() == '' ) {
312 $title = $this->msg( 'history-feed-item-nocomment',
314 $wgContLang->timeanddate( $rev->getTimestamp() ),
315 $wgContLang->date( $rev->getTimestamp() ),
316 $wgContLang->time( $rev->getTimestamp() ) )->inContentLanguage()->text();
318 $title = $rev->getUserText() .
319 $this->msg( 'colon-separator' )->inContentLanguage()->text() .
320 FeedItem
::stripComment( $rev->getComment() );
325 $this->getTitle()->getFullURL( 'diff=' . $rev->getId() . '&oldid=prev' ),
326 $rev->getTimestamp(),
328 $this->getTitle()->getTalkPage()->getFullURL()
337 class HistoryPager
extends ReverseChronologicalPager
{
338 public $lastRow = false, $counter, $historyPage, $buttons, $conds;
339 protected $oldIdChecked;
340 protected $preventClickjacking = false;
344 protected $parentLens;
346 function __construct( $historyPage, $year = '', $month = '', $tagFilter = '', $conds = array() ) {
347 parent
::__construct( $historyPage->getContext() );
348 $this->historyPage
= $historyPage;
349 $this->tagFilter
= $tagFilter;
350 $this->getDateCond( $year, $month );
351 $this->conds
= $conds;
354 // For hook compatibility...
355 function getArticle() {
356 return $this->historyPage
->getArticle();
359 function getSqlComment() {
360 if ( $this->conds
) {
361 return 'history page filtered'; // potentially slow, see CR r58153
363 return 'history page unfiltered';
367 function getQueryInfo() {
369 'tables' => array( 'revision', 'user' ),
370 'fields' => array_merge( Revision
::selectFields(), Revision
::selectUserFields() ),
371 'conds' => array_merge(
372 array( 'rev_page' => $this->getWikiPage()->getId() ),
374 'options' => array( 'USE INDEX' => array( 'revision' => 'page_timestamp' ) ),
375 'join_conds' => array(
376 'user' => Revision
::userJoinCond(),
377 'tag_summary' => array( 'LEFT JOIN', 'ts_rev_id=rev_id' ) ),
379 ChangeTags
::modifyDisplayQuery(
380 $queryInfo['tables'],
381 $queryInfo['fields'],
383 $queryInfo['join_conds'],
384 $queryInfo['options'],
387 wfRunHooks( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
391 function getIndexField() {
392 return 'rev_timestamp';
395 function formatRow( $row ) {
396 if ( $this->lastRow
) {
397 $latest = ( $this->counter
== 1 && $this->mIsFirst
);
398 $firstInList = $this->counter
== 1;
400 $s = $this->historyLine( $this->lastRow
, $row,
401 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
405 $this->lastRow
= $row;
409 function doBatchLookups() {
410 # Do a link batch query
411 $this->mResult
->seek( 0 );
412 $batch = new LinkBatch();
414 foreach ( $this->mResult
as $row ) {
415 if ( $row->rev_parent_id
) {
416 $revIds[] = $row->rev_parent_id
;
418 if ( !is_null( $row->user_name
) ) {
419 $batch->add( NS_USER
, $row->user_name
);
420 $batch->add( NS_USER_TALK
, $row->user_name
);
421 } else { # for anons or usernames of imported revisions
422 $batch->add( NS_USER
, $row->rev_user_text
);
423 $batch->add( NS_USER_TALK
, $row->rev_user_text
);
426 $this->parentLens
= Revision
::getParentLengths( $this->mDb
, $revIds );
428 $this->mResult
->seek( 0 );
432 * Creates begin of history list with a submit button
434 * @return string HTML output
436 function getStartBody() {
438 $this->lastRow
= false;
440 $this->oldIdChecked
= 0;
442 $this->getOutput()->wrapWikiMsg( "<div class='mw-history-legend'>\n$1\n</div>", 'histlegend' );
443 $s = Html
::openElement( 'form', array( 'action' => $wgScript,
444 'id' => 'mw-history-compare' ) ) . "\n";
445 $s .= Html
::hidden( 'title', $this->getTitle()->getPrefixedDBkey() ) . "\n";
446 $s .= Html
::hidden( 'action', 'historysubmit' ) . "\n";
448 // Button container stored in $this->buttons for re-use in getEndBody()
449 $this->buttons
= '<div>';
450 $this->buttons
.= $this->submitButton( $this->msg( 'compareselectedversions' )->text(),
451 array( 'class' => 'historysubmit mw-history-compareselectedversions-button' )
452 + Linker
::tooltipAndAccesskeyAttribs( 'compareselectedversions' )
455 if ( $this->getUser()->isAllowed( 'deleterevision' ) ) {
456 $this->buttons
.= $this->getRevisionButton( 'revisiondelete', 'showhideselectedversions' );
458 $this->buttons
.= '</div>';
460 $s .= $this->buttons
;
461 $s .= '<ul id="pagehistory">' . "\n";
465 private function getRevisionButton( $name, $msg ) {
466 $this->preventClickjacking();
467 # Note bug #20966, <button> is non-standard in IE<8
468 $element = Html
::element( 'button',
473 'class' => "historysubmit mw-history-$name-button",
475 $this->msg( $msg )->text()
480 function getEndBody() {
481 if ( $this->lastRow
) {
482 $latest = $this->counter
== 1 && $this->mIsFirst
;
483 $firstInList = $this->counter
== 1;
484 if ( $this->mIsBackwards
) {
485 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
486 if ( $this->mOffset
== '' ) {
492 # The next row is the past-the-end row
493 $next = $this->mPastTheEndRow
;
496 $s = $this->historyLine( $this->lastRow
, $next,
497 $this->getTitle()->getNotificationTimestamp( $this->getUser() ), $latest, $firstInList );
502 # Add second buttons only if there is more than one rev
503 if ( $this->getNumRows() > 2 ) {
504 $s .= $this->buttons
;
511 * Creates a submit button
513 * @param string $message text of the submit button, will be escaped
514 * @param array $attributes attributes
515 * @return String: HTML output for the submit button
517 function submitButton( $message, $attributes = array() ) {
518 # Disable submit button if history has 1 revision only
519 if ( $this->getNumRows() > 1 ) {
520 return Xml
::submitButton( $message, $attributes );
527 * Returns a row from the history printout.
529 * @todo document some more, and maybe clean up the code (some params redundant?)
531 * @param $row Object: the database row corresponding to the previous line.
532 * @param $next Mixed: the database row corresponding to the next line. (chronologically previous)
533 * @param $notificationtimestamp
534 * @param $latest Boolean: whether this row corresponds to the page's latest revision.
535 * @param $firstInList Boolean: whether this row corresponds to the first displayed on this history page.
536 * @return String: HTML output for the row
538 function historyLine( $row, $next, $notificationtimestamp = false,
539 $latest = false, $firstInList = false )
541 $rev = new Revision( $row );
542 $rev->setTitle( $this->getTitle() );
544 if ( is_object( $next ) ) {
545 $prevRev = new Revision( $next );
546 $prevRev->setTitle( $this->getTitle() );
551 $curlink = $this->curLink( $rev, $latest );
552 $lastlink = $this->lastLink( $rev, $next );
553 $diffButtons = $this->diffButtons( $rev, $firstInList );
554 $histLinks = Html
::rawElement(
556 array( 'class' => 'mw-history-histlinks' ),
557 $this->msg( 'parentheses' )->rawParams( $curlink . $this->historyPage
->message
['pipe-separator'] . $lastlink )->escaped()
559 $s = $histLinks . $diffButtons;
561 $link = $this->revLink( $rev );
565 $user = $this->getUser();
566 // Show checkboxes for each revision
567 if ( $user->isAllowed( 'deleterevision' ) ) {
568 $this->preventClickjacking();
569 // If revision was hidden from sysops, disable the checkbox
570 if ( !$rev->userCan( Revision
::DELETED_RESTRICTED
, $user ) ) {
571 $del = Xml
::check( 'deleterevisions', false, array( 'disabled' => 'disabled' ) );
572 // Otherwise, enable the checkbox...
574 $del = Xml
::check( 'showhiderevisions', false,
575 array( 'name' => 'ids[' . $rev->getId() . ']' ) );
577 // User can only view deleted revisions...
578 } elseif ( $rev->getVisibility() && $user->isAllowed( 'deletedhistory' ) ) {
579 // If revision was hidden from sysops, disable the link
580 if ( !$rev->userCan( Revision
::DELETED_RESTRICTED
, $user ) ) {
581 $del = Linker
::revDeleteLinkDisabled( false );
582 // Otherwise, show the link...
584 $query = array( 'type' => 'revision',
585 'target' => $this->getTitle()->getPrefixedDBkey(), 'ids' => $rev->getId() );
586 $del .= Linker
::revDeleteLink( $query,
587 $rev->isDeleted( Revision
::DELETED_RESTRICTED
), false );
594 $lang = $this->getLanguage();
595 $dirmark = $lang->getDirMark();
599 $s .= " <span class='history-user'>" .
600 Linker
::revUserTools( $rev, true ) . "</span>";
603 if ( $rev->isMinor() ) {
604 $s .= ' ' . ChangesList
::flag( 'minor' );
607 # Sometimes rev_len isn't populated
608 if ( $rev->getSize() !== null ) {
609 # Size is always public data
610 $prevSize = isset( $this->parentLens
[$row->rev_parent_id
] )
611 ?
$this->parentLens
[$row->rev_parent_id
]
613 $sDiff = ChangesList
::showCharacterDifference( $prevSize, $rev->getSize() );
614 $fSize = Linker
::formatRevisionSize( $rev->getSize() );
615 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . "$fSize $sDiff";
618 # Text following the character difference is added just before running hooks
619 $s2 = Linker
::revComment( $rev, false, true );
621 if ( $notificationtimestamp && ( $row->rev_timestamp
>= $notificationtimestamp ) ) {
622 $s2 .= ' <span class="updatedmarker">' . $this->msg( 'updatedmarker' )->escaped() . '</span>';
623 $classes[] = 'mw-history-line-updated';
628 # Rollback and undo links
629 if ( $prevRev && $this->getTitle()->quickUserCan( 'edit', $user ) ) {
630 if ( $latest && $this->getTitle()->quickUserCan( 'rollback', $user ) ) {
631 // Get a rollback link without the brackets
632 $rollbackLink = Linker
::generateRollback( $rev, $this->getContext(), array( 'verify', 'noBrackets' ) );
633 if ( $rollbackLink ) {
634 $this->preventClickjacking();
635 $tools[] = $rollbackLink;
639 if ( !$rev->isDeleted( Revision
::DELETED_TEXT
)
640 && !$prevRev->isDeleted( Revision
::DELETED_TEXT
) )
642 # Create undo tooltip for the first (=latest) line only
643 $undoTooltip = $latest
644 ?
array( 'title' => $this->msg( 'tooltip-undo' )->text() )
646 $undolink = Linker
::linkKnown(
648 $this->msg( 'editundo' )->escaped(),
652 'undoafter' => $prevRev->getId(),
653 'undo' => $rev->getId()
656 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
659 // Allow extension to add their own links here
660 wfRunHooks( 'HistoryRevisionTools', array( $rev, &$tools ) );
663 $s2 .= ' ' . $this->msg( 'parentheses' )->rawParams( $lang->pipeList( $tools ) )->escaped();
667 list( $tagSummary, $newClasses ) = ChangeTags
::formatSummaryRow( $row->ts_tags
, 'history' );
668 $classes = array_merge( $classes, $newClasses );
669 if ( $tagSummary !== '' ) {
670 $s2 .= " $tagSummary";
673 # Include separator between character difference and following text
675 $s .= ' <span class="mw-changeslist-separator">. .</span> ' . $s2;
678 wfRunHooks( 'PageHistoryLineEnding', array( $this, &$row, &$s, &$classes ) );
682 $attribs['class'] = implode( ' ', $classes );
685 return Xml
::tags( 'li', $attribs, $s ) . "\n";
689 * Create a link to view this revision of the page
691 * @param $rev Revision
694 function revLink( $rev ) {
695 $date = $this->getLanguage()->userTimeAndDate( $rev->getTimestamp(), $this->getUser() );
696 $date = htmlspecialchars( $date );
697 if ( $rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
698 $link = Linker
::linkKnown(
701 array( 'class' => 'mw-changeslist-date' ),
702 array( 'oldid' => $rev->getId() )
707 if ( $rev->isDeleted( Revision
::DELETED_TEXT
) ) {
708 $link = "<span class=\"history-deleted\">$link</span>";
714 * Create a diff-to-current link for this revision for this page
716 * @param $rev Revision
717 * @param $latest Boolean: this is the latest revision of the page?
720 function curLink( $rev, $latest ) {
721 $cur = $this->historyPage
->message
['cur'];
722 if ( $latest ||
!$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
725 return Linker
::linkKnown(
730 'diff' => $this->getWikiPage()->getLatest(),
731 'oldid' => $rev->getId()
738 * Create a diff-to-previous link for this revision for this page.
740 * @param $prevRev Revision: the previous revision
741 * @param $next Mixed: the newer revision
744 function lastLink( $prevRev, $next ) {
745 $last = $this->historyPage
->message
['last'];
746 # $next may either be a Row, null, or "unkown"
747 $nextRev = is_object( $next ) ?
new Revision( $next ) : $next;
748 if ( is_null( $next ) ) {
749 # Probably no next row
751 } elseif ( $next === 'unknown' ) {
752 # Next row probably exists but is unknown, use an oldid=prev link
753 return Linker
::linkKnown(
758 'diff' => $prevRev->getId(),
762 } elseif ( !$prevRev->userCan( Revision
::DELETED_TEXT
, $this->getUser() )
763 ||
!$nextRev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) )
767 return Linker
::linkKnown(
772 'diff' => $prevRev->getId(),
773 'oldid' => $next->rev_id
780 * Create radio buttons for page history
782 * @param $rev Revision object
783 * @param $firstInList Boolean: is this version the first one?
785 * @return String: HTML output for the radio buttons
787 function diffButtons( $rev, $firstInList ) {
788 if ( $this->getNumRows() > 1 ) {
790 $radio = array( 'type' => 'radio', 'value' => $id );
791 /** @todo Move title texts to javascript */
792 if ( $firstInList ) {
793 $first = Xml
::element( 'input',
794 array_merge( $radio, array(
795 'style' => 'visibility:hidden',
797 'id' => 'mw-oldid-null' ) )
799 $checkmark = array( 'checked' => 'checked' );
801 # Check visibility of old revisions
802 if ( !$rev->userCan( Revision
::DELETED_TEXT
, $this->getUser() ) ) {
803 $radio['disabled'] = 'disabled';
804 $checkmark = array(); // We will check the next possible one
805 } elseif ( !$this->oldIdChecked
) {
806 $checkmark = array( 'checked' => 'checked' );
807 $this->oldIdChecked
= $id;
809 $checkmark = array();
811 $first = Xml
::element( 'input',
812 array_merge( $radio, $checkmark, array(
814 'id' => "mw-oldid-$id" ) ) );
815 $checkmark = array();
817 $second = Xml
::element( 'input',
818 array_merge( $radio, $checkmark, array(
820 'id' => "mw-diff-$id" ) ) );
821 return $first . $second;
828 * This is called if a write operation is possible from the generated HTML
830 function preventClickjacking( $enable = true ) {
831 $this->preventClickjacking
= $enable;
835 * Get the "prevent clickjacking" flag
838 function getPreventClickjacking() {
839 return $this->preventClickjacking
;
844 * Backwards-compatibility alias
846 class HistoryPage
extends HistoryAction
{
847 public function __construct( Page
$article ) { # Just to make it public
848 parent
::__construct( $article );
851 public function history() {