new feature: $wgBlockAllowsUTEdit
[lhc/web/wiklou.git] / includes / SpecialUnusedimages.php
index a594be0..c4d7d2a 100644 (file)
@@ -1,52 +1,81 @@
-<?
+<?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
-function wfSpecialUnusedimages()
-{
-       global $wgUser, $wgOut, $wgLang, $wgTitle;
-       global $limit, $offset; # From query string
-       $fname = "wfSpecialUnusedimages";
+/** */
+require_once("QueryPage.php");
 
-       list( $limit, $offset ) = wfCheckLimits();
-
-       $sql = "SELECT img_name,img_user,img_user_text,img_timestamp,img_description " .
-         "FROM image LEFT JOIN imagelinks ON img_name=il_to WHERE il_to IS NULL " .
-         "ORDER BY img_timestamp LIMIT {$offset}, {$limit}";
-       $res = wfQuery( $sql, DB_READ, $fname );
-
-       $sk = $wgUser->getSkin();
-
-       $wgOut->addHTML( wfMsg( "unusedimagestext" ) );
-       $top = wfShowingResults( $offset, $limit );
-       $wgOut->addHTML( "<p>{$top}\n" );
+/**
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
+class UnusedimagesPage extends QueryPage {
 
-       $sl = wfViewPrevNext( $offset, $limit,
-         $wgLang->specialPage( "Unusedimages" ) );
-       $wgOut->addHTML( "<br>{$sl}\n" );
-
-       $ins = $wgLang->getNsText ( 6 ) ;
-       $s = "<ol start=" . ( $offset + 1 ) . ">";
-       while ( $obj = wfFetchObject( $res ) ) {
-               $name = $obj->img_name;
-               $dlink = $sk->makeKnownLink( "{$ins}:{$name}", wfMsg( "imgdesc" ) );
-               $ilink = "<a href=\"" . wfImageUrl( $name ) . "\">{$name}</a>";
+       function getName() {
+               return 'Unusedimages';
+       }
+       
+       function sortDescending() {
+               return false;
+       }
+       function isSyndicated() { return false; }
 
-               $d = $wgLang->timeanddate( $obj->img_timestamp, true );
-               $u = $obj->img_user;
-               $ut = $obj->img_user_text;
-               $c = $obj->img_description;
+       function getSQL() {
+               global $wgCountCategorizedImagesAsUsed;
+               $dbr =& wfGetDB( DB_SLAVE );
+               
+               if ( $wgCountCategorizedImagesAsUsed ) {
+                       extract( $dbr->tableNames( 'page', 'image', 'imagelinks', 'categorylinks' ) );
+               
+                       return 'SELECT img_name as title, img_user, img_user_text, img_timestamp as value, img_description
+                                       FROM ((('.$page.' AS I LEFT JOIN '.$categorylinks.' AS L ON I.page_id = L.cl_from) 
+                                               LEFT JOIN '.$imagelinks.' AS P ON I.page_title = P.il_to)
+                                               INNER JOIN '.$image.' AS G ON I.page_title = G.img_name)
+                                       WHERE I.page_namespace = '.NS_IMAGE.' AND L.cl_from IS NULL AND P.il_to IS NULL';
+               } else {
+                       extract( $dbr->tableNames( 'image','imagelinks' ) );
+               
+                       return 'SELECT img_name as title, img_user, img_user_text, img_timestamp as value, img_description' .
+                       ' FROM '.$image.' LEFT JOIN '.$imagelinks.' ON img_name=il_to WHERE il_to IS NULL ';
+               }
+       }
+       
+       function formatResult( $skin, $result ) {
+               global $wgLang, $wgContLang;
+               $title = Title::makeTitle( NS_IMAGE, $result->title );
+               
+               $imageUrl = htmlspecialchars( Image::imageUrl( $result->title ) );
+               $return =
+               # The 'desc' linking to the image page
+               '('.$skin->makeKnownLinkObj( $title, wfMsg('imgdesc') ).') '
+               # Link to the image itself
+               . '<a href="' . $imageUrl . '">' . htmlspecialchars( $title->getText() ) . '</a>'
+               # Last modified date
+               . ' . . '.$wgLang->timeanddate($result->value)
+               # Link to username
+               . ' . . '.$skin->makeLinkObj( Title::makeTitle( NS_USER, $result->img_user_text ), $result->img_user_text)
+               # If there is a description, show it
+               . $skin->commentBlock( $wgContLang->convert( $result->img_description ) );
+               
+               return $return;
+       }
+       
+       function getPageHeader() {
+               return wfMsg( "unusedimagestext" );
+       }
 
-               if ( 0 == $u ) { $ul = $ut; }
-               else { $ul = $sk->makeLink( $wgLang->getNsText(2).":{$ut}", $ut ); }
+}
 
-               $s .= "<li>({$dlink}) {$ilink} . . {$d} . . {$ul}";
+/**
+ * Entry point
+ */
+function wfSpecialUnusedimages() {
+       list( $limit, $offset ) = wfCheckLimits();
+       $uip = new UnusedimagesPage();
 
-               if ( "" != $c && "*" != $c ) { $s .= " <em>({$c})</em>"; }
-               $s .= "</li>\n";
-       }
-       wfFreeResult( $res );
-       $s .= "</ol>";
-       $wgOut->addHTML( $s );
-       $wgOut->addHTML( "<p>{$sl}\n" );
+       return $uip->doQuery( $offset, $limit );
 }
-
 ?>