setRobotpolicy( 'index,nofollow' ); $sk = $wgUser->getSkin(); # Get listable pages $pages = SpecialPage::getPages(); /** pages available to all */ wfSpecialSpecialpages_gen($pages[''],'spheading',$sk); /** show pages splitted by user rights */ 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])) { wfSpecialSpecialpages_gen($pages[$right], $right.'pheading', $sk); } } } /** FIXME : spheading, sysopspheading, developerspheading need to be removed from language files [av] */ /** # all users special pages wfSpecialSpecialpages_gen($pages[''],'spheading',$sk); # sysops only special pages if ( $wgUser->isSysop() ) { wfSpecialSpecialpages_gen($pages['sysop'],'sysopspheading',$sk); } # developers only special pages if ( $wgUser->isDeveloper() ) { wfSpecialSpecialpages_gen($pages['developer'],'developerspheading',$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, $wgAllowSysopQueries; $wgOut->addHTML( '

' . wfMsg( $heading ) . "

\n\n" ); } ?>