3 * Implements Special:Lonelypaages
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 looking for articles with no article linking to them,
28 * @ingroup SpecialPage
30 class LonelyPagesPage
extends PageQueryPage
{
31 function __construct( $name = 'Lonelypages' ) {
32 parent
::__construct( $name );
35 function getPageHeader() {
36 return $this->msg( 'lonelypagestext' )->parseAsBlock();
39 function sortDescending() {
43 function isExpensive() {
47 function isSyndicated() {
51 function getQueryInfo() {
52 $tables = array( 'page', 'pagelinks', 'templatelinks' );
54 'pl_namespace IS NULL',
55 'page_namespace' => MWNamespace
::getContentNamespaces(),
56 'page_is_redirect' => 0,
57 'tl_namespace IS NULL'
62 'pl_namespace = page_namespace',
63 'pl_title = page_title'
66 'templatelinks' => array(
68 'tl_namespace = page_namespace',
69 'tl_title = page_title'
74 // Allow extensions to modify the query
75 Hooks
::run( 'LonelyPagesQuery', array( &$tables, &$conds, &$joinConds ) );
80 'namespace' => 'page_namespace',
81 'title' => 'page_title',
82 'value' => 'page_title'
85 'join_conds' => $joinConds
89 function getOrderFields() {
90 // For some crazy reason ordering by a constant
91 // causes a filesort in MySQL 5
92 if ( count( MWNamespace
::getContentNamespaces() ) > 1 ) {
93 return array( 'page_namespace', 'page_title' );
95 return array( 'page_title' );
99 protected function getGroupName() {
100 return 'maintenance';