ApiParse: don't reparse language link titles
[mediawiki.git] / maintenance / pageExists.php
blobc495c0461b65a3c86dda3adf73940bd29d58d774
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
19 * @ingroup Maintenance
22 // @codeCoverageIgnoreStart
23 require_once __DIR__ . '/Maintenance.php';
24 // @codeCoverageIgnoreEnd
26 use MediaWiki\Title\Title;
28 /**
29 * @ingroup Maintenance
31 class PageExists extends Maintenance {
32 public function __construct() {
33 parent::__construct();
34 $this->addDescription( 'Report whether a specific page exists' );
35 $this->addArg( 'title', 'Page title to check whether it exists' );
38 public function execute() {
39 $titleArg = $this->getArg( 0 );
40 $title = Title::newFromText( $titleArg );
41 $pageExists = $title && $title->exists();
43 if ( $pageExists ) {
44 $text = "{$title} exists.\n";
45 } else {
46 $text = "{$titleArg} doesn't exist.\n";
48 $this->output( $text );
49 return $pageExists;
53 // @codeCoverageIgnoreStart
54 $maintClass = PageExists::class;
55 require_once RUN_MAINTENANCE_IF_MAIN;
56 // @codeCoverageIgnoreEnd