Erweiterung:DeleteBatch

This page is a translated version of the page Extension:DeleteBatch and the translation is 53% complete.
MediaWiki-Erweiterungen
DeleteBatch
Freigabestatus: stabil
Einbindung Spezialseite
Beschreibung Allows to delete a batch of pages
Autor(en) Bartek Łapiński
Letzte Version 1.8.1 (2019-04-05)
MediaWiki 1.25+
PHP 5.3+
Datenbankänderungen Nein
Lizenz GNU General Public License 2.0 oder neuer
Herunterladen
  • deletebatch
  • deletebatch-spoof
Quarterly downloads 77 (Ranked 78th)
Übersetze die DeleteBatch-Erweiterung, wenn sie auf translatewiki.net verfügbar ist
Probleme Offene Aufgaben · Einen Fehler melden

The DeleteBatch extension adds a special page, Special:DeleteBatch, where users with the 'deletebatch' right can delete multiple pages easily.

Verwendung

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.

Die Syntax ist:

  • Seitenname|Löschgrund

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 maintenance script with the same name .

Installation

  • Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens DeleteBatch im Ordner extensions/ ablegen.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/DeleteBatch
  • Folgenden Code am Ende deiner LocalSettings.php -Datei einfügen:
    wfLoadExtension( 'DeleteBatch' );
    
  • Konfiguriere nach Bedarf
  •   Erledigt – Zu Special:Version in dem Wiki (bei Einstellung auf deutsch nach Spezial:Version) navigieren, um die erfolgreiche Installierung der Erweiterung zu überprüfen.

Konfiguration

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;

Siehe auch