MediaWiki REL1_34
deleteArchivedRevisions.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription(
38 "Deletes all archived revisions\nThese revisions will no longer be restorable" );
39 $this->addOption( 'delete', 'Performs the deletion' );
40 }
41
42 public function execute() {
43 $dbw = $this->getDB( DB_MASTER );
44
45 if ( !$this->hasOption( 'delete' ) ) {
46 $count = $dbw->selectField( 'archive', 'COUNT(*)', '', __METHOD__ );
47 $this->output( "Found $count revisions to delete.\n" );
48 $this->output( "Please run the script again with the --delete option "
49 . "to really delete the revisions.\n" );
50 return;
51 }
52
53 $this->output( "Deleting archived revisions... " );
54 $dbw->delete( 'archive', '*', __METHOD__ );
55 $count = $dbw->affectedRows();
56 $this->output( "done. $count revisions deleted.\n" );
57
58 if ( $count ) {
59 $this->purgeRedundantText( true );
60 }
61 }
62}
63
64$maintClass = DeleteArchivedRevisions::class;
65require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
const RUN_MAINTENANCE_IF_MAIN
Maintenance script to delete archived (deleted from public) revisions from the database.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option exists.
purgeRedundantText( $delete=true)
Support function for cleaning up redundant text records.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
const DB_MASTER
Definition defines.php:26