Two new hooks to EditPage.php, EditPage::AfterEdit:Form and EditPage:BeforeDisplaying...
[lhc/web/wiklou.git] / includes / SpecialLongpages.php
index 6139fdb..be16a02 100644 (file)
@@ -1,42 +1,31 @@
 <?php
+/**
+ * @file
+ * @ingroup SpecialPage
+ */
 
-require_once( "QueryPage.php" );
-
-class LongPagesPage extends QueryPage {
+/**
+ *
+ * @ingroup SpecialPage
+ */
+class LongPagesPage extends ShortPagesPage {
 
        function getName() {
                return "Longpages";
        }
 
-       function isExpensive() {
+       function sortDescending() {
                return true;
        }
-
-       function getSQL() {
-               return
-                       "SELECT 'Longpages' as type,
-                                       cur_namespace as namespace,
-                               cur_title as title,
-                               LENGTH(cur_text) AS value
-                       FROM cur
-                       WHERE cur_namespace=0 AND cur_is_redirect=0";
-       }
-
-       function formatResult( $skin, $result ) {
-               global $wgLang;
-               $nb = wfMsg( "nbytes", $wgLang->formatNum( $result->value ) );
-               $link = $skin->makeKnownLink( $result->title, "" );
-               return "{$link} ({$nb})";
-       }
 }
 
-function wfSpecialLongpages()
-{
-    list( $limit, $offset ) = wfCheckLimits();
+/**
+ * constructor
+ */
+function wfSpecialLongpages() {
+       list( $limit, $offset ) = wfCheckLimits();
 
-    $lpp = new LongPagesPage( );
-    
-    $lpp->doQuery( $offset, $limit );
-}
+       $lpp = new LongPagesPage();
 
-?>
+       $lpp->doQuery( $offset, $limit );
+}