3 * Implements Special:Unusedcategories
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 * @ingroup SpecialPage
27 class UnusedCategoriesPage
extends QueryPage
{
28 function __construct( $name = 'Unusedcategories' ) {
29 parent
::__construct( $name );
32 public function isExpensive() {
36 function getPageHeader() {
37 return $this->msg( 'unusedcategoriestext' )->parseAsBlock();
40 public function getQueryInfo() {
42 'tables' => [ 'page', 'categorylinks' ],
44 'namespace' => 'page_namespace',
45 'title' => 'page_title',
46 'value' => 'page_title'
50 'page_namespace' => NS_CATEGORY
,
51 'page_is_redirect' => 0
53 'join_conds' => [ 'categorylinks' => [ 'LEFT JOIN', 'cl_to = page_title' ] ]
58 * A should come before Z (bug 30907)
61 function sortDescending() {
67 * @param object $result Result row
70 function formatResult( $skin, $result ) {
71 $title = Title
::makeTitle( NS_CATEGORY
, $result->title
);
73 return Linker
::link( $title, htmlspecialchars( $title->getText() ) );
76 protected function getGroupName() {