blob: 099ea88d67900ac5a143008762f00a7e73c47ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
/**
* Undelete a page by fetching it from the archive table
*
* @file
* @ingroup Maintenance
*/
require_once( dirname(__FILE__) . '/Maintenance.php' );
class Undelete extends Maintenance {
public function __construct() {
parent::__construct();
$this->mDescription = "Undelete a page";
$this->addOption( 'u', 'The user to perform the undeletion', false, true );
$this->addOption( 'r', 'The reason to undelete', false, true );
$this->addArg( 'pagename', 'Page to undelete' );
}
public function execute() {
global $wgUser;
$user = $this->getOption( 'u', 'Command line script' );
$reason = $this->getOption( 'r', '' );
$pageName = $this->getArg();
$title = Title::newFromText( $pageName );
if ( !$title ) {
$this->error( "Invalid title", true );
}
$wgUser = User::newFromName( $user );
$archive = new PageArchive( $title );
$this->output( "Undeleting " . $title->getPrefixedDBkey() . '...' );
$archive->undelete( array(), $reason );
$this->output( "done\n" );
}
}
$maintClass = "Undelete";
require_once( DO_MAINTENANCE );
|