wiki.techinc.nl/maintenance/deleteArchivedFiles.php

53 lines
1.7 KiB
PHP
Raw Normal View History

2007-05-12 17:56:09 +00:00
<?php
/**
* Delete archived (non-current) files from the database
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @ingroup Maintenance
2007-05-12 17:56:09 +00:00
* @author Aaron Schulz
* Based on deleteOldRevisions.php by Rob Church
*/
2010-05-22 16:50:39 +00:00
require_once( dirname( __FILE__ ) . '/Maintenance.php' );
require_once( dirname( __FILE__ ) . '/deleteArchivedFiles.inc' );
2007-05-12 17:56:09 +00:00
class DeleteArchivedFiles extends Maintenance {
public function __construct() {
parent::__construct();
$this->mDescription = "Deletes all archived images.";
$this->addOption( 'delete', 'Perform the deletion' );
$this->addOption( 'force', 'Force deletion of rows from filearchive' );
}
2007-05-12 17:56:09 +00:00
2010-05-22 16:50:39 +00:00
public function handleOutput( $str ) {
return $this->output( $str );
}
public function execute() {
2010-05-22 16:50:39 +00:00
if ( !$this->hasOption( 'delete' ) ) {
$this->output( "Use --delete to actually confirm this script\n" );
return;
}
2010-02-22 01:12:50 +00:00
$force = $this->hasOption( 'force' );
2010-05-22 16:50:39 +00:00
DeleteArchivedFilesImplementation::doDelete( $this, $force );
}
2007-05-12 17:56:09 +00:00
}
$maintClass = "DeleteArchivedFiles";
require_once( RUN_MAINTENANCE_IF_MAIN );