3 * Implements Special:Unwatchedpages
5 * Copyright © 2005 Ævar Arnfjörð Bjarmason
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup SpecialPage
24 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
28 * A special page that displays a list of pages that are not on anyones watchlist.
30 * @ingroup SpecialPage
32 class UnwatchedpagesPage
extends QueryPage
{
34 function __construct( $name = 'Unwatchedpages' ) {
35 parent
::__construct( $name, 'unwatchedpages' );
38 function isExpensive() {
42 function isSyndicated() {
46 function getQueryInfo() {
48 'tables' => array( 'page', 'watchlist' ),
49 'fields' => array( 'namespace' => 'page_namespace',
50 'title' => 'page_title',
51 'value' => 'page_namespace' ),
52 'conds' => array( 'wl_title IS NULL',
53 'page_is_redirect' => 0,
54 "page_namespace != '" . NS_MEDIAWIKI
.
56 'join_conds' => array( 'watchlist' => array(
57 'LEFT JOIN', array( 'wl_title = page_title',
58 'wl_namespace = page_namespace' ) ) )
62 function sortDescending() {
66 function getOrderFields() {
67 return array( 'page_namespace', 'page_title' );
72 * @param object $result Result row
75 function formatResult( $skin, $result ) {
78 $nt = Title
::makeTitleSafe( $result->namespace, $result->title
);
80 return Html
::element( 'span', array( 'class' => 'mw-invalidtitle' ),
81 Linker
::getInvalidTitleDescription( $this->getContext(), $result->namespace, $result->title
) );
84 $text = $wgContLang->convert( $nt->getPrefixedText() );
86 $plink = Linker
::linkKnown( $nt, htmlspecialchars( $text ) );
87 $token = WatchAction
::getWatchToken( $nt, $this->getUser() );
88 $wlink = Linker
::linkKnown(
90 $this->msg( 'watch' )->escaped(),
92 array( 'action' => 'watch', 'token' => $token )
95 return $this->getLanguage()->specialList( $plink, $wlink );
98 protected function getGroupName() {