MediaWiki REL1_30
undelete.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
26class Undelete extends Maintenance {
27 public function __construct() {
28 parent::__construct();
29 $this->addDescription( 'Undelete a page' );
30 $this->addOption( 'user', 'The user to perform the undeletion', false, true, 'u' );
31 $this->addOption( 'reason', 'The reason to undelete', false, true, 'r' );
32 $this->addArg( 'pagename', 'Page to undelete' );
33 }
34
35 public function execute() {
36 global $wgUser;
37
38 $user = $this->getOption( 'user', false );
39 $reason = $this->getOption( 'reason', '' );
40 $pageName = $this->getArg();
41
42 $title = Title::newFromText( $pageName );
43 if ( !$title ) {
44 $this->error( "Invalid title", true );
45 }
46 if ( $user === false ) {
47 $wgUser = User::newSystemUser( 'Command line script', [ 'steal' => true ] );
48 } else {
49 $wgUser = User::newFromName( $user );
50 }
51 if ( !$wgUser ) {
52 $this->error( "Invalid username", true );
53 }
54 $archive = new PageArchive( $title, RequestContext::getMain()->getConfig() );
55 $this->output( "Undeleting " . $title->getPrefixedDBkey() . '...' );
56 $archive->undelete( [], $reason );
57 $this->output( "done\n" );
58 }
59}
60
61$maintClass = "Undelete";
62require_once RUN_MAINTENANCE_IF_MAIN;
$wgUser
Definition Setup.php:817
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
addArg( $arg, $description, $required=true)
Add some args that are needed.
getArg( $argId=0, $default=null)
Get an argument.
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.
Used to show archived pages and eventually restore them.
static getMain()
Static methods.
__construct()
Default constructor.
Definition undelete.php:27
execute()
Do the actual work.
Definition undelete.php:35
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:2581
require_once RUN_MAINTENANCE_IF_MAIN
$maintClass
Definition undelete.php:61