* (bug 8143) Localised parser function names are now correctly case insensitive if...
[lhc/web/wiklou.git] / includes / HistoryPage.php
1 <?php
2 /**
3 * Page history
4 *
5 * Split off from Article.php and Skin.php, 2003-12-22
6 * @file
7 */
8
9 /**
10 * This class handles printing the history page for an article. In order to
11 * be efficient, it uses timestamps rather than offsets for paging, to avoid
12 * costly LIMIT,offset queries.
13 *
14 * Construct it by passing in an Article, and call $h->history() to print the
15 * history.
16 *
17 */
18 class HistoryPage {
19 const DIR_PREV = 0;
20 const DIR_NEXT = 1;
21
22 var $article, $title, $skin;
23
24 /**
25 * Construct a new HistoryPage.
26 *
27 * @param Article $article
28 * @returns nothing
29 */
30 function __construct( $article ) {
31 global $wgUser;
32 $this->article = $article;
33 $this->title = $article->getTitle();
34 $this->skin = $wgUser->getSkin();
35 $this->preCacheMessages();
36 }
37
38 function getArticle() {
39 return $this->article;
40 }
41
42 function getTitle() {
43 return $this->title;
44 }
45
46 /**
47 * As we use the same small set of messages in various methods and that
48 * they are called often, we call them once and save them in $this->message
49 */
50 function preCacheMessages() {
51 // Precache various messages
52 if( !isset( $this->message ) ) {
53 foreach( explode(' ', 'cur last rev-delundel' ) as $msg ) {
54 $this->message[$msg] = wfMsgExt( $msg, array( 'escape') );
55 }
56 }
57 }
58
59 /**
60 * Print the history page for an article.
61 *
62 * @returns nothing
63 */
64 function history() {
65 global $wgOut, $wgRequest, $wgScript;
66
67 /*
68 * Allow client caching.
69 */
70 if( $wgOut->checkLastModified( $this->article->getTouched() ) )
71 return; // Client cache fresh and headers sent, nothing more to do.
72
73 wfProfileIn( __METHOD__ );
74
75 /*
76 * Setup page variables.
77 */
78 $wgOut->setPageTitle( wfMsg( 'history-title', $this->title->getPrefixedText() ) );
79 $wgOut->setPageTitleActionText( wfMsg( 'history_short' ) );
80 $wgOut->setArticleFlag( false );
81 $wgOut->setArticleRelated( true );
82 $wgOut->setRobotPolicy( 'noindex,nofollow' );
83 $wgOut->setSyndicated( true );
84 $wgOut->setFeedAppendQuery( 'action=history' );
85 $wgOut->addScriptFile( 'history.js' );
86
87 $logPage = SpecialPage::getTitleFor( 'Log' );
88 $logLink = $this->skin->link(
89 $logPage,
90 wfMsgHtml( 'viewpagelogs' ),
91 array(),
92 array( 'page' => $this->title->getPrefixedText() ),
93 array( 'known', 'noclasses' )
94 );
95 $wgOut->setSubtitle( $logLink );
96
97 $feedType = $wgRequest->getVal( 'feed' );
98 if( $feedType ) {
99 wfProfileOut( __METHOD__ );
100 return $this->feed( $feedType );
101 }
102
103 /*
104 * Fail if article doesn't exist.
105 */
106 if( !$this->title->exists() ) {
107 $wgOut->addWikiMsg( 'nohistory' );
108 wfProfileOut( __METHOD__ );
109 return;
110 }
111
112 /**
113 * Add date selector to quickly get to a certain time
114 */
115 $year = $wgRequest->getInt( 'year' );
116 $month = $wgRequest->getInt( 'month' );
117 $tagFilter = $wgRequest->getVal( 'tagfilter' );
118 $tagSelector = ChangeTags::buildTagFilterSelector( $tagFilter );
119
120 $action = htmlspecialchars( $wgScript );
121 $wgOut->addHTML(
122 "<form action=\"$action\" method=\"get\" id=\"mw-history-searchform\">" .
123 Xml::fieldset( wfMsg( 'history-fieldset-title' ), false, array( 'id' => 'mw-history-search' ) ) .
124 Xml::hidden( 'title', $this->title->getPrefixedDBKey() ) . "\n" .
125 Xml::hidden( 'action', 'history' ) . "\n" .
126 xml::dateMenu( $year, $month ) . '&nbsp;' .
127 ( $tagSelector ? ( implode( '&nbsp;', $tagSelector ) . '&nbsp;' ) : '' ) .
128 Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "\n" .
129 '</fieldset></form>'
130 );
131
132 wfRunHooks( 'PageHistoryBeforeList', array( &$this->article ) );
133
134 /**
135 * Do the list
136 */
137 $pager = new HistoryPager( $this, $year, $month, $tagFilter );
138 $wgOut->addHTML(
139 $pager->getNavigationBar() .
140 $pager->getBody() .
141 $pager->getNavigationBar()
142 );
143
144 wfProfileOut( __METHOD__ );
145 }
146
147 /**
148 * Fetch an array of revisions, specified by a given limit, offset and
149 * direction. This is now only used by the feeds. It was previously
150 * used by the main UI but that's now handled by the pager.
151 */
152 function fetchRevisions($limit, $offset, $direction) {
153 $dbr = wfGetDB( DB_SLAVE );
154
155 if( $direction == HistoryPage::DIR_PREV )
156 list($dirs, $oper) = array("ASC", ">=");
157 else /* $direction == HistoryPage::DIR_NEXT */
158 list($dirs, $oper) = array("DESC", "<=");
159
160 if( $offset )
161 $offsets = array("rev_timestamp $oper '$offset'");
162 else
163 $offsets = array();
164
165 $page_id = $this->title->getArticleID();
166
167 return $dbr->select( 'revision',
168 Revision::selectFields(),
169 array_merge(array("rev_page=$page_id"), $offsets),
170 __METHOD__,
171 array( 'ORDER BY' => "rev_timestamp $dirs",
172 'USE INDEX' => 'page_timestamp', 'LIMIT' => $limit)
173 );
174 }
175
176 /**
177 * Output a subscription feed listing recent edits to this page.
178 * @param string $type
179 */
180 function feed( $type ) {
181 global $wgFeedClasses, $wgRequest, $wgFeedLimit;
182 if( !FeedUtils::checkFeedOutput($type) ) {
183 return;
184 }
185
186 $feed = new $wgFeedClasses[$type](
187 $this->title->getPrefixedText() . ' - ' .
188 wfMsgForContent( 'history-feed-title' ),
189 wfMsgForContent( 'history-feed-description' ),
190 $this->title->getFullUrl( 'action=history' ) );
191
192 // Get a limit on number of feed entries. Provide a sane default
193 // of 10 if none is defined (but limit to $wgFeedLimit max)
194 $limit = $wgRequest->getInt( 'limit', 10 );
195 if( $limit > $wgFeedLimit || $limit < 1 ) {
196 $limit = 10;
197 }
198 $items = $this->fetchRevisions($limit, 0, HistoryPage::DIR_NEXT);
199
200 $feed->outHeader();
201 if( $items ) {
202 foreach( $items as $row ) {
203 $feed->outItem( $this->feedItem( $row ) );
204 }
205 } else {
206 $feed->outItem( $this->feedEmpty() );
207 }
208 $feed->outFooter();
209 }
210
211 function feedEmpty() {
212 global $wgOut;
213 return new FeedItem(
214 wfMsgForContent( 'nohistory' ),
215 $wgOut->parse( wfMsgForContent( 'history-feed-empty' ) ),
216 $this->title->getFullUrl(),
217 wfTimestamp( TS_MW ),
218 '',
219 $this->title->getTalkPage()->getFullUrl() );
220 }
221
222 /**
223 * Generate a FeedItem object from a given revision table row
224 * Borrows Recent Changes' feed generation functions for formatting;
225 * includes a diff to the previous revision (if any).
226 *
227 * @param $row
228 * @return FeedItem
229 */
230 function feedItem( $row ) {
231 $rev = new Revision( $row );
232 $rev->setTitle( $this->title );
233 $text = FeedUtils::formatDiffRow( $this->title,
234 $this->title->getPreviousRevisionID( $rev->getId() ),
235 $rev->getId(),
236 $rev->getTimestamp(),
237 $rev->getComment() );
238
239 if( $rev->getComment() == '' ) {
240 global $wgContLang;
241 $title = wfMsgForContent( 'history-feed-item-nocomment',
242 $rev->getUserText(),
243 $wgContLang->timeanddate( $rev->getTimestamp() ) );
244 } else {
245 $title = $rev->getUserText() . wfMsgForContent( 'colon-separator' ) . FeedItem::stripComment( $rev->getComment() );
246 }
247
248 return new FeedItem(
249 $title,
250 $text,
251 $this->title->getFullUrl( 'diff=' . $rev->getId() . '&oldid=prev' ),
252 $rev->getTimestamp(),
253 $rev->getUserText(),
254 $this->title->getTalkPage()->getFullUrl() );
255 }
256 }
257
258
259 /**
260 * @ingroup Pager
261 */
262 class HistoryPager extends ReverseChronologicalPager {
263 public $lastRow = false, $counter, $historyPage, $title;
264 protected $oldIdChecked;
265
266 function __construct( $historyPage, $year='', $month='', $tagFilter = '' ) {
267 parent::__construct();
268 $this->historyPage = $historyPage;
269 $this->title = $this->historyPage->title;
270 $this->tagFilter = $tagFilter;
271 $this->getDateCond( $year, $month );
272 }
273
274 // For hook compatibility...
275 function getArticle() {
276 return $this->historyPage->getArticle();
277 }
278
279 function getQueryInfo() {
280 $queryInfo = array(
281 'tables' => array('revision'),
282 'fields' => array_merge( Revision::selectFields(), array('ts_tags') ),
283 'conds' => array('rev_page' => $this->historyPage->title->getArticleID() ),
284 'options' => array( 'USE INDEX' => array('revision' => 'page_timestamp') ),
285 'join_conds' => array( 'tag_summary' => array( 'LEFT JOIN', 'ts_rev_id=rev_id' ) ),
286 );
287 ChangeTags::modifyDisplayQuery( $queryInfo['tables'],
288 $queryInfo['fields'],
289 $queryInfo['conds'],
290 $queryInfo['join_conds'],
291 $queryInfo['options'],
292 $this->tagFilter );
293 wfRunHooks( 'PageHistoryPager::getQueryInfo', array( &$this, &$queryInfo ) );
294 return $queryInfo;
295 }
296
297 function getIndexField() {
298 return 'rev_timestamp';
299 }
300
301 function formatRow( $row ) {
302 if( $this->lastRow ) {
303 $latest = $this->counter == 1 && $this->mIsFirst;
304 $firstInList = $this->counter == 1;
305 $s = $this->historyLine( $this->lastRow, $row, $this->counter++,
306 $this->title->getNotificationTimestamp(), $latest, $firstInList );
307 } else {
308 $s = '';
309 }
310 $this->lastRow = $row;
311 return $s;
312 }
313
314 /**
315 * Creates begin of history list with a submit button
316 *
317 * @return string HTML output
318 */
319 function getStartBody() {
320 global $wgScript, $wgEnableHtmlDiff, $wgUser, $wgOut;
321 $this->lastRow = false;
322 $this->counter = 1;
323 $this->oldIdChecked = 0;
324
325 $wgOut->wrapWikiMsg( "<div class='mw-history-legend'>\n$1</div>", 'histlegend' );
326 $s = '';
327 if( $this->getNumRows() > 1 && $wgUser->isAllowed('deleterevision') ) {
328 $revdel = SpecialPage::getTitleFor( 'Revisiondelete' );
329 $s .= Xml::openElement( 'form',
330 array(
331 'action' => $revdel->getLocalURL( array(
332 'type' => 'revision',
333 'target' => $this->title->getPrefixedDbKey()
334 ) ),
335 'method' => 'post',
336 'id' => 'mw-history-revdeleteform',
337 'style' => 'visibility:hidden;float:right;'
338 )
339 );
340 $s .= Xml::hidden( 'ids', '', array('id'=>'revdel-oldid') );
341 $s .= Xml::submitButton( wfMsg( 'showhideselectedversions' ) );
342 $s .= Xml::closeElement( 'form' );
343 }
344 $s .= Xml::openElement( 'form', array( 'action' => $wgScript,
345 'id' => 'mw-history-compare' ) );
346 $s .= Xml::hidden( 'title', $this->title->getPrefixedDbKey() );
347 if( $wgEnableHtmlDiff ) {
348 $s .= $this->submitButton( wfMsg( 'visualcomparison'),
349 array(
350 'name' => 'htmldiff',
351 'class' => 'historysubmit',
352 'accesskey' => wfMsg( 'accesskey-visualcomparison' ),
353 'title' => wfMsg( 'tooltip-compareselectedversions' ),
354 )
355 );
356 $s .= $this->submitButton( wfMsg( 'wikicodecomparison'),
357 array(
358 'class' => 'historysubmit',
359 'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
360 'title' => wfMsg( 'tooltip-compareselectedversions' ),
361 )
362 );
363 } else {
364 $s .= $this->submitButton( wfMsg( 'compareselectedversions'),
365 array(
366 'class' => 'historysubmit',
367 'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
368 'title' => wfMsg( 'tooltip-compareselectedversions' ),
369 )
370 );
371 }
372 $s .= '<ul id="pagehistory">' . "\n";
373 return $s;
374 }
375
376 function getEndBody() {
377
378 if( $this->lastRow ) {
379 $latest = $this->counter == 1 && $this->mIsFirst;
380 $firstInList = $this->counter == 1;
381 if( $this->mIsBackwards ) {
382 # Next row is unknown, but for UI reasons, probably exists if an offset has been specified
383 if( $this->mOffset == '' ) {
384 $next = null;
385 } else {
386 $next = 'unknown';
387 }
388 } else {
389 # The next row is the past-the-end row
390 $next = $this->mPastTheEndRow;
391 }
392 $s = $this->historyLine( $this->lastRow, $next, $this->counter++,
393 $this->title->getNotificationTimestamp(), $latest, $firstInList );
394 } else {
395 $s = '';
396 }
397
398 global $wgEnableHtmlDiff;
399 $s .= '</ul>';
400 if( $wgEnableHtmlDiff ) {
401 $s .= $this->submitButton( wfMsg( 'visualcomparison'),
402 array(
403 'name' => 'htmldiff',
404 'class' => 'historysubmit',
405 'accesskey' => wfMsg( 'accesskey-visualcomparison' ),
406 'title' => wfMsg( 'tooltip-compareselectedversions' ),
407 )
408 );
409 $s .= $this->submitButton( wfMsg( 'wikicodecomparison'),
410 array(
411 'class' => 'historysubmit',
412 'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
413 'title' => wfMsg( 'tooltip-compareselectedversions' ),
414 )
415 );
416 } else {
417 $s .= $this->submitButton( wfMsg( 'compareselectedversions'),
418 array(
419 'class' => 'historysubmit',
420 'accesskey' => wfMsg( 'accesskey-compareselectedversions' ),
421 'title' => wfMsg( 'tooltip-compareselectedversions' ),
422 )
423 );
424 }
425 $s .= '</form>';
426 return $s;
427 }
428
429 /**
430 * Creates a submit button
431 *
432 * @param array $attributes attributes
433 * @return string HTML output for the submit button
434 */
435 function submitButton($message, $attributes = array() ) {
436 # Disable submit button if history has 1 revision only
437 if( $this->getNumRows() > 1 ) {
438 return Xml::submitButton( $message , $attributes );
439 } else {
440 return '';
441 }
442 }
443
444 /**
445 * Returns a row from the history printout.
446 *
447 * @todo document some more, and maybe clean up the code (some params redundant?)
448 *
449 * @param Row $row The database row corresponding to the previous line.
450 * @param mixed $next The database row corresponding to the next line.
451 * @param int $counter Apparently a counter of what row number we're at, counted from the top row = 1.
452 * @param $notificationtimestamp
453 * @param bool $latest Whether this row corresponds to the page's latest revision.
454 * @param bool $firstInList Whether this row corresponds to the first displayed on this history page.
455 * @return string HTML output for the row
456 */
457 function historyLine( $row, $next, $counter = '', $notificationtimestamp = false,
458 $latest = false, $firstInList = false )
459 {
460 global $wgUser, $wgLang;
461 $rev = new Revision( $row );
462 $rev->setTitle( $this->title );
463
464 $curlink = $this->curLink( $rev, $latest );
465 $lastlink = $this->lastLink( $rev, $next, $counter );
466 $diffButtons = $this->diffButtons( $rev, $firstInList, $counter );
467 $link = $this->revLink( $rev );
468 $classes = array();
469
470 $s = "($curlink) ($lastlink) $diffButtons";
471
472 if( $wgUser->isAllowed( 'deleterevision' ) ) {
473 // Hide JS by default for non-JS browsing
474 $hidden = array( 'style' => 'display:none' );
475 // If revision was hidden from sysops
476 if( !$rev->userCan( Revision::DELETED_RESTRICTED ) ) {
477 $del = Xml::check( 'deleterevisions', false,
478 $hidden + array('disabled' => 'disabled') );
479 $del .= Xml::tags( 'span', array( 'class'=>'mw-revdelundel-link' ),
480 '(' . $this->historyPage->message['rev-delundel'] . ')' );
481 // Otherwise, show the link...
482 } else {
483 $id = $rev->getId();
484 $jsCall = "updateShowHideForm($id,this.checked)";
485 $del = Xml::check( 'showhiderevisions', false,
486 $hidden + array(
487 'onchange' => $jsCall,
488 'id' => "mw-revdel-$id" ) );
489 $query = array(
490 'type' => 'revision',
491 'target' => $this->title->getPrefixedDbkey(),
492 'ids' => $rev->getId() );
493 $del .= $this->getSkin()->revDeleteLink( $query,
494 $rev->isDeleted( Revision::DELETED_RESTRICTED ) );
495 }
496 $s .= " $del ";
497 }
498
499 $s .= " $link";
500 $s .= " <span class='history-user'>" . $this->getSkin()->revUserTools( $rev, true ) . "</span>";
501
502 if( $rev->isMinor() ) {
503 $s .= ' ' . ChangesList::flag( 'minor' );
504 }
505
506 if( !is_null( $size = $rev->getSize() ) && !$rev->isDeleted( Revision::DELETED_TEXT ) ) {
507 $s .= ' ' . $this->getSkin()->formatRevisionSize( $size );
508 }
509
510 $s .= $this->getSkin()->revComment( $rev, false, true );
511
512 if( $notificationtimestamp && ($row->rev_timestamp >= $notificationtimestamp) ) {
513 $s .= ' <span class="updatedmarker">' . wfMsgHtml( 'updatedmarker' ) . '</span>';
514 }
515
516 $tools = array();
517
518 if( !is_null( $next ) && is_object( $next ) ) {
519 if( $latest && $this->title->userCan( 'rollback' ) && $this->title->userCan( 'edit' ) ) {
520 $tools[] = '<span class="mw-rollback-link">'.
521 $this->getSkin()->buildRollbackLink( $rev ).'</span>';
522 }
523
524 if( $this->title->quickUserCan( 'edit' )
525 && !$rev->isDeleted( Revision::DELETED_TEXT )
526 && !$next->rev_deleted & Revision::DELETED_TEXT )
527 {
528 # Create undo tooltip for the first (=latest) line only
529 $undoTooltip = $latest
530 ? array( 'title' => wfMsg( 'tooltip-undo' ) )
531 : array();
532 $undolink = $this->getSkin()->link(
533 $this->title,
534 wfMsgHtml( 'editundo' ),
535 $undoTooltip,
536 array( 'action' => 'edit', 'undoafter' => $next->rev_id, 'undo' => $rev->getId() ),
537 array( 'known', 'noclasses' )
538 );
539 $tools[] = "<span class=\"mw-history-undo\">{$undolink}</span>";
540 }
541 }
542
543 if( $tools ) {
544 $s .= ' (' . $wgLang->pipeList( $tools ) . ')';
545 }
546
547 # Tags
548 list($tagSummary, $newClasses) = ChangeTags::formatSummaryRow( $row->ts_tags, 'history' );
549 $classes = array_merge( $classes, $newClasses );
550 $s .= " $tagSummary";
551
552 wfRunHooks( 'PageHistoryLineEnding', array( $this, &$row , &$s ) );
553
554 $attribs = array();
555 if ( $classes ) {
556 $attribs['class'] = implode( ' ', $classes );
557 }
558
559 return Xml::tags( 'li', $attribs, $s ) . "\n";
560 }
561
562 /**
563 * Create a link to view this revision of the page
564 * @param Revision $rev
565 * @returns string
566 */
567 function revLink( $rev ) {
568 global $wgLang;
569 $date = $wgLang->timeanddate( wfTimestamp(TS_MW, $rev->getTimestamp()), true );
570 $date = htmlspecialchars( $date );
571 if( !$rev->isDeleted( Revision::DELETED_TEXT ) ) {
572 $link = $this->getSkin()->link(
573 $this->title,
574 $date,
575 array(),
576 array( 'oldid' => $rev->getId() ),
577 array( 'known', 'noclasses' )
578 );
579 } else {
580 $link = "<span class=\"history-deleted\">$date</span>";
581 }
582 return $link;
583 }
584
585 /**
586 * Create a diff-to-current link for this revision for this page
587 * @param Revision $rev
588 * @param Bool $latest, this is the latest revision of the page?
589 * @returns string
590 */
591 function curLink( $rev, $latest ) {
592 $cur = $this->historyPage->message['cur'];
593 if( $latest || !$rev->userCan( Revision::DELETED_TEXT ) ) {
594 return $cur;
595 } else {
596 return $this->getSkin()->link(
597 $this->title,
598 $cur,
599 array(),
600 array(
601 'diff' => $this->title->getLatestRevID(),
602 'oldid' => $rev->getId()
603 ),
604 array( 'known', 'noclasses' )
605 );
606 }
607 }
608
609 /**
610 * Create a diff-to-previous link for this revision for this page.
611 * @param Revision $prevRev, the previous revision
612 * @param mixed $next, the newer revision
613 * @param int $counter, what row on the history list this is
614 * @returns string
615 */
616 function lastLink( $prevRev, $next, $counter ) {
617 $last = $this->historyPage->message['last'];
618 # $next may either be a Row, null, or "unkown"
619 $nextRev = is_object($next) ? new Revision( $next ) : $next;
620 if( is_null($next) ) {
621 # Probably no next row
622 return $last;
623 } elseif( $next === 'unknown' ) {
624 # Next row probably exists but is unknown, use an oldid=prev link
625 return $this->getSkin()->link(
626 $this->title,
627 $last,
628 array(),
629 array(
630 'diff' => $prevRev->getId(),
631 'oldid' => 'prev'
632 ),
633 array( 'known', 'noclasses' )
634 );
635 } elseif( !$prevRev->userCan(Revision::DELETED_TEXT) || !$nextRev->userCan(Revision::DELETED_TEXT) ) {
636 return $last;
637 } else {
638 return $this->getSkin()->link(
639 $this->title,
640 $last,
641 array(),
642 array(
643 'diff' => $prevRev->getId(),
644 'oldid' => $next->rev_id
645 ),
646 array( 'known', 'noclasses' )
647 );
648 }
649 }
650
651 /**
652 * Create radio buttons for page history
653 *
654 * @param object $rev Revision
655 * @param bool $firstInList Is this version the first one?
656 * @param int $counter A counter of what row number we're at, counted from the top row = 1.
657 * @return string HTML output for the radio buttons
658 */
659 function diffButtons( $rev, $firstInList, $counter ) {
660 if( $this->getNumRows() > 1 ) {
661 $id = $rev->getId();
662 $radio = array( 'type' => 'radio', 'value' => $id );
663 /** @todo: move title texts to javascript */
664 if( $firstInList ) {
665 $first = Xml::element( 'input',
666 array_merge( $radio, array(
667 'style' => 'visibility:hidden',
668 'name' => 'oldid',
669 'id' => 'mw-oldid-null' ) )
670 );
671 $checkmark = array( 'checked' => 'checked' );
672 } else {
673 # Check visibility of old revisions
674 if( !$rev->userCan( Revision::DELETED_TEXT ) ) {
675 $radio['disabled'] = 'disabled';
676 $checkmark = array(); // We will check the next possible one
677 } else if( $counter == 2 || !$this->oldIdChecked ) {
678 $checkmark = array( 'checked' => 'checked' );
679 $this->oldIdChecked = $id;
680 } else {
681 $checkmark = array();
682 }
683 $first = Xml::element( 'input',
684 array_merge( $radio, $checkmark, array(
685 'name' => 'oldid',
686 'id' => "mw-oldid-$id" ) ) );
687 $checkmark = array();
688 }
689 $second = Xml::element( 'input',
690 array_merge( $radio, $checkmark, array(
691 'name' => 'diff',
692 'id' => "mw-diff-$id" ) ) );
693 return $first . $second;
694 } else {
695 return '';
696 }
697 }
698 }
699
700 /**
701 * Backwards-compatibility aliases
702 */
703 class PageHistory extends HistoryPage {}
704 class PageHistoryPager extends HistoryPager {}
705