Fix major display regression for CSS 1 browsers like IE5 (see wikien-l).
[lhc/web/wiklou.git] / includes / SpecialMostcategories.php
1 <?php
2 /**
3 * @package MediaWiki
4 * @subpackage SpecialPage
5 *
6 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
7 * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
8 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
9 */
10
11 /**
12 * @package MediaWiki
13 * @subpackage SpecialPage
14 */
15 class MostcategoriesPage extends QueryPage {
16
17 function getName() { return 'Mostcategories'; }
18 function isExpensive() { return true; }
19 function isSyndicated() { return false; }
20
21 function getSQL() {
22 $dbr =& wfGetDB( DB_SLAVE );
23 list( $categorylinks, $page) = $dbr->tableNamesN( 'categorylinks', 'page' );
24 return
25 "
26 SELECT
27 'Mostcategories' as type,
28 page_namespace as namespace,
29 page_title as title,
30 COUNT(*) as value
31 FROM $categorylinks
32 LEFT JOIN $page ON cl_from = page_id
33 WHERE page_namespace = " . NS_MAIN . "
34 GROUP BY 1,2,3
35 HAVING COUNT(*) > 1
36 ";
37 }
38
39 function formatResult( $skin, $result ) {
40 global $wgLang;
41 $title = Title::makeTitleSafe( $result->namespace, $result->title );
42 $count = wfMsgExt( 'ncategories', array( 'parsemag', 'escape' ), $wgLang->formatNum( $result->value ) );
43 $link = $skin->makeKnownLinkObj( $title, $title->getText() );
44 return wfSpecialList( $link, $count );
45 }
46 }
47
48 /**
49 * constructor
50 */
51 function wfSpecialMostcategories() {
52 list( $limit, $offset ) = wfCheckLimits();
53
54 $wpp = new MostcategoriesPage();
55
56 $wpp->doQuery( $offset, $limit );
57 }
58
59 ?>