* Fixed a typo that caused warnings
[lhc/web/wiklou.git] / includes / SpecialSpecialpages.php
index 91e6163..265af2f 100644 (file)
@@ -1,43 +1,73 @@
 <?php
+/**
+ *
+ * @package MediaWiki
+ * @subpackage SpecialPage
+ */
 
-function wfSpecialSpecialpages()
-{
-       global $wgLang, $wgOut, $wgUser;
+/**
+ *
+ */
+function wfSpecialSpecialpages() {
+       global $wgLang, $wgOut, $wgUser, $wgAvailableRights;
        
-       # sub function generating the list of pages
-       #   $SP      : the list of pages
-       #   $heading : header to be used
-       #   $sk      : skin object ???
+       $wgOut->setRobotpolicy( 'index,nofollow' );
+       $sk = $wgUser->getSkin();       
        
-       function wfSpecialSpecialpages_gen($SP,$heading,$sk)
-       {
-               global $wgLang, $wgOut;
+       # Get listable pages, in a 2-d array with the first dimension being user right
+       $pages = SpecialPage::getPages();
+
+       /** Pages available to all */
+       wfSpecialSpecialpages_gen($pages[''],'spheading',$sk);
 
-               $wgOut->addHTML( "<h2>" . wfMsg( $heading ) . "</h2>\n<ul>" );
-               foreach ( $SP as $name => $desc ) {
-                       if ( "" == $desc ) { continue; }
-                       $link = $sk->makeKnownLink( $wgLang->specialPage( $name ), $desc );
-                       $wgOut->addHTML( "<li>{$link}</li>\n" );
+       /** Restricted special pages */
+       $rpages = array();
+       foreach($wgAvailableRights as $right) {
+               /** only show pages a user can access */
+               if( $wgUser->isAllowed($right) ) {
+                       /** some rights might not have any special page associated */
+                       if(isset($pages[$right])) {
+                               $rpages = array_merge( $rpages, $pages[$right] );
+                       }
                }
-               $wgOut->addHTML( "</ul>\n" );
        }
+       wfSpecialSpecialpages_gen( $rpages, 'restrictedpheading', $sk );
+}
 
-       $wgOut->setRobotpolicy( "index,nofollow" );
-       $sk = $wgUser->getSkin();       
-
-       # all users special pages
-       wfSpecialSpecialpages_gen($wgLang->getValidSpecialPages(),"spheading",$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 $wgLang, $wgOut, $wgSortSpecialPages;
 
-       # sysops only special pages
-       if ( $wgUser->isSysop() ) {
-               wfSpecialSpecialpages_gen($wgLang->getSysopSpecialPages(),"sysopspheading",$sk);
+       if( count( $pages ) == 0 ) {
+               # Yeah, that was pointless. Thanks for coming.
+               return;
+       }
+       
+       /** Put them into a sortable array */
+       $sortedPages = array();
+       foreach ( $pages as $name => $page ) {
+               if ( $page->isListed() ) {
+                       $sortedPages[$page->getDescription()] = $page->getTitle();
+               }
+       }
+       
+       /** Sort */
+       if ( $wgSortSpecialPages ) {
+               ksort( $sortedPages );
        }
 
-       # developers only special pages
-       if ( $wgUser->isDeveloper() ) {
-               wfSpecialSpecialpages_gen($wgLang->getDeveloperSpecialPages(),"developerspheading",$sk);
-
+       /** Now output the HTML */
+       $wgOut->addHTML( '<h2>' . wfMsg( $heading ) . "</h2>\n<ul>" );
+       foreach ( $sortedPages as $desc => $title ) {
+               $link = $sk->makeKnownLinkObj( $title, $desc );
+               $wgOut->addHTML( "<li>{$link}</li>\n" );
        }
+       $wgOut->addHTML( "</ul>\n" );
 }
 
 ?>