3 * Generates a list of changes using an Enhanced system (uses javascript).
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
23 class EnhancedChangesList
extends ChangesList
{
26 * @var RCCacheEntryFactory
28 protected $cacheEntryFactory;
31 * @var array Array of array of RCCacheEntry
38 protected $templateParser;
41 * @param IContextSource|Skin $obj
42 * @param array $filterGroups Array of ChangesListFilterGroup objects (currently optional)
45 public function __construct( $obj, array $filterGroups = [] ) {
46 if ( $obj instanceof Skin
) {
47 // @todo: deprecate constructing with Skin
48 $context = $obj->getContext();
50 if ( !$obj instanceof IContextSource
) {
51 throw new MWException( 'EnhancedChangesList must be constructed with a '
52 . 'context source or skin.' );
58 parent
::__construct( $context, $filterGroups );
60 // message is set by the parent ChangesList class
61 $this->cacheEntryFactory
= new RCCacheEntryFactory(
66 $this->templateParser
= new TemplateParser();
70 * Add the JavaScript file for enhanced changeslist
73 public function beginRecentChangesList() {
75 $this->rcMoveIndex
= 0;
76 $this->rcCacheIndex
= 0;
78 $this->rclistOpen
= false;
79 $this->getOutput()->addModuleStyles( [
80 'mediawiki.special.changeslist',
81 'mediawiki.special.changeslist.enhanced',
83 $this->getOutput()->addModules( [
84 'jquery.makeCollapsible',
88 return '<div class="mw-changeslist">';
92 * Format a line for enhanced recentchange (aka with javascript and block of lines).
94 * @param RecentChange &$rc
95 * @param bool $watched
96 * @param int $linenumber (default null)
100 public function recentChangesLine( &$rc, $watched = false, $linenumber = null ) {
101 $date = $this->getLanguage()->userDate(
102 $rc->mAttribs
['rc_timestamp'],
105 if ( $this->lastdate
=== '' ) {
106 $this->lastdate
= $date;
111 # If it's a new day, flush the cache and update $this->lastdate
112 if ( $date !== $this->lastdate
) {
113 # Process current cache (uses $this->lastdate to generate a heading)
114 $ret = $this->recentChangesBlock();
115 $this->rc_cache
= [];
116 $this->lastdate
= $date;
119 $cacheEntry = $this->cacheEntryFactory
->newFromRecentChange( $rc, $watched );
120 $this->addCacheEntry( $cacheEntry );
126 * Put accumulated information into the cache, for later display.
127 * Page moves go on their own line.
129 * @param RCCacheEntry $cacheEntry
131 protected function addCacheEntry( RCCacheEntry
$cacheEntry ) {
132 $cacheGroupingKey = $this->makeCacheGroupingKey( $cacheEntry );
134 if ( !isset( $this->rc_cache
[$cacheGroupingKey] ) ) {
135 $this->rc_cache
[$cacheGroupingKey] = [];
138 array_push( $this->rc_cache
[$cacheGroupingKey], $cacheEntry );
142 * @todo use rc_source to group, if set; fallback to rc_type
144 * @param RCCacheEntry $cacheEntry
148 protected function makeCacheGroupingKey( RCCacheEntry
$cacheEntry ) {
149 $title = $cacheEntry->getTitle();
150 $cacheGroupingKey = $title->getPrefixedDBkey();
152 $type = $cacheEntry->mAttribs
['rc_type'];
154 if ( $type == RC_LOG
) {
156 $cacheGroupingKey = SpecialPage
::getTitleFor(
158 $cacheEntry->mAttribs
['rc_log_type']
159 )->getPrefixedDBkey();
162 return $cacheGroupingKey;
167 * @param RCCacheEntry[] $block
169 * @throws DomainException
171 protected function recentChangesBlockGroup( $block ) {
172 $recentChangesFlags = $this->getConfig()->get( 'RecentChangesFlags' );
174 # Add the namespace and title of the block as part of the class
175 $tableClasses = [ 'mw-collapsible', 'mw-collapsed', 'mw-enhanced-rc', 'mw-changeslist-line' ];
176 if ( $block[0]->mAttribs
['rc_log_type'] ) {
178 $tableClasses[] = 'mw-changeslist-log';
179 $tableClasses[] = Sanitizer
::escapeClass( 'mw-changeslist-log-'
180 . $block[0]->mAttribs
['rc_log_type'] );
182 $tableClasses[] = 'mw-changeslist-edit';
183 $tableClasses[] = Sanitizer
::escapeClass( 'mw-changeslist-ns'
184 . $block[0]->mAttribs
['rc_namespace'] . '-' . $block[0]->mAttribs
['rc_title'] );
186 if ( $block[0]->watched
187 && $block[0]->mAttribs
['rc_timestamp'] >= $block[0]->watched
189 $tableClasses[] = 'mw-changeslist-line-watched';
191 $tableClasses[] = 'mw-changeslist-line-not-watched';
194 # Collate list of users
198 # Some catalyst variables...
201 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
203 # Default values for RC flags
204 $collectedRcFlags = [];
205 foreach ( $recentChangesFlags as $key => $value ) {
206 $flagGrouping = ( isset( $recentChangesFlags[$key]['grouping'] ) ?
207 $recentChangesFlags[$key]['grouping'] : 'any' );
208 switch ( $flagGrouping ) {
210 $collectedRcFlags[$key] = true;
213 $collectedRcFlags[$key] = false;
216 throw new DomainException( "Unknown grouping type \"{$flagGrouping}\"" );
219 foreach ( $block as $rcObj ) {
220 // If all log actions to this page were hidden, then don't
221 // give the name of the affected page for this block!
222 if ( !$this->isDeleted( $rcObj, LogPage
::DELETED_ACTION
) ) {
225 $u = $rcObj->userlink
;
226 if ( !isset( $userlinks[$u] ) ) {
229 if ( $rcObj->mAttribs
['rc_type'] != RC_LOG
) {
232 # Get the latest entry with a page_id and oldid
233 # since logs may not have these.
234 if ( !$curId && $rcObj->mAttribs
['rc_cur_id'] ) {
235 $curId = $rcObj->mAttribs
['rc_cur_id'];
241 # Sort the list and convert to text
242 krsort( $userlinks );
245 foreach ( $userlinks as $userlink => $count ) {
247 $text .= $this->getLanguage()->getDirMark();
249 $formattedCount = $this->msg( 'ntimes' )->numParams( $count )->escaped();
250 $text .= ' ' . $this->msg( 'parentheses' )->rawParams( $formattedCount )->escaped();
252 array_push( $users, $text );
257 $revDeletedMsg = false;
259 $revDeletedMsg = $this->msg( 'rev-deleted-event' )->escaped();
260 } elseif ( $allLogs ) {
261 $articleLink = $this->maybeWatchedLink( $block[0]->link
, $block[0]->watched
);
263 $articleLink = $this->getArticleLink( $block[0], $block[0]->unpatrolled
, $block[0]->watched
);
266 $queryParams['curid'] = $curId;
270 foreach ( $block as $i => $rcObj ) {
271 $line = $this->getLineData( $block, $rcObj, $queryParams );
273 // completely ignore this RC entry if we don't want to render it
279 foreach ( $line['recentChangesFlagsRaw'] as $key => $value ) {
280 $flagGrouping = ( isset( $recentChangesFlags[$key]['grouping'] ) ?
281 $recentChangesFlags[$key]['grouping'] : 'any' );
282 switch ( $flagGrouping ) {
285 $collectedRcFlags[$key] = false;
290 $collectedRcFlags[$key] = true;
294 throw new DomainException( "Unknown grouping type \"{$flagGrouping}\"" );
301 // Further down are some assumptions that $block is a 0-indexed array
302 // with (count-1) as last key. Let's make sure it is.
303 $block = array_values( $block );
305 if ( empty( $block ) ||
!$lines ) {
306 // if we can't show anything, don't display this block altogether
310 $logText = $this->getLogText( $block, $queryParams, $allLogs,
311 $collectedRcFlags['newpage'], $namehidden
314 # Character difference (does not apply if only log items)
315 $charDifference = false;
316 if ( $RCShowChangedSize && !$allLogs ) {
318 $first = count( $block ) - 1;
319 # Some events (like logs and category changes) have an "empty" size, so we need to skip those...
320 while ( $last < $first && $block[$last]->mAttribs
['rc_new_len'] === null ) {
323 while ( $last < $first && $block[$first]->mAttribs
['rc_old_len'] === null ) {
327 $charDifference = $this->formatCharacterDifference( $block[$first], $block[$last] );
330 $numberofWatchingusers = $this->numberofWatchingusers( $block[0]->numberofWatchingusers
);
331 $usersList = $this->msg( 'brackets' )->rawParams(
332 implode( $this->message
['semicolon-separator'], $users )
336 if ( is_callable( $this->changeLinePrefixer
) ) {
337 $prefix = call_user_func( $this->changeLinePrefixer
, $block[0], $this, true );
341 'articleLink' => $articleLink,
342 'charDifference' => $charDifference,
343 'collectedRcFlags' => $this->recentChangesFlags( $collectedRcFlags ),
344 'languageDirMark' => $this->getLanguage()->getDirMark(),
346 'logText' => $logText,
347 'numberofWatchingusers' => $numberofWatchingusers,
349 'rev-deleted-event' => $revDeletedMsg,
350 'tableClasses' => $tableClasses,
351 'timestamp' => $block[0]->timestamp
,
352 'fullTimestamp' => $block[0]->getAttribute( 'rc_timestamp' ),
353 'users' => $usersList,
356 $this->rcCacheIndex++
;
358 return $this->templateParser
->processTemplate(
359 'EnhancedChangesListGroup',
365 * @param RCCacheEntry[] $block
366 * @param RCCacheEntry $rcObj
367 * @param array $queryParams
371 * @throws MWException
373 protected function getLineData( array $block, RCCacheEntry
$rcObj, array $queryParams = [] ) {
374 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
376 $type = $rcObj->mAttribs
['rc_type'];
378 $lineParams = [ 'targetTitle' => $rcObj->getTitle() ];
380 $classes = [ 'mw-enhanced-rc' ];
382 && $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
384 $classes[] = 'mw-enhanced-watched';
386 $classes = array_merge( $classes, $this->getHTMLClassesForFilters( $rcObj ) );
388 $separator = ' <span class="mw-changeslist-separator">. .</span> ';
390 $data['recentChangesFlags'] = [
391 'newpage' => $type == RC_NEW
,
392 'minor' => $rcObj->mAttribs
['rc_minor'],
393 'unpatrolled' => $rcObj->unpatrolled
,
394 'bot' => $rcObj->mAttribs
['rc_bot'],
397 $params = $queryParams;
399 if ( $rcObj->mAttribs
['rc_this_oldid'] != 0 ) {
400 $params['oldid'] = $rcObj->mAttribs
['rc_this_oldid'];
404 if ( $type == RC_LOG
) {
405 $link = $rcObj->timestamp
;
407 } elseif ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ) {
408 $link = '<span class="history-deleted">' . $rcObj->timestamp
. '</span> ';
410 $link = $this->linkRenderer
->makeKnownLink(
412 new HtmlArmor( $rcObj->timestamp
),
416 if ( $this->isDeleted( $rcObj, Revision
::DELETED_TEXT
) ) {
417 $link = '<span class="history-deleted">' . $link . '</span> ';
420 $data['timestampLink'] = $link;
422 $currentAndLastLinks = '';
423 if ( !$type == RC_LOG ||
$type == RC_NEW
) {
424 $currentAndLastLinks .= ' ' . $this->msg( 'parentheses' )->rawParams(
426 $this->message
['pipe-separator'] .
430 $data['currentAndLastLinks'] = $currentAndLastLinks;
431 $data['separatorAfterCurrentAndLastLinks'] = $separator;
434 if ( $RCShowChangedSize ) {
435 $cd = $this->formatCharacterDifference( $rcObj );
437 $data['characterDiff'] = $cd;
438 $data['separatorAfterCharacterDiff'] = $separator;
442 if ( $rcObj->mAttribs
['rc_type'] == RC_LOG
) {
443 $data['logEntry'] = $this->insertLogEntry( $rcObj );
444 } elseif ( $this->isCategorizationWithoutRevision( $rcObj ) ) {
445 $data['comment'] = $this->insertComment( $rcObj );
448 $data['userLink'] = $rcObj->userlink
;
449 $data['userTalkLink'] = $rcObj->usertalklink
;
450 $data['comment'] = $this->insertComment( $rcObj );
454 $data['rollback'] = $this->getRollback( $rcObj );
457 $data['tags'] = $this->getTags( $rcObj, $classes );
459 $attribs = $this->getDataAttributes( $rcObj );
461 // give the hook a chance to modify the data
462 $success = Hooks
::run( 'EnhancedChangesListModifyLineData',
463 [ $this, &$data, $block, $rcObj, &$classes, &$attribs ] );
465 // skip entry if hook aborted it
468 $attribs = wfArrayFilterByKey( $attribs, [ Sanitizer
::class, 'isReservedDataAttribute' ] );
470 $lineParams['recentChangesFlagsRaw'] = [];
471 if ( isset( $data['recentChangesFlags'] ) ) {
472 $lineParams['recentChangesFlags'] = $this->recentChangesFlags( $data['recentChangesFlags'] );
473 # FIXME: This is used by logic, don't return it in the template params.
474 $lineParams['recentChangesFlagsRaw'] = $data['recentChangesFlags'];
475 unset( $data['recentChangesFlags'] );
478 if ( isset( $data['timestampLink'] ) ) {
479 $lineParams['timestampLink'] = $data['timestampLink'];
480 unset( $data['timestampLink'] );
483 $lineParams['classes'] = array_values( $classes );
484 $lineParams['attribs'] = Html
::expandAttributes( $attribs );
486 // everything else: makes it easier for extensions to add or remove data
487 $lineParams['data'] = array_values( $data );
493 * Generates amount of changes (linking to diff ) & link to history.
495 * @param array $block
496 * @param array $queryParams
497 * @param bool $allLogs
499 * @param bool $namehidden
502 protected function getLogText( $block, $queryParams, $allLogs, $isnew, $namehidden ) {
503 if ( empty( $block ) ) {
508 static $nchanges = [];
509 static $sinceLastVisitMsg = [];
511 $n = count( $block );
512 if ( !isset( $nchanges[$n] ) ) {
513 $nchanges[$n] = $this->msg( 'nchanges' )->numParams( $n )->escaped();
517 $unvisitedOldid = null;
518 /** @var $rcObj RCCacheEntry */
519 foreach ( $block as $rcObj ) {
520 // Same logic as below inside main foreach
521 if ( $rcObj->watched
&& $rcObj->mAttribs
['rc_timestamp'] >= $rcObj->watched
) {
523 $unvisitedOldid = $rcObj->mAttribs
['rc_last_oldid'];
526 if ( !isset( $sinceLastVisitMsg[$sinceLast] ) ) {
527 $sinceLastVisitMsg[$sinceLast] =
528 $this->msg( 'enhancedrc-since-last-visit' )->numParams( $sinceLast )->escaped();
531 $currentRevision = 0;
532 foreach ( $block as $rcObj ) {
533 if ( !$currentRevision ) {
534 $currentRevision = $rcObj->mAttribs
['rc_this_oldid'];
540 /** @var $block0 RecentChange */
542 $last = $block[count( $block ) - 1];
544 if ( !ChangesList
::userCan( $rcObj, Revision
::DELETED_TEXT
, $this->getUser() ) ||
546 $rcObj->mAttribs
['rc_type'] == RC_CATEGORIZE
548 $links['total-changes'] = $nchanges[$n];
550 $links['total-changes'] = $this->linkRenderer
->makeKnownLink(
552 new HtmlArmor( $nchanges[$n] ),
553 [ 'class' => 'mw-changeslist-groupdiff' ],
555 'diff' => $currentRevision,
556 'oldid' => $last->mAttribs
['rc_last_oldid'],
559 if ( $sinceLast > 0 && $sinceLast < $n ) {
560 $links['total-changes-since-last'] = $this->linkRenderer
->makeKnownLink(
562 new HtmlArmor( $sinceLastVisitMsg[$sinceLast] ),
563 [ 'class' => 'mw-changeslist-groupdiff' ],
565 'diff' => $currentRevision,
566 'oldid' => $unvisitedOldid,
574 if ( $allLogs ||
$rcObj->mAttribs
['rc_type'] == RC_CATEGORIZE
) {
575 // don't show history link for logs
576 } elseif ( $namehidden ||
!$block0->getTitle()->exists() ) {
577 $links['history'] = $this->message
['enhancedrc-history'];
579 $params = $queryParams;
580 $params['action'] = 'history';
582 $links['history'] = $this->linkRenderer
->makeKnownLink(
584 new HtmlArmor( $this->message
['enhancedrc-history'] ),
585 [ 'class' => 'mw-changeslist-history' ],
590 # Allow others to alter, remove or add to these links
591 Hooks
::run( 'EnhancedChangesList::getLogText',
592 [ $this, &$links, $block ] );
598 $logtext = implode( $this->message
['pipe-separator'], $links );
599 $logtext = $this->msg( 'parentheses' )->rawParams( $logtext )->escaped();
600 return ' ' . $logtext;
604 * Enhanced RC ungrouped line.
606 * @param RecentChange|RCCacheEntry $rcObj
607 * @return string A HTML formatted line (generated using $r)
609 protected function recentChangesBlockLine( $rcObj ) {
612 $query['curid'] = $rcObj->mAttribs
['rc_cur_id'];
614 $type = $rcObj->mAttribs
['rc_type'];
615 $logType = $rcObj->mAttribs
['rc_log_type'];
616 $classes = $this->getHTMLClasses( $rcObj, $rcObj->watched
);
617 $classes[] = 'mw-enhanced-rc';
621 $classes[] = 'mw-changeslist-log';
622 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-log-' . $logType );
624 $classes[] = 'mw-changeslist-edit';
625 $classes[] = Sanitizer
::escapeClass( 'mw-changeslist-ns' .
626 $rcObj->mAttribs
['rc_namespace'] . '-' . $rcObj->mAttribs
['rc_title'] );
630 $data['recentChangesFlags'] = [
631 'newpage' => $type == RC_NEW
,
632 'minor' => $rcObj->mAttribs
['rc_minor'],
633 'unpatrolled' => $rcObj->unpatrolled
,
634 'bot' => $rcObj->mAttribs
['rc_bot'],
636 // timestamp is not really a link here, but is called timestampLink
637 // for consistency with EnhancedChangesListModifyLineData
638 $data['timestampLink'] = $rcObj->timestamp
;
640 # Article or log link
642 $logPage = new LogPage( $logType );
643 $logTitle = SpecialPage
::getTitleFor( 'Log', $logType );
644 $logName = $logPage->getName()->text();
645 $data['logLink'] = $this->msg( 'parentheses' )
647 $this->linkRenderer
->makeKnownLink( $logTitle, $logName )
650 $data['articleLink'] = $this->getArticleLink( $rcObj, $rcObj->unpatrolled
, $rcObj->watched
);
653 # Diff and hist links
654 if ( $type != RC_LOG
&& $type != RC_CATEGORIZE
) {
655 $query['action'] = 'history';
656 $data['historyLink'] = $this->getDiffHistLinks( $rcObj, $query );
658 $data['separatorAfterLinks'] = ' <span class="mw-changeslist-separator">. .</span> ';
661 if ( $this->getConfig()->get( 'RCShowChangedSize' ) ) {
662 $cd = $this->formatCharacterDifference( $rcObj );
664 $data['characterDiff'] = $cd;
665 $data['separatorAftercharacterDiff'] = ' <span class="mw-changeslist-separator">. .</span> ';
669 if ( $type == RC_LOG
) {
670 $data['logEntry'] = $this->insertLogEntry( $rcObj );
671 } elseif ( $this->isCategorizationWithoutRevision( $rcObj ) ) {
672 $data['comment'] = $this->insertComment( $rcObj );
674 $data['userLink'] = $rcObj->userlink
;
675 $data['userTalkLink'] = $rcObj->usertalklink
;
676 $data['comment'] = $this->insertComment( $rcObj );
677 if ( $type == RC_CATEGORIZE
) {
678 $data['historyLink'] = $this->getDiffHistLinks( $rcObj, $query );
680 $data['rollback'] = $this->getRollback( $rcObj );
684 $data['tags'] = $this->getTags( $rcObj, $classes );
686 # Show how many people are watching this if enabled
687 $data['watchingUsers'] = $this->numberofWatchingusers( $rcObj->numberofWatchingusers
);
689 $data['attribs'] = array_merge( $this->getDataAttributes( $rcObj ), [ 'class' => $classes ] );
691 // give the hook a chance to modify the data
692 $success = Hooks
::run( 'EnhancedChangesListModifyBlockLineData',
693 [ $this, &$data, $rcObj ] );
695 // skip entry if hook aborted it
698 $attribs = $data['attribs'];
699 unset( $data['attribs'] );
700 $attribs = wfArrayFilterByKey( $attribs, function ( $key ) {
701 return $key === 'class' || Sanitizer
::isReservedDataAttribute( $key );
705 if ( is_callable( $this->changeLinePrefixer
) ) {
706 $prefix = call_user_func( $this->changeLinePrefixer
, $rcObj, $this, false );
709 $line = Html
::openElement( 'table', $attribs ) . Html
::openElement( 'tr' );
710 $line .= Html
::rawElement( 'td', [], '<span class="mw-enhancedchanges-arrow-space"></span>' );
711 $line .= Html
::rawElement( 'td', [ 'class' => 'mw-changeslist-line-prefix' ], $prefix );
712 $line .= '<td class="mw-enhanced-rc">';
714 if ( isset( $data['recentChangesFlags'] ) ) {
715 $line .= $this->recentChangesFlags( $data['recentChangesFlags'] );
716 unset( $data['recentChangesFlags'] );
719 if ( isset( $data['timestampLink'] ) ) {
720 $line .= ' ' . $data['timestampLink'];
721 unset( $data['timestampLink'] );
723 $line .= ' </td>';
724 $line .= Html
::openElement( 'td', [
725 'class' => 'mw-changeslist-line-inner',
726 // Used for reliable determination of the affiliated page
727 'data-target-page' => $rcObj->getTitle(),
730 // everything else: makes it easier for extensions to add or remove data
731 $line .= implode( '', $data );
733 $line .= "</td></tr></table>\n";
739 * Returns value to be used in 'historyLink' element of $data param in
740 * EnhancedChangesListModifyBlockLineData hook.
744 * @param RCCacheEntry $rc
745 * @param array $query array of key/value pairs to append as a query string
746 * @return string HTML
748 public function getDiffHistLinks( RCCacheEntry
$rc, array $query ) {
749 $pageTitle = $rc->getTitle();
750 if ( $rc->getAttribute( 'rc_type' ) == RC_CATEGORIZE
) {
751 // For categorizations we must swap the category title with the page title!
752 $pageTitle = Title
::newFromID( $rc->getAttribute( 'rc_cur_id' ) );
754 // The page has been deleted, but the RC entry
755 // deletion job has not run yet. Just skip.
760 $retVal = ' ' . $this->msg( 'parentheses' )
761 ->rawParams( $rc->difflink
. $this->message
['pipe-separator']
762 . $this->linkRenderer
->makeKnownLink(
764 new HtmlArmor( $this->message
['hist'] ),
765 [ 'class' => 'mw-changeslist-history' ],
772 * If enhanced RC is in use, this function takes the previously cached
773 * RC lines, arranges them, and outputs the HTML
777 protected function recentChangesBlock() {
778 if ( count( $this->rc_cache
) == 0 ) {
783 foreach ( $this->rc_cache
as $block ) {
784 if ( count( $block ) < 2 ) {
785 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
787 $blockOut .= $this->recentChangesBlockGroup( $block );
791 if ( $blockOut === '' ) {
794 // $this->lastdate is kept up to date by recentChangesLine()
795 return Xml
::element( 'h4', null, $this->lastdate
) . "\n<div>" . $blockOut . '</div>';
799 * Returns text for the end of RC
800 * If enhanced RC is in use, returns pretty much all the text
803 public function endRecentChangesList() {
804 return $this->recentChangesBlock() . '</div>';