Bug 32673: Keep the username in the input field if not existing
[lhc/web/wiklou.git] / includes / specials / SpecialMostimages.php
index e846b30..7805e53 100644 (file)
  */
 class MostimagesPage extends ImageQueryPage {
 
-       function getName() { return 'Mostimages'; }
+       function __construct( $name = 'Mostimages' ) {
+               parent::__construct( $name );
+       }
+
        function isExpensive() { return true; }
        function isSyndicated() { return false; }
 
-       function getSQL() {
-               $dbr = wfGetDB( DB_SLAVE );
-               $imagelinks = $dbr->tableName( 'imagelinks' );
-               return
-                       "
-                       SELECT
-                               'Mostimages' as type,
-                               " . NS_FILE . " as namespace,
-                               il_to as title,
-                               COUNT(*) as value
-                       FROM $imagelinks
-                       GROUP BY il_to
-                       HAVING COUNT(*) > 1
-                       ";
+       function getQueryInfo() {
+               return array (
+                       'tables' => array ( 'imagelinks' ),
+                       'fields' => array ( "'" . NS_FILE . "' AS namespace",
+                                       'il_to AS title',
+                                       'COUNT(*) AS value' ),
+                       'options' => array ( 'GROUP BY' => 'il_to',
+                                       'HAVING' => 'COUNT(*) > 1' )
+               );
        }
 
        function getCellHtml( $row ) {
-               global $wgLang;
-               return wfMsgExt( 'nlinks',  array( 'parsemag', 'escape' ),
-                       $wgLang->formatNum( $row->value ) ) . '<br />';
+               return $this->msg( 'nimagelinks' )->numParams( $row->value )->escaped() . '<br />';
        }
 
 }
-
-/**
- * Constructor
- */
-function wfSpecialMostimages() {
-       list( $limit, $offset ) = wfCheckLimits();
-
-       $wpp = new MostimagesPage();
-
-       $wpp->doQuery( $offset, $limit );
-}