3 * Implements Special:Wantedpages
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 most linked pages that does not exist
27 * @ingroup SpecialPage
29 class WantedPagesPage
extends WantedQueryPage
{
31 function __construct( $name = 'Wantedpages' ) {
32 parent
::__construct( $name );
35 function isIncludable() {
39 function execute( $par ) {
40 $inc = $this->including();
43 $this->limit
= (int)$par;
46 $this->setListoutput( $inc );
47 $this->shownavigation
= !$inc;
48 parent
::execute( $par );
51 function getQueryInfo() {
52 $count = $this->getConfig()->get( 'WantedPagesThreshold' ) - 1;
60 'namespace' => 'pl_namespace',
61 'title' => 'pl_title',
65 'pg1.page_namespace IS NULL',
66 "pl_namespace NOT IN ( '" . NS_USER
. "', '" . NS_USER_TALK
. "' )",
67 "pg2.page_namespace != '" . NS_MEDIAWIKI
. "'"
72 "COUNT(*) > SUM(pg2.page_is_redirect)"
74 'GROUP BY' => [ 'pl_namespace', 'pl_title' ]
79 'pg1.page_namespace = pl_namespace',
80 'pg1.page_title = pl_title'
83 'pg2' => [ 'LEFT JOIN', 'pg2.page_id = pl_from' ]
86 // Replacement for the WantedPages::getSQL hook
87 Hooks
::run( 'WantedPages::getQueryInfo', [ &$this, &$query ] );
92 protected function getGroupName() {