Localisation updates for core messages from translatewiki.net (2009-02-20 19:30 UTC)
[mediawiki.git] / includes / specials / SpecialWantedtemplates.php
blob43b5cf8f877af5970d72a031008d2102c4bc7eb7
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
7 /**
8 * A querypage to list the most wanted templates - implements Special:Wantedtemplates
9 * based on SpecialWantedcategories.php by Ævar Arnfjörð Bjarmason <avarab@gmail.com>
10 * makeWlhLink() taken from SpecialMostlinkedtemplates by Rob Church <robchur@gmail.com>
12 * @ingroup SpecialPage
14 * @author Danny B.
15 * @copyright Copyright © 2008, Danny B.
16 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
18 class WantedTemplatesPage extends QueryPage {
20 function getName() {
21 return 'Wantedtemplates';
24 function isExpensive() {
25 return true;
28 function isSyndicated() {
29 return false;
32 function getSQL() {
33 $dbr = wfGetDB( DB_SLAVE );
34 list( $templatelinks, $page ) = $dbr->tableNamesN( 'templatelinks', 'page' );
35 $name = $dbr->addQuotes( $this->getName() );
36 return
38 SELECT $name as type,
39 tl_namespace as namespace,
40 tl_title as title,
41 COUNT(*) as value
42 FROM $templatelinks LEFT JOIN
43 $page ON tl_title = page_title AND tl_namespace = page_namespace
44 WHERE page_title IS NULL AND tl_namespace = ". NS_TEMPLATE ."
45 GROUP BY tl_title
49 function sortDescending() { return true; }
51 /**
52 * Fetch user page links and cache their existence
54 function preprocessResults( $db, $res ) {
55 $batch = new LinkBatch;
56 while ( $row = $db->fetchObject( $res ) )
57 $batch->add( $row->namespace, $row->title );
58 $batch->execute();
60 // Back to start for display
61 if ( $db->numRows( $res ) > 0 )
62 // If there are no rows we get an error seeking.
63 $db->dataSeek( $res, 0 );
66 function formatResult( $skin, $result ) {
67 global $wgLang, $wgContLang;
69 $nt = Title::makeTitle( $result->namespace, $result->title );
70 $text = $wgContLang->convert( $nt->getText() );
72 $plink = $this->isCached() ?
73 $skin->makeLinkObj( $nt, htmlspecialchars( $text ) ) :
74 $skin->makeBrokenLinkObj( $nt, htmlspecialchars( $text ) );
76 $nlinks = wfMsgExt( 'nmembers', array( 'parsemag', 'escape'),
77 $wgLang->formatNum( $result->value ) );
78 return wfSpecialList(
79 $plink,
80 $this->makeWlhLink( $nt, $skin, $result )
84 /**
85 * Make a "what links here" link for a given title
87 * @param Title $title Title to make the link for
88 * @param Skin $skin Skin to use
89 * @param object $result Result row
90 * @return string
92 private function makeWlhLink( $title, $skin, $result ) {
93 global $wgLang;
94 $wlh = SpecialPage::getTitleFor( 'Whatlinkshere' );
95 $label = wfMsgExt( 'nlinks', array( 'parsemag', 'escape' ),
96 $wgLang->formatNum( $result->value ) );
97 return $skin->link( $wlh, $label, array(), array( 'target' => $title->getPrefixedText() ) );
102 * constructor
104 function wfSpecialWantedTemplates() {
105 list( $limit, $offset ) = wfCheckLimits();
107 $wpp = new WantedTemplatesPage();
109 $wpp->doQuery( $offset, $limit );