(bug 1331) Add "next page" link to bottom of Special:Allpages in chunk mode
[lhc/web/wiklou.git] / includes / ChangesList.php
1 <?php
2 /**
3 * @package MediaWiki
4 * Contain class to show various lists of change:
5 * - what's link here
6 * - related changes
7 * - recent changes
8 */
9
10 /**
11 * @todo document
12 * @package MediaWiki
13 */
14 class RCCacheEntry extends RecentChange
15 {
16 var $secureName, $link;
17 var $curlink , $difflink, $lastlink , $usertalklink , $versionlink ;
18 var $userlink, $timestamp, $watched;
19
20 function newFromParent( $rc )
21 {
22 $rc2 = new RCCacheEntry;
23 $rc2->mAttribs = $rc->mAttribs;
24 $rc2->mExtra = $rc->mExtra;
25 return $rc2;
26 }
27 } ;
28
29 /**
30 * @package MediaWiki
31 */
32 class ChangesList {
33 # Called by history lists and recent changes
34 #
35
36 /** @todo document */
37 function ChangesList( &$skin ) {
38 $this->skin =& $skin;
39 $this->preCacheMessages();
40 }
41
42 /**
43 * Fetch an appropriate changes list class for the specified user
44 * Some users might want to use an enhanced list format, for instance
45 *
46 * @param $user User to fetch the list class for
47 * @return ChangesList derivative
48 */
49 public static function newFromUser( &$user ) {
50 $sk =& $user->getSkin();
51 $list = NULL;
52 if( wfRunHooks( 'FetchChangesList', array( &$user, &$sk, &$list ) ) ) {
53 return $user->getOption( 'usenewrc' ) ? new EnhancedChangesList( $sk ) : new OldChangesList( $sk );
54 } else {
55 return $list;
56 }
57 }
58
59 /**
60 * As we use the same small set of messages in various methods and that
61 * they are called often, we call them once and save them in $this->message
62 */
63 function preCacheMessages() {
64 // Precache various messages
65 if( !isset( $this->message ) ) {
66 foreach( explode(' ', 'cur diff hist minoreditletter newpageletter last '.
67 'blocklink changes history boteditletter' ) as $msg ) {
68 $this->message[$msg] = wfMsgExt( $msg, array( 'escape') );
69 }
70 }
71 }
72
73
74 /**
75 * Returns the appropriate flags for new page, minor change and patrolling
76 */
77 function recentChangesFlags( $new, $minor, $patrolled, $nothing = '&nbsp;', $bot = false ) {
78 $f = $new ? '<span class="newpage">' . $this->message['newpageletter'] . '</span>'
79 : $nothing;
80 $f .= $minor ? '<span class="minor">' . $this->message['minoreditletter'] . '</span>'
81 : $nothing;
82 $f .= $bot ? '<span class="bot">' . $this->message['boteditletter'] . '</span>' : $nothing;
83 $f .= $patrolled ? '<span class="unpatrolled">!</span>' : $nothing;
84 return $f;
85 }
86
87 /**
88 * Returns text for the start of the tabular part of RC
89 */
90 function beginRecentChangesList() {
91 $this->rc_cache = array();
92 $this->rcMoveIndex = 0;
93 $this->rcCacheIndex = 0;
94 $this->lastdate = '';
95 $this->rclistOpen = false;
96 return '';
97 }
98
99 /**
100 * Returns text for the end of RC
101 */
102 function endRecentChangesList() {
103 if( $this->rclistOpen ) {
104 return "</ul>\n";
105 } else {
106 return '';
107 }
108 }
109
110
111 function insertMove( &$s, $rc ) {
112 # Diff
113 $s .= '(' . $this->message['diff'] . ') (';
114 # Hist
115 $s .= $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), $this->message['hist'], 'action=history' ) .
116 ') . . ';
117
118 # "[[x]] moved to [[y]]"
119 $msg = ( $rc->mAttribs['rc_type'] == RC_MOVE ) ? '1movedto2' : '1movedto2_redir';
120 $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
121 $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
122 }
123
124 function insertDateHeader(&$s, $rc_timestamp) {
125 global $wgLang;
126
127 # Make date header if necessary
128 $date = $wgLang->date( $rc_timestamp, true, true );
129 $s = '';
130 if( $date != $this->lastdate ) {
131 if( '' != $this->lastdate ) {
132 $s .= "</ul>\n";
133 }
134 $s .= '<h4>'.$date."</h4>\n<ul class=\"special\">";
135 $this->lastdate = $date;
136 $this->rclistOpen = true;
137 }
138 }
139
140 function insertLog(&$s, $title, $logtype) {
141 $logname = LogPage::logName( $logtype );
142 $s .= '(' . $this->skin->makeKnownLinkObj($title, $logname ) . ')';
143 }
144
145
146 function insertDiffHist(&$s, &$rc, $unpatrolled) {
147 # Diff link
148 if( $rc->mAttribs['rc_type'] == RC_NEW || $rc->mAttribs['rc_type'] == RC_LOG ) {
149 $diffLink = $this->message['diff'];
150 } else {
151 $rcidparam = $unpatrolled
152 ? array( 'rcid' => $rc->mAttribs['rc_id'] )
153 : array();
154 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'],
155 wfArrayToCGI( array(
156 'curid' => $rc->mAttribs['rc_cur_id'],
157 'diff' => $rc->mAttribs['rc_this_oldid'],
158 'oldid' => $rc->mAttribs['rc_last_oldid'] ),
159 $rcidparam ),
160 '', '', ' tabindex="'.$rc->counter.'"');
161 }
162 $s .= '('.$diffLink.') (';
163
164 # History link
165 $s .= $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['hist'],
166 wfArrayToCGI( array(
167 'curid' => $rc->mAttribs['rc_cur_id'],
168 'action' => 'history' ) ) );
169 $s .= ') . . ';
170 }
171
172 function insertArticleLink(&$s, &$rc, $unpatrolled, $watched) {
173 # Article link
174 # If it's a new article, there is no diff link, but if it hasn't been
175 # patrolled yet, we need to give users a way to do so
176 $params = ( $unpatrolled && $rc->mAttribs['rc_type'] == RC_NEW )
177 ? 'rcid='.$rc->mAttribs['rc_id']
178 : '';
179 $articlelink = ' '. $this->skin->makeKnownLinkObj( $rc->getTitle(), '', $params );
180 if($watched) $articlelink = '<strong>'.$articlelink.'</strong>';
181 global $wgContLang;
182 $articlelink .= $wgContLang->getDirMark();
183
184 $s .= ' '.$articlelink;
185 }
186
187 function insertTimestamp(&$s, $rc) {
188 global $wgLang;
189 # Timestamp
190 $s .= '; ' . $wgLang->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . ';
191 }
192
193 /** Insert links to user page, user talk page and eventually a blocking link */
194 function insertUserRelatedLinks(&$s, &$rc) {
195 $s .= $this->skin->userLink( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
196 $s .= $this->skin->userToolLinks( $rc->mAttribs['rc_user'], $rc->mAttribs['rc_user_text'] );
197 }
198
199 /** insert a formatted comment */
200 function insertComment(&$s, &$rc) {
201 # Add comment
202 if( $rc->mAttribs['rc_type'] != RC_MOVE && $rc->mAttribs['rc_type'] != RC_MOVE_OVER_REDIRECT ) {
203 $s .= $this->skin->commentBlock( $rc->mAttribs['rc_comment'], $rc->getTitle() );
204 }
205 }
206
207 /**
208 * Check whether to enable recent changes patrol features
209 * @return bool
210 */
211 function usePatrol() {
212 global $wgUseRCPatrol, $wgUser;
213 return( $wgUseRCPatrol && $wgUser->isAllowed( 'patrol' ) );
214 }
215
216
217 }
218
219
220 /**
221 * Generate a list of changes using the good old system (no javascript)
222 */
223 class OldChangesList extends ChangesList {
224 /**
225 * Format a line using the old system (aka without any javascript).
226 */
227 function recentChangesLine( &$rc, $watched = false ) {
228 global $wgContLang;
229
230 $fname = 'ChangesList::recentChangesLineOld';
231 wfProfileIn( $fname );
232
233
234 # Extract DB fields into local scope
235 extract( $rc->mAttribs );
236
237 # Should patrol-related stuff be shown?
238 $unpatrolled = $this->usePatrol() && $rc_patrolled == 0;
239
240 $this->insertDateHeader($s,$rc_timestamp);
241
242 $s .= '<li>';
243
244 // moved pages
245 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
246 $this->insertMove( $s, $rc );
247 // log entries
248 } elseif ( $rc_namespace == NS_SPECIAL ) {
249 list( $specialName, $specialSubpage ) = SpecialPage::resolveAliasWithSubpage( $rc_title );
250 if ( $specialName == 'Log' ) {
251 $this->insertLog( $s, $rc->getTitle(), $specialSubpage );
252 } else {
253 wfDebug( "Unexpected special page in recentchanges\n" );
254 }
255 // all other stuff
256 } else {
257 wfProfileIn($fname.'-page');
258
259 $this->insertDiffHist($s, $rc, $unpatrolled);
260
261 # M, N, b and ! (minor, new, bot and unpatrolled)
262 $s .= ' ' . $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $unpatrolled, '', $rc_bot );
263 $this->insertArticleLink($s, $rc, $unpatrolled, $watched);
264
265 wfProfileOut($fname.'-page');
266 }
267
268 wfProfileIn( $fname.'-rest' );
269
270 $this->insertTimestamp($s,$rc);
271 $this->insertUserRelatedLinks($s,$rc);
272 $this->insertComment($s, $rc);
273
274 if($rc->numberofWatchingusers > 0) {
275 $s .= ' ' . wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rc->numberofWatchingusers));
276 }
277
278 $s .= "</li>\n";
279
280 wfProfileOut( $fname.'-rest' );
281
282 wfProfileOut( $fname );
283 return $s;
284 }
285 }
286
287
288 /**
289 * Generate a list of changes using an Enhanced system (use javascript).
290 */
291 class EnhancedChangesList extends ChangesList {
292 /**
293 * Format a line for enhanced recentchange (aka with javascript and block of lines).
294 */
295 function recentChangesLine( &$baseRC, $watched = false ) {
296 global $wgLang, $wgContLang;
297
298 # Create a specialised object
299 $rc = RCCacheEntry::newFromParent( $baseRC );
300
301 # Extract fields from DB into the function scope (rc_xxxx variables)
302 extract( $rc->mAttribs );
303 $curIdEq = 'curid=' . $rc_cur_id;
304
305 # If it's a new day, add the headline and flush the cache
306 $date = $wgLang->date( $rc_timestamp, true);
307 $ret = '';
308 if( $date != $this->lastdate ) {
309 # Process current cache
310 $ret = $this->recentChangesBlock();
311 $this->rc_cache = array();
312 $ret .= "<h4>{$date}</h4>\n";
313 $this->lastdate = $date;
314 }
315
316 # Should patrol-related stuff be shown?
317 if( $this->usePatrol() ) {
318 $rc->unpatrolled = !$rc_patrolled;
319 } else {
320 $rc->unpatrolled = false;
321 }
322
323 # Make article link
324 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
325 $msg = ( $rc_type == RC_MOVE ) ? "1movedto2" : "1movedto2_redir";
326 $clink = wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ),
327 $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) );
328 } elseif( $rc_namespace == NS_SPECIAL ) {
329 list( $specialName, $logtype ) = SpecialPage::resolveAliasWithSubpage( $rc_title );
330 if ( $specialName == 'Log' ) {
331 # Log updates, etc
332 $logname = LogPage::logName( $logtype );
333 $clink = '(' . $this->skin->makeKnownLinkObj( $rc->getTitle(), $logname ) . ')';
334 } else {
335 wfDebug( "Unexpected special page in recentchanges\n" );
336 $clink = '';
337 }
338 } elseif( $rc->unpatrolled && $rc_type == RC_NEW ) {
339 # Unpatrolled new page, give rc_id in query
340 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '', "rcid={$rc_id}" );
341 } else {
342 $clink = $this->skin->makeKnownLinkObj( $rc->getTitle(), '' );
343 }
344
345 $time = $wgContLang->time( $rc_timestamp, true, true );
346 $rc->watched = $watched;
347 $rc->link = $clink;
348 $rc->timestamp = $time;
349 $rc->numberofWatchingusers = $baseRC->numberofWatchingusers;
350
351 # Make "cur" and "diff" links
352 if( $rc->unpatrolled ) {
353 $rcIdQuery = "&rcid={$rc_id}";
354 } else {
355 $rcIdQuery = '';
356 }
357 $querycur = $curIdEq."&diff=0&oldid=$rc_this_oldid";
358 $querydiff = $curIdEq."&diff=$rc_this_oldid&oldid=$rc_last_oldid$rcIdQuery";
359 $aprops = ' tabindex="'.$baseRC->counter.'"';
360 $curLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['cur'], $querycur, '' ,'', $aprops );
361 if( $rc_type == RC_NEW || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
362 if( $rc_type != RC_NEW ) {
363 $curLink = $this->message['cur'];
364 }
365 $diffLink = $this->message['diff'];
366 } else {
367 $diffLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['diff'], $querydiff, '' ,'', $aprops );
368 }
369
370 # Make "last" link
371 if( $rc_last_oldid == 0 || $rc_type == RC_LOG || $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
372 $lastLink = $this->message['last'];
373 } else {
374 $lastLink = $this->skin->makeKnownLinkObj( $rc->getTitle(), $this->message['last'],
375 $curIdEq.'&diff='.$rc_this_oldid.'&oldid='.$rc_last_oldid . $rcIdQuery );
376 }
377
378 $rc->userlink = $this->skin->userLink( $rc_user, $rc_user_text );
379
380 $rc->lastlink = $lastLink;
381 $rc->curlink = $curLink;
382 $rc->difflink = $diffLink;
383
384 $rc->usertalklink = $this->skin->userToolLinks( $rc_user, $rc_user_text );
385
386 # Put accumulated information into the cache, for later display
387 # Page moves go on their own line
388 $title = $rc->getTitle();
389 $secureName = $title->getPrefixedDBkey();
390 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
391 # Use an @ character to prevent collision with page names
392 $this->rc_cache['@@' . ($this->rcMoveIndex++)] = array($rc);
393 } else {
394 if( !isset ( $this->rc_cache[$secureName] ) ) {
395 $this->rc_cache[$secureName] = array();
396 }
397 array_push( $this->rc_cache[$secureName], $rc );
398 }
399 return $ret;
400 }
401
402 /**
403 * Enhanced RC group
404 */
405 function recentChangesBlockGroup( $block ) {
406 global $wgContLang;
407 $r = '';
408
409 # Collate list of users
410 $isnew = false;
411 $unpatrolled = false;
412 $userlinks = array();
413 foreach( $block as $rcObj ) {
414 $oldid = $rcObj->mAttribs['rc_last_oldid'];
415 if( $rcObj->mAttribs['rc_new'] ) {
416 $isnew = true;
417 }
418 $u = $rcObj->userlink;
419 if( !isset( $userlinks[$u] ) ) {
420 $userlinks[$u] = 0;
421 }
422 if( $rcObj->unpatrolled ) {
423 $unpatrolled = true;
424 }
425 $bot = $rcObj->mAttribs['rc_bot'];
426 $userlinks[$u]++;
427 }
428
429 # Sort the list and convert to text
430 krsort( $userlinks );
431 asort( $userlinks );
432 $users = array();
433 foreach( $userlinks as $userlink => $count) {
434 $text = $userlink;
435 $text .= $wgContLang->getDirMark();
436 if( $count > 1 ) {
437 $text .= ' ('.$count.'&times;)';
438 }
439 array_push( $users, $text );
440 }
441
442 $users = ' <span class="changedby">['.implode('; ',$users).']</span>';
443
444 # Arrow
445 $rci = 'RCI'.$this->rcCacheIndex;
446 $rcl = 'RCL'.$this->rcCacheIndex;
447 $rcm = 'RCM'.$this->rcCacheIndex;
448 $toggleLink = "javascript:toggleVisibility('$rci','$rcm','$rcl')";
449 $tl = '<span id="'.$rcm.'"><a href="'.$toggleLink.'">' . $this->sideArrow() . '</a></span>';
450 $tl .= '<span id="'.$rcl.'" style="display:none"><a href="'.$toggleLink.'">' . $this->downArrow() . '</a></span>';
451 $r .= $tl;
452
453 # Main line
454 $r .= '<tt>';
455 $r .= $this->recentChangesFlags( $isnew, false, $unpatrolled, '&nbsp;', $bot );
456
457 # Timestamp
458 $r .= ' '.$block[0]->timestamp.' ';
459 $r .= '</tt>';
460
461 # Article link
462 $r .= $this->maybeWatchedLink( $block[0]->link, $block[0]->watched );
463 $r .= $wgContLang->getDirMark();
464
465 $curIdEq = 'curid=' . $block[0]->mAttribs['rc_cur_id'];
466 $currentRevision = $block[0]->mAttribs['rc_this_oldid'];
467 if( $block[0]->mAttribs['rc_type'] != RC_LOG ) {
468 # Changes
469 $r .= ' ('.count($block).' ';
470 if( $isnew ) {
471 $r .= $this->message['changes'];
472 } else {
473 $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
474 $this->message['changes'], $curIdEq."&diff=$currentRevision&oldid=$oldid" );
475 }
476 $r .= '; ';
477
478 # History
479 $r .= $this->skin->makeKnownLinkObj( $block[0]->getTitle(),
480 $this->message['history'], $curIdEq.'&action=history' );
481 $r .= ')';
482 }
483
484 $r .= $users;
485
486 if($block[0]->numberofWatchingusers > 0) {
487 global $wgContLang;
488 $r .= wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($block[0]->numberofWatchingusers));
489 }
490 $r .= "<br />\n";
491
492 # Sub-entries
493 $r .= '<div id="'.$rci.'" style="display:none">';
494 foreach( $block as $rcObj ) {
495 # Get rc_xxxx variables
496 extract( $rcObj->mAttribs );
497
498 $r .= $this->spacerArrow();
499 $r .= '<tt>&nbsp; &nbsp; &nbsp; &nbsp;';
500 $r .= $this->recentChangesFlags( $rc_new, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
501 $r .= '&nbsp;</tt>';
502
503 $o = '';
504 if( $rc_this_oldid != 0 ) {
505 $o = 'oldid='.$rc_this_oldid;
506 }
507 if( $rc_type == RC_LOG ) {
508 $link = $rcObj->timestamp;
509 } else {
510 $link = $this->skin->makeKnownLinkObj( $rcObj->getTitle(), $rcObj->timestamp, $curIdEq.'&'.$o );
511 }
512 $link = '<tt>'.$link.'</tt>';
513
514 $r .= $link;
515 $r .= ' (';
516 $r .= $rcObj->curlink;
517 $r .= '; ';
518 $r .= $rcObj->lastlink;
519 $r .= ') . . '.$rcObj->userlink;
520 $r .= $rcObj->usertalklink;
521 $r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
522 $r .= "<br />\n";
523 }
524 $r .= "</div>\n";
525
526 $this->rcCacheIndex++;
527 return $r;
528 }
529
530 function maybeWatchedLink( $link, $watched=false ) {
531 if( $watched ) {
532 // FIXME: css style might be more appropriate
533 return '<strong>' . $link . '</strong>';
534 } else {
535 return $link;
536 }
537 }
538
539 /**
540 * Generate HTML for an arrow or placeholder graphic
541 * @param string $dir one of '', 'd', 'l', 'r'
542 * @param string $alt text
543 * @return string HTML <img> tag
544 * @access private
545 */
546 function arrow( $dir, $alt='' ) {
547 global $wgStylePath;
548 $encUrl = htmlspecialchars( $wgStylePath . '/common/images/Arr_' . $dir . '.png' );
549 $encAlt = htmlspecialchars( $alt );
550 return "<img src=\"$encUrl\" width=\"12\" height=\"12\" alt=\"$encAlt\" />";
551 }
552
553 /**
554 * Generate HTML for a right- or left-facing arrow,
555 * depending on language direction.
556 * @return string HTML <img> tag
557 * @access private
558 */
559 function sideArrow() {
560 global $wgContLang;
561 $dir = $wgContLang->isRTL() ? 'l' : 'r';
562 return $this->arrow( $dir, '+' );
563 }
564
565 /**
566 * Generate HTML for a down-facing arrow
567 * depending on language direction.
568 * @return string HTML <img> tag
569 * @access private
570 */
571 function downArrow() {
572 return $this->arrow( 'd', '-' );
573 }
574
575 /**
576 * Generate HTML for a spacer image
577 * @return string HTML <img> tag
578 * @access private
579 */
580 function spacerArrow() {
581 return $this->arrow( '', ' ' );
582 }
583
584 /**
585 * Enhanced RC ungrouped line.
586 * @return string a HTML formated line (generated using $r)
587 */
588 function recentChangesBlockLine( $rcObj ) {
589 global $wgContLang;
590
591 # Get rc_xxxx variables
592 extract( $rcObj->mAttribs );
593 $curIdEq = 'curid='.$rc_cur_id;
594
595 $r = '';
596
597 # Spacer image
598 $r .= $this->spacerArrow();
599
600 # Flag and Timestamp
601 $r .= '<tt>';
602
603 if( $rc_type == RC_MOVE || $rc_type == RC_MOVE_OVER_REDIRECT ) {
604 $r .= '&nbsp;&nbsp;&nbsp;';
605 } else {
606 $r .= $this->recentChangesFlags( $rc_type == RC_NEW, $rc_minor, $rcObj->unpatrolled, '&nbsp;', $rc_bot );
607 }
608 $r .= ' '.$rcObj->timestamp.' </tt>';
609
610 # Article link
611 $r .= $this->maybeWatchedLink( $rcObj->link, $rcObj->watched );
612
613 # Diff
614 $r .= ' ('. $rcObj->difflink .'; ';
615
616 # Hist
617 $r .= $this->skin->makeKnownLinkObj( $rcObj->getTitle(), wfMsg( 'hist' ), $curIdEq.'&action=history' );
618
619 # User/talk
620 $r .= ') . . '.$rcObj->userlink . $rcObj->usertalklink;
621
622 # Comment
623 if( $rc_type != RC_MOVE && $rc_type != RC_MOVE_OVER_REDIRECT ) {
624 $r .= $this->skin->commentBlock( $rc_comment, $rcObj->getTitle() );
625 }
626
627 if( $rcObj->numberofWatchingusers > 0 ) {
628 $r .= wfMsg('number_of_watching_users_RCview', $wgContLang->formatNum($rcObj->numberofWatchingusers));
629 }
630
631 $r .= "<br />\n";
632 return $r;
633 }
634
635 /**
636 * If enhanced RC is in use, this function takes the previously cached
637 * RC lines, arranges them, and outputs the HTML
638 */
639 function recentChangesBlock() {
640 if( count ( $this->rc_cache ) == 0 ) {
641 return '';
642 }
643 $blockOut = '';
644 foreach( $this->rc_cache as $block ) {
645 if( count( $block ) < 2 ) {
646 $blockOut .= $this->recentChangesBlockLine( array_shift( $block ) );
647 } else {
648 $blockOut .= $this->recentChangesBlockGroup( $block );
649 }
650 }
651
652 return '<div>'.$blockOut.'</div>';
653 }
654
655 /**
656 * Returns text for the end of RC
657 * If enhanced RC is in use, returns pretty much all the text
658 */
659 function endRecentChangesList() {
660 return $this->recentChangesBlock() . parent::endRecentChangesList();
661 }
662
663 }
664 ?>