Merge "Fix hook documentation for ImagePageFileHistoryLine"
[lhc/web/wiklou.git] / includes / changes / EnhancedChangesList.php
1 <?php
2 /**
3 * Generates a list of changes using an Enhanced system (uses javascript).
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 class EnhancedChangesList extends ChangesList {
24
25 /**
26 * @var RCCacheEntryFactory
27 */
28 protected $cacheEntryFactory;
29
30 /**
31 * @var array Array of array of RCCacheEntry
32 */
33 protected $rc_cache;
34
35 /**
36 * @param IContextSource|Skin $obj
37 * @throws MWException
38 */
39 public function __construct( $obj ) {
40 if ( $obj instanceof Skin ) {
41 // @todo: deprecate constructing with Skin
42 $context = $obj->getContext();
43 } else {
44 if ( !$obj instanceof IContextSource ) {
45 throw new MWException( 'EnhancedChangesList must be constructed with a '
46 . 'context source or skin.' );
47 }
48
49 $context = $obj;
50 }
51
52 parent::__construct( $context );
53
54 // message is set by the parent ChangesList class
55 $this->cacheEntryFactory = new RCCacheEntryFactory(
56 $context,
57 $this->message
58 );
59 }
60
61 /**
62 * Add the JavaScript file for enhanced changeslist
63 * @return string
64 */
65 public function beginRecentChangesList() {
66 $this->rc_cache = array();
67 $this->rcMoveIndex = 0;
68 $this->rcCacheIndex = 0;
69 $this->lastdate = '';
70 $this->rclistOpen = false;
71 $this->getOutput()->addModuleStyles( array(
72 'mediawiki.special.changeslist',
73 'mediawiki.special.changeslist.enhanced',
74 ) );
75 $this->getOutput()->addModules( array(
76 'jquery.makeCollapsible',
77 'mediawiki.icon',
78 ) );
79
80 return '<div class="mw-changeslist">';
81 }
82
83 /**
84 * Format a line for enhanced recentchange (aka with javascript and block of lines).
85 *
86 * @param RecentChange $baseRC
87 * @param bool $watched
88 *
89 * @return string
90 */
91 public function recentChangesLine( &$baseRC, $watched = false ) {
92
93 $date = $this->getLanguage()->userDate(
94 $baseRC->mAttribs['rc_timestamp'],
95 $this->getUser()
96 );
97
98 $ret = '';
99
100 # If it's a new day, add the headline and flush the cache
101 if ( $date != $this->lastdate ) {
102 # Process current cache
103 $ret = $this->recentChangesBlock();
104 $this->rc_cache = array();
105 $ret .= Xml::element( 'h4', null, $date ) . "\n";
106 $this->lastdate = $date;
107 }
108
109 $cacheEntry = $this->cacheEntryFactory->newFromRecentChange( $baseRC, $watched );
110 $this->addCacheEntry( $cacheEntry );
111
112 return $ret;
113 }
114
115 /**
116 * Put accumulated information into the cache, for later display.
117 * Page moves go on their own line.
118 *
119 * @param RCCacheEntry $cacheEntry
120 */
121 protected function addCacheEntry( RCCacheEntry $cacheEntry ) {
122 $cacheGroupingKey = $this->makeCacheGroupingKey( $cacheEntry );
123
124 if ( !isset( $this->rc_cache[$cacheGroupingKey] ) ) {
125 $this->rc_cache[$cacheGroupingKey] = array();
126 }
127
128 array_push( $this->rc_cache[$cacheGroupingKey], $cacheEntry );
129 }
130
131 /**
132 * @todo use rc_source to group, if set; fallback to rc_type
133 *
134 * @param RCCacheEntry $cacheEntry
135 *
136 * @return string
137 */
138 protected function makeCacheGroupingKey( RCCacheEntry $cacheEntry ) {
139 $title = $cacheEntry->getTitle();
140 $cacheGroupingKey = $title->getPrefixedDBkey();
141
142 $type = $cacheEntry->mAttribs['rc_type'];
143
144 if ( $type == RC_LOG ) {
145 // Group by log type
146 $cacheGroupingKey = SpecialPage::getTitleFor(
147 'Log',
148 $cacheEntry->mAttribs['rc_log_type']
149 )->getPrefixedDBkey();
150 }
151
152 return $cacheGroupingKey;
153 }
154
155 /**
156 * Enhanced RC group
157 * @param RCCacheEntry[] $block
158 * @return string
159 */
160 protected function recentChangesBlockGroup( $block ) {
161
162 # Add the namespace and title of the block as part of the class
163 $classes = array( 'mw-collapsible', 'mw-collapsed', 'mw-enhanced-rc' );
164 if ( $block[0]->mAttribs['rc_log_type'] ) {
165 # Log entry
166 $classes[] = Sanitizer::escapeClass( 'mw-changeslist-log-'
167 . $block[0]->mAttribs['rc_log_type'] );
168 } else {
169 $classes[] = Sanitizer::escapeClass( 'mw-changeslist-ns'
170 . $block[0]->mAttribs['rc_namespace'] . '-' . $block[0]->mAttribs['rc_title'] );
171 }
172 $classes[] = $block[0]->watched && $block[0]->mAttribs['rc_timestamp'] >= $block[0]->watched
173 ? 'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
174 $r = Html::openElement( 'table', array( 'class' => $classes ) ) .
175 Html::openElement( 'tr' );
176
177 # Collate list of users
178 $userlinks = array();
179 # Other properties
180 $unpatrolled = false;
181 $isnew = false;
182 $allBots = true;
183 $allMinors = true;
184 $curId = 0;
185 # Some catalyst variables...
186 $namehidden = true;
187 $allLogs = true;
188 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
189 foreach ( $block as $rcObj ) {
190 if ( $rcObj->mAttribs['rc_type'] == RC_NEW ) {
191 $isnew = true;
192 }
193 // If all log actions to this page were hidden, then don't
194 // give the name of the affected page for this block!
195 if ( !$this->isDeleted( $rcObj, LogPage::DELETED_ACTION ) ) {
196 $namehidden = false;
197 }
198 $u = $rcObj->userlink;
199 if ( !isset( $userlinks[$u] ) ) {
200 $userlinks[$u] = 0;
201 }
202 if ( $rcObj->unpatrolled ) {
203 $unpatrolled = true;
204 }
205 if ( $rcObj->mAttribs['rc_type'] != RC_LOG ) {
206 $allLogs = false;
207 }
208 # Get the latest entry with a page_id and oldid
209 # since logs may not have these.
210 if ( !$curId && $rcObj->mAttribs['rc_cur_id'] ) {
211 $curId = $rcObj->mAttribs['rc_cur_id'];
212 }
213
214 if ( !$rcObj->mAttribs['rc_bot'] ) {
215 $allBots = false;
216 }
217 if ( !$rcObj->mAttribs['rc_minor'] ) {
218 $allMinors = false;
219 }
220
221 $userlinks[$u]++;
222 }
223
224 # Sort the list and convert to text
225 krsort( $userlinks );
226 asort( $userlinks );
227 $users = array();
228 foreach ( $userlinks as $userlink => $count ) {
229 $text = $userlink;
230 $text .= $this->getLanguage()->getDirMark();
231 if ( $count > 1 ) {
232 // @todo FIXME: Hardcoded '×'. Should be a message.
233 $formattedCount = $this->getLanguage()->formatNum( $count ) . '×';
234 $text .= ' ' . $this->msg( 'parentheses' )->rawParams( $formattedCount )->escaped();
235 }
236 array_push( $users, $text );
237 }
238
239 $users = ' <span class="changedby">'
240 . $this->msg( 'brackets' )->rawParams(
241 implode( $this->message['semicolon-separator'], $users )
242 )->escaped() . '</span>';
243
244 $tl = '<span class="mw-collapsible-toggle mw-collapsible-arrow ' .
245 'mw-enhancedchanges-arrow mw-enhancedchanges-arrow-space"></span>';
246 $r .= "<td>$tl</td>";
247
248 # Main line
249 $r .= '<td class="mw-enhanced-rc">' . $this->recentChangesFlags( array(
250 'newpage' => $isnew, # show, when one have this flag
251 'minor' => $allMinors, # show only, when all have this flag
252 'unpatrolled' => $unpatrolled, # show, when one have this flag
253 'bot' => $allBots, # show only, when all have this flag
254 ) );
255
256 # Timestamp
257 $r .= '&#160;' . $block[0]->timestamp . '&#160;</td><td>';
258
259 # Article link
260 if ( $namehidden ) {
261 $r .= ' <span class="history-deleted">' .
262 $this->msg( 'rev-deleted-event' )->escaped() . '</span>';
263 } elseif ( $allLogs ) {
264 $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched );
265 } else {
266 $this->insertArticleLink( $r, $block[0], $block[0]->unpatrolled, $block[0]->watched );
267 }
268
269 $r .= $this->getLanguage()->getDirMark();
270
271 $queryParams['curid'] = $curId;
272
273 # Sub-entries
274 $lines = '';
275 foreach ( $block as $i => $rcObj ) {
276 $line = $this->getLineData( $block, $rcObj, $queryParams );
277 $lines .= $line;
278 if ( !$line ) {
279 // completely ignore this RC entry if we don't want to render it
280 unset( $block[$i] );
281 }
282 }
283 // Further down are some assumptions that $block is a 0-indexed array
284 // with (count-1) as last key. Let's make sure it is.
285 $block = array_values( $block );
286 if ( empty( $block ) ) {
287 // if we can't show anything, don't display this block altogether
288 return '';
289 }
290
291 $r .= $this->getLogText( $block, $queryParams, $allLogs, $isnew, $namehidden );
292
293 $r .= ' <span class="mw-changeslist-separator">. .</span> ';
294
295 # Character difference (does not apply if only log items)
296 if ( $RCShowChangedSize && !$allLogs ) {
297 $last = 0;
298 $first = count( $block ) - 1;
299 # Some events (like logs) have an "empty" size, so we need to skip those...
300 while ( $last < $first && $block[$last]->mAttribs['rc_new_len'] === null ) {
301 $last++;
302 }
303 while ( $first > $last && $block[$first]->mAttribs['rc_old_len'] === null ) {
304 $first--;
305 }
306 # Get net change
307 $chardiff = $this->formatCharacterDifference( $block[$first], $block[$last] );
308
309 if ( $chardiff == '' ) {
310 $r .= ' ';
311 } else {
312 $r .= ' ' . $chardiff . ' <span class="mw-changeslist-separator">. .</span> ';
313 }
314 }
315
316 $r .= $users;
317 $r .= $this->numberofWatchingusers( $block[0]->numberofWatchingusers );
318 $r .= '</td></tr>';
319
320 if ( !$lines ) {
321 // if there are no lines to be rendered (all aborted by hook), don't render the block
322 return '';
323 }
324
325 $r .= $lines;
326 $r .= "</table>\n";
327
328 $this->rcCacheIndex++;
329
330 return $r;
331 }
332
333 /**
334 * @param RCCacheEntry[] $block
335 * @param RCCacheEntry $rcObj
336 * @param array $queryParams
337 * @return string
338 * @throws Exception
339 * @throws FatalError
340 * @throws MWException
341 */
342 protected function getLineData( array $block, RCCacheEntry $rcObj, array $queryParams = array() ) {
343 $RCShowChangedSize = $this->getConfig()->get( 'RCShowChangedSize' );
344
345 # Classes to apply -- TODO implement
346 $classes = array();
347 $type = $rcObj->mAttribs['rc_type'];
348 $data = array();
349
350 $trClass = $rcObj->watched && $rcObj->mAttribs['rc_timestamp'] >= $rcObj->watched
351 ? ' class="mw-enhanced-watched"' : '';
352 $separator = ' <span class="mw-changeslist-separator">. .</span> ';
353
354 $data['recentChangesFlags'] = array(
355 'newpage' => $type == RC_NEW,
356 'minor' => $rcObj->mAttribs['rc_minor'],
357 'unpatrolled' => $rcObj->unpatrolled,
358 'bot' => $rcObj->mAttribs['rc_bot'],
359 );
360
361 $params = $queryParams;
362
363 if ( $rcObj->mAttribs['rc_this_oldid'] != 0 ) {
364 $params['oldid'] = $rcObj->mAttribs['rc_this_oldid'];
365 }
366
367 # Log timestamp
368 if ( $type == RC_LOG ) {
369 $link = $rcObj->timestamp;
370 # Revision link
371 } elseif ( !ChangesList::userCan( $rcObj, Revision::DELETED_TEXT, $this->getUser() ) ) {
372 $link = '<span class="history-deleted">' . $rcObj->timestamp . '</span> ';
373 } else {
374 $link = Linker::linkKnown(
375 $rcObj->getTitle(),
376 $rcObj->timestamp,
377 array(),
378 $params
379 );
380 if ( $this->isDeleted( $rcObj, Revision::DELETED_TEXT ) ) {
381 $link = '<span class="history-deleted">' . $link . '</span> ';
382 }
383 }
384 $data['timestampLink'] = $link;
385
386 $currentAndLastLinks = '';
387 if ( !$type == RC_LOG || $type == RC_NEW ) {
388 $currentAndLastLinks .= ' ' . $this->msg( 'parentheses' )->rawParams(
389 $rcObj->curlink .
390 $this->message['pipe-separator'] .
391 $rcObj->lastlink
392 )->escaped();
393 }
394 $data['currentAndLastLinks'] = $currentAndLastLinks;
395 $data['separatorAfterCurrentAndLastLinks'] = $separator;
396
397 # Character diff
398 if ( $RCShowChangedSize ) {
399 $cd = $this->formatCharacterDifference( $rcObj );
400 if ( $cd !== '' ) {
401 $data['characterDiff'] = $cd;
402 $data['separatorAfterCharacterDiff'] = $separator;
403 }
404 }
405
406 if ( $rcObj->mAttribs['rc_type'] == RC_LOG ) {
407 $data['logEntry'] = $this->insertLogEntry( $rcObj );
408 } else {
409 # User links
410 $data['userLink'] = $rcObj->userlink;
411 $data['userTalkLink'] = $rcObj->usertalklink;
412 $data['comment'] = $this->insertComment( $rcObj );
413 }
414
415 # Rollback
416 $data['rollback'] = $this->getRollback( $rcObj );
417
418 # Tags
419 $data['tags'] = $this->getTags( $rcObj, $classes );
420
421 // give the hook a chance to modify the data
422 $success = Hooks::run( 'EnhancedChangesListModifyLineData',
423 array( $this, &$data, $block, $rcObj ) );
424 if ( !$success ) {
425 // skip entry if hook aborted it
426 return '';
427 }
428
429 $line = '<tr' . $trClass . '><td></td><td class="mw-enhanced-rc">';
430 if ( isset( $data['recentChangesFlags'] ) ) {
431 $line .= $this->recentChangesFlags( $data['recentChangesFlags'] );
432 unset( $data['recentChangesFlags'] );
433 }
434 $line .= '&#160;</td><td class="mw-enhanced-rc-nested">';
435
436 if ( isset( $data['timestampLink'] ) ) {
437 $line .= '<span class="mw-enhanced-rc-time">' . $data['timestampLink'] . '</span>';
438 unset( $data['timestampLink'] );
439 }
440
441 // everything else: makes it easier for extensions to add or remove data
442 $line .= implode( '', $data );
443
444 $line .= "</td></tr>\n";
445
446 return $line;
447 }
448
449 /**
450 * Generates amount of changes (linking to diff ) & link to history.
451 *
452 * @param array $block
453 * @param array $queryParams
454 * @param bool $allLogs
455 * @param bool $isnew
456 * @param bool $namehidden
457 * @return string
458 */
459 protected function getLogText( $block, $queryParams, $allLogs, $isnew, $namehidden ) {
460 if ( empty( $block ) ) {
461 return '';
462 }
463
464 # Changes message
465 static $nchanges = array();
466 static $sinceLastVisitMsg = array();
467
468 $n = count( $block );
469 if ( !isset( $nchanges[$n] ) ) {
470 $nchanges[$n] = $this->msg( 'nchanges' )->numParams( $n )->escaped();
471 }
472
473 $sinceLast = 0;
474 $unvisitedOldid = null;
475 /** @var $rcObj RCCacheEntry */
476 foreach ( $block as $rcObj ) {
477 // Same logic as below inside main foreach
478 if ( $rcObj->watched && $rcObj->mAttribs['rc_timestamp'] >= $rcObj->watched ) {
479 $sinceLast++;
480 $unvisitedOldid = $rcObj->mAttribs['rc_last_oldid'];
481 }
482 }
483 if ( !isset( $sinceLastVisitMsg[$sinceLast] ) ) {
484 $sinceLastVisitMsg[$sinceLast] =
485 $this->msg( 'enhancedrc-since-last-visit' )->numParams( $sinceLast )->escaped();
486 }
487
488 $currentRevision = 0;
489 foreach ( $block as $rcObj ) {
490 if ( !$currentRevision ) {
491 $currentRevision = $rcObj->mAttribs['rc_this_oldid'];
492 }
493 }
494
495 # Total change link
496 $links = array();
497 /** @var $block0 RecentChange */
498 $block0 = $block[0];
499 $last = $block[count( $block ) - 1];
500 if ( !$allLogs ) {
501 if ( !ChangesList::userCan( $rcObj, Revision::DELETED_TEXT, $this->getUser() ) ) {
502 $links['total-changes'] = $nchanges[$n];
503 } elseif ( $isnew ) {
504 $links['total-changes'] = $nchanges[$n];
505 } else {
506 $links['total-changes'] = Linker::link(
507 $block0->getTitle(),
508 $nchanges[$n],
509 array(),
510 $queryParams + array(
511 'diff' => $currentRevision,
512 'oldid' => $last->mAttribs['rc_last_oldid'],
513 ),
514 array( 'known', 'noclasses' )
515 );
516 if ( $sinceLast > 0 && $sinceLast < $n ) {
517 $links['total-changes-since-last'] = Linker::link(
518 $block0->getTitle(),
519 $sinceLastVisitMsg[$sinceLast],
520 array(),
521 $queryParams + array(
522 'diff' => $currentRevision,
523 'oldid' => $unvisitedOldid,
524 ),
525 array( 'known', 'noclasses' )
526 );
527 }
528 }
529 }
530
531 # History
532 if ( $allLogs ) {
533 // don't show history link for logs
534 } elseif ( $namehidden || !$block0->getTitle()->exists() ) {
535 $links['history'] = $this->message['enhancedrc-history'];
536 } else {
537 $params = $queryParams;
538 $params['action'] = 'history';
539
540 $links['history'] = Linker::linkKnown(
541 $block0->getTitle(),
542 $this->message['enhancedrc-history'],
543 array(),
544 $params
545 );
546 }
547
548 # Allow others to alter, remove or add to these links
549 Hooks::run( 'EnhancedChangesList::getLogText',
550 array( $this, &$links, $block ) );
551
552 if ( !$links ) {
553 return '';
554 }
555
556 $logtext = implode( $this->message['pipe-separator'], $links );
557 $logtext = $this->msg( 'parentheses' )->rawParams( $logtext )->escaped();
558 return ' ' . $logtext;
559 }
560
561 /**
562 * Enhanced RC ungrouped line.
563 *
564 * @param RecentChange|RCCacheEntry $rcObj
565 * @return string A HTML formatted line (generated using $r)
566 */
567 protected function recentChangesBlockLine( $rcObj ) {
568 $data = array();
569
570 $query['curid'] = $rcObj->mAttribs['rc_cur_id'];
571
572 $type = $rcObj->mAttribs['rc_type'];
573 $logType = $rcObj->mAttribs['rc_log_type'];
574 $classes = array( 'mw-enhanced-rc' );
575 if ( $logType ) {
576 # Log entry
577 $classes[] = Sanitizer::escapeClass( 'mw-changeslist-log-' . $logType );
578 } else {
579 $classes[] = Sanitizer::escapeClass( 'mw-changeslist-ns' .
580 $rcObj->mAttribs['rc_namespace'] . '-' . $rcObj->mAttribs['rc_title'] );
581 }
582 $classes[] = $rcObj->watched && $rcObj->mAttribs['rc_timestamp'] >= $rcObj->watched
583 ? 'mw-changeslist-line-watched' : 'mw-changeslist-line-not-watched';
584
585 # Flag and Timestamp
586 $data['recentChangesFlags'] = array(
587 'newpage' => $type == RC_NEW,
588 'minor' => $rcObj->mAttribs['rc_minor'],
589 'unpatrolled' => $rcObj->unpatrolled,
590 'bot' => $rcObj->mAttribs['rc_bot'],
591 );
592 // timestamp is not really a link here, but is called timestampLink
593 // for consistency with EnhancedChangesListModifyLineData
594 $data['timestampLink'] = $rcObj->timestamp;
595
596 # Article or log link
597 if ( $logType ) {
598 $logPage = new LogPage( $logType );
599 $logTitle = SpecialPage::getTitleFor( 'Log', $logType );
600 $logName = $logPage->getName()->escaped();
601 $data['logLink'] = $this->msg( 'parentheses' )
602 ->rawParams( Linker::linkKnown( $logTitle, $logName ) )->escaped();
603 } else {
604 $data['articleLink'] = $this->getArticleLink( $rcObj, $rcObj->unpatrolled, $rcObj->watched );
605 }
606
607 # Diff and hist links
608 if ( $type != RC_LOG ) {
609 $query['action'] = 'history';
610 $data['historyLink'] = ' ' . $this->msg( 'parentheses' )
611 ->rawParams( $rcObj->difflink . $this->message['pipe-separator'] . Linker::linkKnown(
612 $rcObj->getTitle(),
613 $this->message['hist'],
614 array(),
615 $query
616 ) )->escaped();
617 }
618 $data['separatorAfterLinks'] = ' <span class="mw-changeslist-separator">. .</span> ';
619
620 # Character diff
621 if ( $this->getConfig()->get( 'RCShowChangedSize' ) ) {
622 $cd = $this->formatCharacterDifference( $rcObj );
623 if ( $cd !== '' ) {
624 $data['characterDiff'] = $cd;
625 $data['separatorAftercharacterDiff'] = ' <span class="mw-changeslist-separator">. .</span> ';
626 }
627 }
628
629 if ( $type == RC_LOG ) {
630 $data['logEntry'] = $this->insertLogEntry( $rcObj );
631 } else {
632 $data['userLink'] = $rcObj->userlink;
633 $data['userTalkLink'] = $rcObj->usertalklink;
634 $data['comment'] = $this->insertComment( $rcObj );
635 $data['rollback'] = $this->getRollback( $rcObj );
636 }
637
638 # Tags
639 $data['tags'] = $this->getTags( $rcObj, $classes );
640
641 # Show how many people are watching this if enabled
642 $data['watchingUsers'] = $this->numberofWatchingusers( $rcObj->numberofWatchingusers );
643
644 // give the hook a chance to modify the data
645 $success = Hooks::run( 'EnhancedChangesListModifyBlockLineData',
646 array( $this, &$data, $rcObj ) );
647 if ( !$success ) {
648 // skip entry if hook aborted it
649 return '';
650 }
651
652 $line = Html::openElement( 'table', array( 'class' => $classes ) ) .
653 Html::openElement( 'tr' );
654 $line .= '<td class="mw-enhanced-rc"><span class="mw-enhancedchanges-arrow-space"></span>';
655
656 if ( isset( $data['recentChangesFlags'] ) ) {
657 $line .= $this->recentChangesFlags( $data['recentChangesFlags'] );
658 unset( $data['recentChangesFlags'] );
659 }
660
661 if ( isset( $data['timestampLink'] ) ) {
662 $line .= '&#160;' . $data['timestampLink'];
663 unset( $data['timestampLink'] );
664 }
665 $line .= '&#160;</td><td>';
666
667 // everything else: makes it easier for extensions to add or remove data
668 $line .= implode( '', $data );
669
670 $line .= "</td></tr></table>\n";
671
672 return $line;
673 }
674
675 /**
676 * If enhanced RC is in use, this function takes the previously cached
677 * RC lines, arranges them, and outputs the HTML
678 *
679 * @return string
680 */
681 protected function recentChangesBlock() {
682 if ( count( $this->rc_cache ) == 0 ) {
683 return '';
684 }
685
686 $blockOut = '';
687 foreach ( $this->rc_cache as $block ) {
688 if ( count( $block ) < 2 ) {
689 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
690 } else {
691 $blockOut .= $this->recentChangesBlockGroup( $block );
692 }
693 }
694
695 return '<div>' . $blockOut . '</div>';
696 }
697
698 /**
699 * Returns text for the end of RC
700 * If enhanced RC is in use, returns pretty much all the text
701 * @return string
702 */
703 public function endRecentChangesList() {
704 return $this->recentChangesBlock() . '</div>';
705 }
706 }