Cleanup
[lhc/web/wiklou.git] / includes / SpecialSpecialpages.php
index e60910f..4ea956b 100644 (file)
@@ -1,48 +1,61 @@
 <?php
+/**
+ *
+ * @addtogroup SpecialPage
+ */
 
-function wfSpecialSpecialpages()
-{
-       global $wgLang, $wgOut, $wgUser;
-       
-       $wgOut->setRobotpolicy( "index,nofollow" );
-       $sk = $wgUser->getSkin();       
-       
-       # Get listable pages
-       $pages = SpecialPage::getPages();
-
-       # all users special pages
-       wfSpecialSpecialpages_gen($pages[""],"spheading",$sk);
-
-       # sysops only special pages
-       if ( $wgUser->isSysop() ) {
-               wfSpecialSpecialpages_gen($pages["sysop"],"sysopspheading",$sk);
-       }
+/**
+ *
+ */
+function wfSpecialSpecialpages() {
+       global $wgOut, $wgUser, $wgMessageCache;
 
-       # developers only special pages
-       if ( $wgUser->isDeveloper() ) {
-               wfSpecialSpecialpages_gen($pages["developer"],"developerspheading",$sk);
+       $wgMessageCache->loadAllMessages();
 
-       }
-}
+       $wgOut->setRobotpolicy( 'noindex,nofollow' );  # Is this really needed?
+       $sk = $wgUser->getSkin();
 
-# sub function generating the list of pages
-#   $pages   : the list of pages
-#   $heading : header to be used
-#   $sk      : skin object ???
+       /** Pages available to all */
+       wfSpecialSpecialpages_gen( SpecialPage::getRegularPages(), 'spheading', $sk );
 
-function wfSpecialSpecialpages_gen($pages,$heading,$sk)
-{
-       global $wgLang, $wgOut, $wgAllowSysopQueries;
+       /** Restricted special pages */
+       wfSpecialSpecialpages_gen( SpecialPage::getRestrictedPages(), 'restrictedpheading', $sk );
+}
+
+/**
+ * sub function generating the list of pages
+ * @param $pages the list of pages
+ * @param $heading header to be used
+ * @param $sk skin object ???
+ */
+function wfSpecialSpecialpages_gen($pages,$heading,$sk) {
+       global $wgOut, $wgSortSpecialPages;
+
+       if( count( $pages ) == 0 ) {
+               # Yeah, that was pointless. Thanks for coming.
+               return;
+       }
 
-       $wgOut->addHTML( "<h2>" . wfMsg( $heading ) . "</h2>\n<ul>" );
-       foreach ( $pages as $name => $page ) {
-               if( !$page->isListed() ) {
-                       continue;
+       /** Put them into a sortable array */
+       $sortedPages = array();
+       foreach ( $pages as $page ) {
+               if ( $page->isListed() ) {
+                       $sortedPages[$page->getDescription()] = $page->getTitle();
                }
-               $link = $sk->makeKnownLinkObj( $page->getTitle(), $page->getDescription() );
+       }
+
+       /** Sort */
+       if ( $wgSortSpecialPages ) {
+               ksort( $sortedPages );
+       }
+
+       /** Now output the HTML */
+       $wgOut->addHTML( '<h2>' . wfMsgHtml( $heading ) . "</h2>\n<ul>" );
+       foreach ( $sortedPages as $desc => $title ) {
+               $link = $sk->makeKnownLinkObj( $title , htmlspecialchars( $desc ) );
                $wgOut->addHTML( "<li>{$link}</li>\n" );
        }
        $wgOut->addHTML( "</ul>\n" );
 }
 
-?>
+