getOutput();
$this->setHeaders();
$this->outputHeader();
$out->allowClickjacking();
$out->addModuleStyles( 'mediawiki.special' );
$groups = $this->getPageGroups();
if ( $groups === false ) {
return;
}
$this->outputPageList( $groups );
}
private function getPageGroups() {
global $wgSortSpecialPages;
$pages = SpecialPageFactory::getUsablePages();
if( !count( $pages ) ) {
# Yeah, that was pointless. Thanks for coming.
return false;
}
/** Put them into a sortable array */
$groups = array();
foreach ( $pages as $page ) {
if ( $page->isListed() ) {
$group = SpecialPageFactory::getGroup( $page );
if( !isset( $groups[$group] ) ) {
$groups[$group] = array();
}
$groups[$group][$page->getDescription()] = array( $page->getTitle(), $page->isRestricted(), $page->isExpensive() );
}
}
/** Sort */
if ( $wgSortSpecialPages ) {
foreach( $groups as $group => $sortedPages ) {
ksort( $groups[$group] );
}
}
/** Always move "other" to end */
if( array_key_exists( 'other', $groups ) ) {
$other = $groups['other'];
unset( $groups['other'] );
$groups['other'] = $other;
}
return $groups;
}
private function outputPageList( $groups ) {
global $wgMiserMode;
$out = $this->getOutput();
$includesRestrictedPages = false;
$includesCachedPages = false;
foreach ( $groups as $group => $sortedPages ) {
$middle = ceil( count( $sortedPages )/2 );
$total = count( $sortedPages );
$count = 0;
$out->wrapWikiMsg( "
$1
\n", "specialpages-group-$group" );
$out->addHTML(
Html::openElement( 'table', array( 'style' => 'width:100%;', 'class' => 'mw-specialpages-table' ) ) ."\n" .
Html::openElement( 'tr' ) . "\n" .
Html::openElement( 'td', array( 'style' => 'width:30%;vertical-align:top' ) ) . "\n" .
Html::openElement( 'ul' ) . "\n"
);
foreach( $sortedPages as $desc => $specialpage ) {
list( $title, $restricted, $expensive) = $specialpage;
$pageClasses = array();
if ( $expensive && $wgMiserMode ){
$includesCachedPages = true;
$pageClasses[] = 'mw-specialpagecached';
}
if( $restricted ) {
$includesRestrictedPages = true;
$pageClasses[] = 'mw-specialpagerestricted';
}
$link = Linker::linkKnown( $title , htmlspecialchars( $desc ) );
$out->addHTML( Html::rawElement( 'li', array( 'class' => implode( ' ', $pageClasses ) ), $link ) . "\n" );
# Split up the larger groups
$count++;
if( $total > 3 && $count == $middle ) {
$out->addHTML(
Html::closeElement( 'ul' ) . Html::closeElement( 'td' ) .
Html::element( 'td', array( 'style' => 'width:10%' ), '' ) .
Html::openElement( 'td', array( 'style' => 'width:30%' ) ) . Html::openElement( 'ul' ) . "\n"
);
}
}
$out->addHTML(
Html::closeElement( 'ul' ) . Html::closeElement( 'td' ) .
Html::element( 'td', array( 'style' => 'width:30%' ), '' ) .
Html::closeElement( 'tr' ) . Html::closeElement( 'table' ) . "\n"
);
}
if ( $includesRestrictedPages || $includesCachedPages ) {
$out->wrapWikiMsg( "\n$1\n
", 'specialpages-note' );
}
}
}