![]() Release status: stable |
|
---|---|
Implementation | Special page |
Description | Allows to delete a batch of pages |
Author(s) | Bartek Łapiński |
Latest version | 1.8.1 (2019-04-05) |
MediaWiki | 1.25+ |
PHP | 5.3+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | Download extension Git [?]: |
Hooks used
|
|
Quarterly downloads | 165 (Ranked 62nd) |
Translate the DeleteBatch extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The DeleteBatch extension adds a special page, Special:DeleteBatch, where users with the 'deletebatch' right can delete multiple pages easily.
Usage
The user can delete pages either through the form or by uploading a text file containing the names (and optional delete reasons) of the deletable pages.
The syntax is:
- page name| Reason for deletion
So if you wanted to delete the page called "Test" with the reason "no longer needed", you'd type:
Test|no longer needed
in the form on Special:DeleteBatch.
This extension was based off on the {{ll|Manual:DeleteBatch.php|maintenance script with the same name}}.
Installation
- Download and place the file(s) in a directory called
DeleteBatch
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php
wfLoadExtension( 'DeleteBatch' );
file: - Configure as required
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Configuration
By default, this extension lets only bureaucrats delete batches. You can change it to, e.g., let sysops delete batches:
$wgGroupPermissions['bureaucrat']['deletebatch'] = false;
$wgGroupPermissions['sysop']['deletebatch'] = true;
See also
- Extension:Nuke
- Extension:NukeDPL
- Extension:UndeleteBatch
![]() | This extension is included in the following wiki farms/hosts and/or packages:
|
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.