3 * Implements Special:Specialpages
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * A special page that lists special pages
27 * @ingroup SpecialPage
29 class SpecialSpecialpages
extends UnlistedSpecialPage
{
31 function __construct() {
32 parent
::__construct( 'Specialpages' );
35 function execute( $par ) {
36 $out = $this->getOutput();
38 $this->outputHeader();
39 $out->allowClickjacking();
40 $out->addModuleStyles( 'mediawiki.special' );
42 $groups = $this->getPageGroups();
44 if ( $groups === false ) {
48 $this->outputPageList( $groups );
51 private function getPageGroups() {
52 global $wgSortSpecialPages;
54 $pages = SpecialPageFactory
::getUsablePages( $this->getUser() );
56 if ( !count( $pages ) ) {
57 # Yeah, that was pointless. Thanks for coming.
61 /** Put them into a sortable array */
63 /** @var SpecialPage $page */
64 foreach ( $pages as $page ) {
65 if ( $page->isListed() ) {
66 $group = $page->getFinalGroupName();
67 if ( !isset( $groups[$group] ) ) {
68 $groups[$group] = array();
70 $groups[$group][$page->getDescription()] = array(
72 $page->isRestricted(),
79 if ( $wgSortSpecialPages ) {
80 foreach ( $groups as $group => $sortedPages ) {
81 ksort( $groups[$group] );
85 /** Always move "other" to end */
86 if ( array_key_exists( 'other', $groups ) ) {
87 $other = $groups['other'];
88 unset( $groups['other'] );
89 $groups['other'] = $other;
95 private function outputPageList( $groups ) {
96 $out = $this->getOutput();
98 $includesRestrictedPages = false;
99 $includesCachedPages = false;
101 foreach ( $groups as $group => $sortedPages ) {
102 $total = count( $sortedPages );
103 $middle = ceil( $total / 2 );
106 $out->wrapWikiMsg( "<h2 class=\"mw-specialpagesgroup\" id=\"mw-specialpagesgroup-$group\">$1</h2>\n", "specialpages-group-$group" );
108 Html
::openElement( 'table', array( 'style' => 'width:100%;', 'class' => 'mw-specialpages-table' ) ) . "\n" .
109 Html
::openElement( 'tr' ) . "\n" .
110 Html
::openElement( 'td', array( 'style' => 'width:30%;vertical-align:top' ) ) . "\n" .
111 Html
::openElement( 'ul' ) . "\n"
113 foreach ( $sortedPages as $desc => $specialpage ) {
114 list( $title, $restricted, $cached ) = $specialpage;
116 $pageClasses = array();
118 $includesCachedPages = true;
119 $pageClasses[] = 'mw-specialpagecached';
122 $includesRestrictedPages = true;
123 $pageClasses[] = 'mw-specialpagerestricted';
126 $link = Linker
::linkKnown( $title, htmlspecialchars( $desc ) );
127 $out->addHTML( Html
::rawElement( 'li', array( 'class' => implode( ' ', $pageClasses ) ), $link ) . "\n" );
129 # Split up the larger groups
131 if ( $total > 3 && $count == $middle ) {
133 Html
::closeElement( 'ul' ) . Html
::closeElement( 'td' ) .
134 Html
::element( 'td', array( 'style' => 'width:10%' ), '' ) .
135 Html
::openElement( 'td', array( 'style' => 'width:30%' ) ) . Html
::openElement( 'ul' ) . "\n"
140 Html
::closeElement( 'ul' ) . Html
::closeElement( 'td' ) .
141 Html
::element( 'td', array( 'style' => 'width:30%' ), '' ) .
142 Html
::closeElement( 'tr' ) . Html
::closeElement( 'table' ) . "\n"
146 if ( $includesRestrictedPages ||
$includesCachedPages ) {
147 $out->wrapWikiMsg( "<div class=\"mw-specialpages-notes\">\n$1\n</div>", 'specialpages-note' );