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/nukePage.php |
MediaWiki 1.7.1 wiederhergestellt
Diffstat (limited to 'maintenance/nukePage.php')
-rw-r--r-- | maintenance/nukePage.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/maintenance/nukePage.php b/maintenance/nukePage.php new file mode 100644 index 00000000..b5c3f283 --- /dev/null +++ b/maintenance/nukePage.php @@ -0,0 +1,30 @@ +<?php + +/** + * Erase a page record from the database + * Irreversible (can't use standard undelete) and does not update link tables + * + * @package MediaWiki + * @subpackage Maintenance + * @author Rob Church <robchur@gmail.com> + */ + +require_once( 'commandLine.inc' ); +require_once( 'nukePage.inc' ); + +echo( "Erase Page Record\n\n" ); + +if( isset( $args[0] ) ) { + NukePage( $args[0], true ); +} else { + ShowUsage(); +} + +/** Show script usage information */ +function ShowUsage() { + echo( "Remove a page record from the database.\n\n" ); + echo( "Usage: php nukePage.php <title>\n\n" ); + echo( " <title> : Page title; spaces escaped with underscores\n\n" ); +} + +?>
\ No newline at end of file |