diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2006-10-11 18:12:39 +0000 |
commit | 183851b06bd6c52f3cae5375f433da720d410447 (patch) | |
tree | a477257decbf3360127f6739c2f9d0ec57a03d39 /maintenance/purgeOldText.php |
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'maintenance/purgeOldText.php')
-rw-r--r-- | maintenance/purgeOldText.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/maintenance/purgeOldText.php b/maintenance/purgeOldText.php new file mode 100644 index 00000000..e8a738ad --- /dev/null +++ b/maintenance/purgeOldText.php @@ -0,0 +1,30 @@ +<?php + +/** + * Purge old text records from the database + * + * @package MediaWiki + * @subpackage Maintenance + * @author Rob Church <robchur@gmail.com> + */ + +$options = array( 'purge', 'help' ); +require_once( 'commandLine.inc' ); +require_once( 'purgeOldText.inc' ); + +echo( "Purge Old Text\n\n" ); + +if( @$options['help'] ) { + ShowUsage(); +} else { + PurgeRedundantText( @$options['purge'] ); +} + +function ShowUsage() { + echo( "Prunes unused text records from the database.\n\n" ); + echo( "Usage: php purgeOldText.php [--purge]\n\n" ); + echo( "purge : Performs the deletion\n" ); + echo( " help : Show this usage information\n" ); +} + +?>
\ No newline at end of file |