Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / includes / CategoryViewer.php
1 <?php
2 /**
3 * List and paging of category members.
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 CategoryViewer extends ContextSource {
24 /** @var int */
25 public $limit;
26
27 /** @var array */
28 public $from;
29
30 /** @var array */
31 public $until;
32
33 /** @var string[] */
34 public $articles;
35
36 /** @var array */
37 public $articles_start_char;
38
39 /** @var array */
40 public $children;
41
42 /** @var array */
43 public $children_start_char;
44
45 /** @var bool */
46 public $showGallery;
47
48 /** @var array */
49 public $imgsNoGallery_start_char;
50
51 /** @var array */
52 public $imgsNoGallery;
53
54 /** @var array */
55 public $nextPage;
56
57 /** @var array */
58 protected $prevPage;
59
60 /** @var array */
61 public $flip;
62
63 /** @var Title */
64 public $title;
65
66 /** @var Collation */
67 public $collation;
68
69 /** @var ImageGallery */
70 public $gallery;
71
72 /** @var Category Category object for this page. */
73 private $cat;
74
75 /** @var array The original query array, to be used in generating paging links. */
76 private $query;
77
78 /**
79 * @since 1.19 $context is a second, required parameter
80 * @param Title $title
81 * @param IContextSource $context
82 * @param array $from An array with keys page, subcat,
83 * and file for offset of results of each section (since 1.17)
84 * @param array $until An array with 3 keys for until of each section (since 1.17)
85 * @param array $query
86 */
87 function __construct( $title, IContextSource $context, $from = array(),
88 $until = array(), $query = array()
89 ) {
90 $this->title = $title;
91 $this->setContext( $context );
92 $this->getOutput()->addModuleStyles( array(
93 'mediawiki.action.view.categoryPage.styles'
94 ) );
95 $this->from = $from;
96 $this->until = $until;
97 $this->limit = $context->getConfig()->get( 'CategoryPagingLimit' );
98 $this->cat = Category::newFromTitle( $title );
99 $this->query = $query;
100 $this->collation = Collation::singleton();
101 unset( $this->query['title'] );
102 }
103
104 /**
105 * Format the category data list.
106 *
107 * @return string HTML output
108 */
109 public function getHTML() {
110
111 $this->showGallery = $this->getConfig()->get( 'CategoryMagicGallery' )
112 && !$this->getOutput()->mNoGallery;
113
114 $this->clearCategoryState();
115 $this->doCategoryQuery();
116 $this->finaliseCategoryState();
117
118 $r = $this->getSubcategorySection() .
119 $this->getPagesSection() .
120 $this->getImageSection();
121
122 if ( $r == '' ) {
123 // If there is no category content to display, only
124 // show the top part of the navigation links.
125 // @todo FIXME: Cannot be completely suppressed because it
126 // is unknown if 'until' or 'from' makes this
127 // give 0 results.
128 $r = $r . $this->getCategoryTop();
129 } else {
130 $r = $this->getCategoryTop() .
131 $r .
132 $this->getCategoryBottom();
133 }
134
135 // Give a proper message if category is empty
136 if ( $r == '' ) {
137 $r = $this->msg( 'category-empty' )->parseAsBlock();
138 }
139
140 $lang = $this->getLanguage();
141 $langAttribs = array( 'lang' => $lang->getHtmlCode(), 'dir' => $lang->getDir() );
142 # put a div around the headings which are in the user language
143 $r = Html::openElement( 'div', $langAttribs ) . $r . '</div>';
144
145 return $r;
146 }
147
148 function clearCategoryState() {
149 $this->articles = array();
150 $this->articles_start_char = array();
151 $this->children = array();
152 $this->children_start_char = array();
153 if ( $this->showGallery ) {
154 // Note that null for mode is taken to mean use default.
155 $mode = $this->getRequest()->getVal( 'gallerymode', null );
156 try {
157 $this->gallery = ImageGalleryBase::factory( $mode, $this->getContext() );
158 } catch ( Exception $e ) {
159 // User specified something invalid, fallback to default.
160 $this->gallery = ImageGalleryBase::factory( false, $this->getContext() );
161 }
162
163 $this->gallery->setHideBadImages();
164 } else {
165 $this->imgsNoGallery = array();
166 $this->imgsNoGallery_start_char = array();
167 }
168 }
169
170 /**
171 * Add a subcategory to the internal lists, using a Category object
172 * @param Category $cat
173 * @param string $sortkey
174 * @param int $pageLength
175 */
176 function addSubcategoryObject( Category $cat, $sortkey, $pageLength ) {
177 // Subcategory; strip the 'Category' namespace from the link text.
178 $title = $cat->getTitle();
179
180 $this->children[] = $this->generateLink(
181 'subcat',
182 $title,
183 $title->isRedirect(),
184 htmlspecialchars( $title->getText() )
185 );
186
187 $this->children_start_char[] =
188 $this->getSubcategorySortChar( $cat->getTitle(), $sortkey );
189 }
190
191 function generateLink( $type, Title $title, $isRedirect, $html = null ) {
192 $link = null;
193 Hooks::run( 'CategoryViewer::generateLink', array( $type, $title, $html, &$link ) );
194 if ( $link === null ) {
195 $link = Linker::link( $title, $html );
196 }
197 if ( $isRedirect ) {
198 $link = '<span class="redirect-in-category">' . $link . '</span>';
199 }
200
201 return $link;
202 }
203
204 /**
205 * Get the character to be used for sorting subcategories.
206 * If there's a link from Category:A to Category:B, the sortkey of the resulting
207 * entry in the categorylinks table is Category:A, not A, which it SHOULD be.
208 * Workaround: If sortkey == "Category:".$title, than use $title for sorting,
209 * else use sortkey...
210 *
211 * @param Title $title
212 * @param string $sortkey The human-readable sortkey (before transforming to icu or whatever).
213 * @return string
214 */
215 function getSubcategorySortChar( $title, $sortkey ) {
216 global $wgContLang;
217
218 if ( $title->getPrefixedText() == $sortkey ) {
219 $word = $title->getDBkey();
220 } else {
221 $word = $sortkey;
222 }
223
224 $firstChar = $this->collation->getFirstLetter( $word );
225
226 return $wgContLang->convert( $firstChar );
227 }
228
229 /**
230 * Add a page in the image namespace
231 * @param Title $title
232 * @param string $sortkey
233 * @param int $pageLength
234 * @param bool $isRedirect
235 */
236 function addImage( Title $title, $sortkey, $pageLength, $isRedirect = false ) {
237 global $wgContLang;
238 if ( $this->showGallery ) {
239 $flip = $this->flip['file'];
240 if ( $flip ) {
241 $this->gallery->insert( $title );
242 } else {
243 $this->gallery->add( $title );
244 }
245 } else {
246 $this->imgsNoGallery[] = $this->generateLink( 'image', $title, $isRedirect );
247
248 $this->imgsNoGallery_start_char[] = $wgContLang->convert(
249 $this->collation->getFirstLetter( $sortkey ) );
250 }
251 }
252
253 /**
254 * Add a miscellaneous page
255 * @param Title $title
256 * @param string $sortkey
257 * @param int $pageLength
258 * @param bool $isRedirect
259 */
260 function addPage( $title, $sortkey, $pageLength, $isRedirect = false ) {
261 global $wgContLang;
262
263 $this->articles[] = $this->generateLink( 'page', $title, $isRedirect );
264
265 $this->articles_start_char[] = $wgContLang->convert(
266 $this->collation->getFirstLetter( $sortkey ) );
267 }
268
269 function finaliseCategoryState() {
270 if ( $this->flip['subcat'] ) {
271 $this->children = array_reverse( $this->children );
272 $this->children_start_char = array_reverse( $this->children_start_char );
273 }
274 if ( $this->flip['page'] ) {
275 $this->articles = array_reverse( $this->articles );
276 $this->articles_start_char = array_reverse( $this->articles_start_char );
277 }
278 if ( !$this->showGallery && $this->flip['file'] ) {
279 $this->imgsNoGallery = array_reverse( $this->imgsNoGallery );
280 $this->imgsNoGallery_start_char = array_reverse( $this->imgsNoGallery_start_char );
281 }
282 }
283
284 function doCategoryQuery() {
285 $dbr = wfGetDB( DB_SLAVE, 'category' );
286
287 $this->nextPage = array(
288 'page' => null,
289 'subcat' => null,
290 'file' => null,
291 );
292 $this->prevPage = array(
293 'page' => null,
294 'subcat' => null,
295 'file' => null,
296 );
297
298 $this->flip = array( 'page' => false, 'subcat' => false, 'file' => false );
299
300 foreach ( array( 'page', 'subcat', 'file' ) as $type ) {
301 # Get the sortkeys for start/end, if applicable. Note that if
302 # the collation in the database differs from the one
303 # set in $wgCategoryCollation, pagination might go totally haywire.
304 $extraConds = array( 'cl_type' => $type );
305 if ( isset( $this->from[$type] ) && $this->from[$type] !== null ) {
306 $extraConds[] = 'cl_sortkey >= '
307 . $dbr->addQuotes( $this->collation->getSortKey( $this->from[$type] ) );
308 } elseif ( isset( $this->until[$type] ) && $this->until[$type] !== null ) {
309 $extraConds[] = 'cl_sortkey < '
310 . $dbr->addQuotes( $this->collation->getSortKey( $this->until[$type] ) );
311 $this->flip[$type] = true;
312 }
313
314 $res = $dbr->select(
315 array( 'page', 'categorylinks', 'category' ),
316 array( 'page_id', 'page_title', 'page_namespace', 'page_len',
317 'page_is_redirect', 'cl_sortkey', 'cat_id', 'cat_title',
318 'cat_subcats', 'cat_pages', 'cat_files',
319 'cl_sortkey_prefix', 'cl_collation' ),
320 array_merge( array( 'cl_to' => $this->title->getDBkey() ), $extraConds ),
321 __METHOD__,
322 array(
323 'USE INDEX' => array( 'categorylinks' => 'cl_sortkey' ),
324 'LIMIT' => $this->limit + 1,
325 'ORDER BY' => $this->flip[$type] ? 'cl_sortkey DESC' : 'cl_sortkey',
326 ),
327 array(
328 'categorylinks' => array( 'INNER JOIN', 'cl_from = page_id' ),
329 'category' => array( 'LEFT JOIN', array(
330 'cat_title = page_title',
331 'page_namespace' => NS_CATEGORY
332 ) )
333 )
334 );
335
336 Hooks::run( 'CategoryViewer::doCategoryQuery', array( $type, $res ) );
337
338 $count = 0;
339 foreach ( $res as $row ) {
340 $title = Title::newFromRow( $row );
341 if ( $row->cl_collation === '' ) {
342 // Hack to make sure that while updating from 1.16 schema
343 // and db is inconsistent, that the sky doesn't fall.
344 // See r83544. Could perhaps be removed in a couple decades...
345 $humanSortkey = $row->cl_sortkey;
346 } else {
347 $humanSortkey = $title->getCategorySortkey( $row->cl_sortkey_prefix );
348 }
349
350 if ( ++$count > $this->limit ) {
351 # We've reached the one extra which shows that there
352 # are additional pages to be had. Stop here...
353 $this->nextPage[$type] = $humanSortkey;
354 break;
355 }
356 if ( $count == $this->limit ) {
357 $this->prevPage[$type] = $humanSortkey;
358 }
359
360 if ( $title->getNamespace() == NS_CATEGORY ) {
361 $cat = Category::newFromRow( $row, $title );
362 $this->addSubcategoryObject( $cat, $humanSortkey, $row->page_len );
363 } elseif ( $title->getNamespace() == NS_FILE ) {
364 $this->addImage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
365 } else {
366 $this->addPage( $title, $humanSortkey, $row->page_len, $row->page_is_redirect );
367 }
368 }
369 }
370 }
371
372 /**
373 * @return string
374 */
375 function getCategoryTop() {
376 $r = $this->getCategoryBottom();
377 return $r === ''
378 ? $r
379 : "<br style=\"clear:both;\"/>\n" . $r;
380 }
381
382 /**
383 * @return string
384 */
385 function getSubcategorySection() {
386 # Don't show subcategories section if there are none.
387 $r = '';
388 $rescnt = count( $this->children );
389 $dbcnt = $this->cat->getSubcatCount();
390 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'subcat' );
391
392 if ( $rescnt > 0 ) {
393 # Showing subcategories
394 $r .= "<div id=\"mw-subcategories\">\n";
395 $r .= '<h2>' . $this->msg( 'subcategories' )->parse() . "</h2>\n";
396 $r .= $countmsg;
397 $r .= $this->getSectionPagingLinks( 'subcat' );
398 $r .= $this->formatList( $this->children, $this->children_start_char );
399 $r .= $this->getSectionPagingLinks( 'subcat' );
400 $r .= "\n</div>";
401 }
402 return $r;
403 }
404
405 /**
406 * @return string
407 */
408 function getPagesSection() {
409 $ti = wfEscapeWikiText( $this->title->getText() );
410 # Don't show articles section if there are none.
411 $r = '';
412
413 # @todo FIXME: Here and in the other two sections: we don't need to bother
414 # with this rigmarole if the entire category contents fit on one page
415 # and have already been retrieved. We can just use $rescnt in that
416 # case and save a query and some logic.
417 $dbcnt = $this->cat->getPageCount() - $this->cat->getSubcatCount()
418 - $this->cat->getFileCount();
419 $rescnt = count( $this->articles );
420 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'article' );
421
422 if ( $rescnt > 0 ) {
423 $r = "<div id=\"mw-pages\">\n";
424 $r .= '<h2>' . $this->msg( 'category_header', $ti )->parse() . "</h2>\n";
425 $r .= $countmsg;
426 $r .= $this->getSectionPagingLinks( 'page' );
427 $r .= $this->formatList( $this->articles, $this->articles_start_char );
428 $r .= $this->getSectionPagingLinks( 'page' );
429 $r .= "\n</div>";
430 }
431 return $r;
432 }
433
434 /**
435 * @return string
436 */
437 function getImageSection() {
438 $r = '';
439 $rescnt = $this->showGallery ? $this->gallery->count() : count( $this->imgsNoGallery );
440 if ( $rescnt > 0 ) {
441 $dbcnt = $this->cat->getFileCount();
442 $countmsg = $this->getCountMessage( $rescnt, $dbcnt, 'file' );
443
444 $r .= "<div id=\"mw-category-media\">\n";
445 $r .= '<h2>' .
446 $this->msg(
447 'category-media-header',
448 wfEscapeWikiText( $this->title->getText() )
449 )->text() .
450 "</h2>\n";
451 $r .= $countmsg;
452 $r .= $this->getSectionPagingLinks( 'file' );
453 if ( $this->showGallery ) {
454 $r .= $this->gallery->toHTML();
455 } else {
456 $r .= $this->formatList( $this->imgsNoGallery, $this->imgsNoGallery_start_char );
457 }
458 $r .= $this->getSectionPagingLinks( 'file' );
459 $r .= "\n</div>";
460 }
461 return $r;
462 }
463
464 /**
465 * Get the paging links for a section (subcats/pages/files), to go at the top and bottom
466 * of the output.
467 *
468 * @param string $type 'page', 'subcat', or 'file'
469 * @return string HTML output, possibly empty if there are no other pages
470 */
471 private function getSectionPagingLinks( $type ) {
472 if ( isset( $this->until[$type] ) && $this->until[$type] !== null ) {
473 // The new value for the until parameter should be pointing to the first
474 // result displayed on the page which is the second last result retrieved
475 // from the database.The next link should have a from parameter pointing
476 // to the until parameter of the current page.
477 if ( $this->nextPage[$type] !== null ) {
478 return $this->pagingLinks( $this->prevPage[$type], $this->until[$type], $type );
479 } else {
480 // If the nextPage variable is null, it means that we have reached the first page
481 // and therefore the previous link should be disabled.
482 return $this->pagingLinks( null, $this->until[$type], $type );
483 }
484 } elseif ( $this->nextPage[$type] !== null
485 || ( isset( $this->from[$type] ) && $this->from[$type] !== null )
486 ) {
487 return $this->pagingLinks( $this->from[$type], $this->nextPage[$type], $type );
488 } else {
489 return '';
490 }
491 }
492
493 /**
494 * @return string
495 */
496 function getCategoryBottom() {
497 return '';
498 }
499
500 /**
501 * Format a list of articles chunked by letter, either as a
502 * bullet list or a columnar format, depending on the length.
503 *
504 * @param array $articles
505 * @param array $articles_start_char
506 * @param int $cutoff
507 * @return string
508 * @private
509 */
510 function formatList( $articles, $articles_start_char, $cutoff = 6 ) {
511 $list = '';
512 if ( count( $articles ) > $cutoff ) {
513 $list = self::columnList( $articles, $articles_start_char );
514 } elseif ( count( $articles ) > 0 ) {
515 // for short lists of articles in categories.
516 $list = self::shortList( $articles, $articles_start_char );
517 }
518
519 $pageLang = $this->title->getPageLanguage();
520 $attribs = array( 'lang' => $pageLang->getHtmlCode(), 'dir' => $pageLang->getDir(),
521 'class' => 'mw-content-' . $pageLang->getDir() );
522 $list = Html::rawElement( 'div', $attribs, $list );
523
524 return $list;
525 }
526
527 /**
528 * Format a list of articles chunked by letter in a three-column
529 * list, ordered vertically.
530 *
531 * TODO: Take the headers into account when creating columns, so they're
532 * more visually equal.
533 *
534 * TODO: shortList and columnList are similar, need merging
535 *
536 * @param array $articles
537 * @param string[] $articles_start_char
538 * @return string
539 * @private
540 */
541 static function columnList( $articles, $articles_start_char ) {
542 $columns = array_combine( $articles, $articles_start_char );
543
544 $ret = Html::openElement( 'div', array( 'class' => 'mw-category' ) );
545
546 $colContents = array();
547
548 # Kind of like array_flip() here, but we keep duplicates in an
549 # array instead of dropping them.
550 foreach ( $columns as $article => $char ) {
551 if ( !isset( $colContents[$char] ) ) {
552 $colContents[$char] = array();
553 }
554 $colContents[$char][] = $article;
555 }
556
557 foreach ( $colContents as $char => $articles ) {
558 # Change space to non-breaking space to keep headers aligned
559 $h3char = $char === ' ' ? '&#160;' : htmlspecialchars( $char );
560
561 $ret .= '<div class="mw-category-group"><h3>' . $h3char;
562 $ret .= "</h3>\n";
563
564 $ret .= '<ul><li>';
565 $ret .= implode( "</li>\n<li>", $articles );
566 $ret .= '</li></ul></div>';
567
568 }
569
570 $ret .= Html::closeElement( 'div' );
571 return $ret;
572 }
573
574 /**
575 * Format a list of articles chunked by letter in a bullet list.
576 * @param array $articles
577 * @param string[] $articles_start_char
578 * @return string
579 * @private
580 */
581 static function shortList( $articles, $articles_start_char ) {
582 $r = '<h3>' . htmlspecialchars( $articles_start_char[0] ) . "</h3>\n";
583 $r .= '<ul><li>' . $articles[0] . '</li>';
584 $articleCount = count( $articles );
585 for ( $index = 1; $index < $articleCount; $index++ ) {
586 if ( $articles_start_char[$index] != $articles_start_char[$index - 1] ) {
587 $r .= "</ul><h3>" . htmlspecialchars( $articles_start_char[$index] ) . "</h3>\n<ul>";
588 }
589
590 $r .= "<li>{$articles[$index]}</li>";
591 }
592 $r .= '</ul>';
593 return $r;
594 }
595
596 /**
597 * Create paging links, as a helper method to getSectionPagingLinks().
598 *
599 * @param string $first The 'until' parameter for the generated URL
600 * @param string $last The 'from' parameter for the generated URL
601 * @param string $type A prefix for parameters, 'page' or 'subcat' or
602 * 'file'
603 * @return string HTML
604 */
605 private function pagingLinks( $first, $last, $type = '' ) {
606 $prevLink = $this->msg( 'prev-page' )->text();
607
608 if ( $first != '' ) {
609 $prevQuery = $this->query;
610 $prevQuery["{$type}until"] = $first;
611 unset( $prevQuery["{$type}from"] );
612 $prevLink = Linker::linkKnown(
613 $this->addFragmentToTitle( $this->title, $type ),
614 $prevLink,
615 array(),
616 $prevQuery
617 );
618 }
619
620 $nextLink = $this->msg( 'next-page' )->text();
621
622 if ( $last != '' ) {
623 $lastQuery = $this->query;
624 $lastQuery["{$type}from"] = $last;
625 unset( $lastQuery["{$type}until"] );
626 $nextLink = Linker::linkKnown(
627 $this->addFragmentToTitle( $this->title, $type ),
628 $nextLink,
629 array(),
630 $lastQuery
631 );
632 }
633
634 return $this->msg( 'categoryviewer-pagedlinks' )->rawParams( $prevLink, $nextLink )->escaped();
635 }
636
637 /**
638 * Takes a title, and adds the fragment identifier that
639 * corresponds to the correct segment of the category.
640 *
641 * @param Title $title The title (usually $this->title)
642 * @param string $section Which section
643 * @throws MWException
644 * @return Title
645 */
646 private function addFragmentToTitle( $title, $section ) {
647 switch ( $section ) {
648 case 'page':
649 $fragment = 'mw-pages';
650 break;
651 case 'subcat':
652 $fragment = 'mw-subcategories';
653 break;
654 case 'file':
655 $fragment = 'mw-category-media';
656 break;
657 default:
658 throw new MWException( __METHOD__ .
659 " Invalid section $section." );
660 }
661
662 return Title::makeTitle( $title->getNamespace(),
663 $title->getDBkey(), $fragment );
664 }
665
666 /**
667 * What to do if the category table conflicts with the number of results
668 * returned? This function says what. Each type is considered independently
669 * of the other types.
670 *
671 * @param int $rescnt The number of items returned by our database query.
672 * @param int $dbcnt The number of items according to the category table.
673 * @param string $type 'subcat', 'article', or 'file'
674 * @return string A message giving the number of items, to output to HTML.
675 */
676 private function getCountMessage( $rescnt, $dbcnt, $type ) {
677 // There are three cases:
678 // 1) The category table figure seems sane. It might be wrong, but
679 // we can't do anything about it if we don't recalculate it on ev-
680 // ery category view.
681 // 2) The category table figure isn't sane, like it's smaller than the
682 // number of actual results, *but* the number of results is less
683 // than $this->limit and there's no offset. In this case we still
684 // know the right figure.
685 // 3) We have no idea.
686
687 // Check if there's a "from" or "until" for anything
688
689 // This is a little ugly, but we seem to use different names
690 // for the paging types then for the messages.
691 if ( $type === 'article' ) {
692 $pagingType = 'page';
693 } else {
694 $pagingType = $type;
695 }
696
697 $fromOrUntil = false;
698 if ( ( isset( $this->from[$pagingType] ) && $this->from[$pagingType] !== null ) ||
699 ( isset( $this->until[$pagingType] ) && $this->until[$pagingType] !== null )
700 ) {
701 $fromOrUntil = true;
702 }
703
704 if ( $dbcnt == $rescnt ||
705 ( ( $rescnt == $this->limit || $fromOrUntil ) && $dbcnt > $rescnt )
706 ) {
707 // Case 1: seems sane.
708 $totalcnt = $dbcnt;
709 } elseif ( $rescnt < $this->limit && !$fromOrUntil ) {
710 // Case 2: not sane, but salvageable. Use the number of results.
711 // Since there are fewer than 200, we can also take this opportunity
712 // to refresh the incorrect category table entry -- which should be
713 // quick due to the small number of entries.
714 $totalcnt = $rescnt;
715 $category = $this->cat;
716 wfGetDB( DB_MASTER )->onTransactionIdle( function () use ( $category ) {
717 $category->refreshCounts();
718 } );
719 } else {
720 // Case 3: hopeless. Don't give a total count at all.
721 // Messages: category-subcat-count-limited, category-article-count-limited,
722 // category-file-count-limited
723 return $this->msg( "category-$type-count-limited" )->numParams( $rescnt )->parseAsBlock();
724 }
725 // Messages: category-subcat-count, category-article-count, category-file-count
726 return $this->msg( "category-$type-count" )->numParams( $rescnt, $totalcnt )->parseAsBlock();
727 }
728 }