jquery.tablesorter: Improve detection and handling of isoDate
[mediawiki.git] / maintenance / deleteArchivedRevisions.php
blob9924eb0cd569f5c53eaf3e70c141e476c9ff99e9
1 <?php
2 /**
3 * Delete archived (deleted from public) revisions from the database
5 * Shamelessly stolen from deleteOldRevisions.php by Rob Church :)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
22 * @file
23 * @ingroup Maintenance
24 * @author Aaron Schulz
27 require_once __DIR__ . '/Maintenance.php';
29 /**
30 * Maintenance script to delete archived (deleted from public) revisions
31 * from the database.
33 * @ingroup Maintenance
35 class DeleteArchivedRevisions extends Maintenance {
36 public function __construct() {
37 parent::__construct();
38 $this->mDescription =
39 "Deletes all archived revisions\nThese revisions will no longer be restorable";
40 $this->addOption( 'delete', 'Performs the deletion' );
43 public function execute() {
44 $dbw = $this->getDB( DB_MASTER );
46 if ( !$this->hasOption( 'delete' ) ) {
47 $count = $dbw->selectField( 'archive', 'COUNT(*)', '', __METHOD__ );
48 $this->output( "Found $count revisions to delete.\n" );
49 $this->output( "Please run the script again with the --delete option "
50 . "to really delete the revisions.\n" );
51 return;
54 $this->output( "Deleting archived revisions... " );
55 $dbw->delete( 'archive', '*', __METHOD__ );
56 $count = $dbw->affectedRows();
57 $this->output( "done. $count revisions deleted.\n" );
59 if ( $count ) {
60 $this->purgeRedundantText( true );
65 $maintClass = "DeleteArchivedRevisions";
66 require_once RUN_MAINTENANCE_IF_MAIN;