MediaWiki REL1_31
purgePage.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
31class PurgePage extends Maintenance {
32 public function __construct() {
33 parent::__construct();
34 $this->addDescription( 'Purge page.' );
35 $this->addOption( 'skip-exists-check', 'Skip page existence check', false, false );
36 }
37
38 public function execute() {
39 $stdin = $this->getStdin();
40
41 while ( !feof( $stdin ) ) {
42 $title = trim( fgets( $stdin ) );
43 if ( $title != '' ) {
44 $this->purge( $title );
45 }
46 }
47 }
48
49 private function purge( $title ) {
50 $title = Title::newFromText( $title );
51
52 if ( is_null( $title ) ) {
53 $this->error( 'Invalid page title' );
54 return;
55 }
56
57 $page = WikiPage::factory( $title );
58
59 if ( is_null( $page ) ) {
60 $this->error( "Could not instantiate page object" );
61 return;
62 }
63
64 if ( !$this->getOption( 'skip-exists-check' ) && !$page->exists() ) {
65 $this->error( "Page doesn't exist" );
66 return;
67 }
68
69 if ( $page->doPurge() ) {
70 $this->output( "Purged\n" );
71 } else {
72 $this->error( "Purge failed" );
73 }
74 }
75}
76
77$maintClass = PurgePage::class;
78require_once RUN_MAINTENANCE_IF_MAIN;
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getStdin( $len=null)
Return input from stdin.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script that purges a list of pages passed through stdin.
Definition purgePage.php:31
purge( $title)
Definition purgePage.php:49
__construct()
Default constructor.
Definition purgePage.php:32
execute()
Do the actual work.
Definition purgePage.php:38
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2612
require_once RUN_MAINTENANCE_IF_MAIN
$maintClass
Definition purgePage.php:77