Extension:UndeleteBatch/pl
![]() | To rozszerzenie nie jest aktualnie aktywnie rozwijane! Pomimo, że może nadal działać, jakiekolwiek zgłoszenia błędów lub propozycji funkcji będą najprawdopodobniej ignorowane. |
![]() Status wydania: niewspierane |
|
---|---|
Realizacja | Strona specjalna |
Opis | Allows to undelete a batch of pages |
Autor(zy) | Nathan Larson (Leucostictedyskusja) |
Ostatnia wersja | 1.0.0 (2013-12-23) |
MediaWiki | 1.23+ |
PHP | 5.3+ |
Zmiany w bazie danych | Nie |
Licencja | GNU General Public License 2.0 lub późniejsza |
Pobieranie | GitHub: Uwaga: |
undeletebatch |
|
The UndeleteBatch extension adds a special page, "Special:UndeleteBatch", where users with the 'undeletebatch' right can undelete multiple pages easily. The user can undelete pages either through the form or by uploading a text file containing the names (and optional undelete reasons) of the pages.
Usage
The syntax is:
- page name|Reason for undeletion
So if you wanted to undelete the page called "Test" with the reason "needed again", you'd type:
Test|needed againin the form on Special:UndeleteBatch.
Installation
- Download i umieść plik(i) w katalogu o nazwie
UndeleteBatch
w swoim kataloguextensions/
. - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
require_once "$IP/extensions/UndeleteBatch/UndeleteBatch.php";
Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Configuration
By default, this extension lets only bureaucrats undelete batches. You can change it to, e.g., let sysops undelete batches:
$wgGroupPermissions['bureaucrat']['undeletebatch'] = false;
$wgGroupPermissions['sysop']['undeletebatch'] = true;
Zobacz też
- Extension:DeleteBatch - the extension (1) that does the opposite of what this one does, and (2) from which most of the code for this extension was borrowed