Extension:DeletePagesForGood/pl
DeletePagesForGood Status wydania: stabilne |
|
---|---|
Realizacja | Akcja strony |
Opis | Allows users to delete pages permanently from database |
Autor(zy) | Paladoxdyskusja |
Ostatnia wersja | 2.0 |
MediaWiki | >= 1.38.0 |
Zmiany w bazie danych | Nie |
Composer | mediawiki/deletepagesforgood |
Licencja | Licencja GNU General Public License 2.0 lub nowsza |
Pobieranie | |
|
|
|
|
Quarterly downloads | 14 (Ranked 122nd) |
Przetłumacz rozszerzenie DeletePagesForGood jeżeli jest dostępne na translatewiki.net | |
Problemy | Otwarte zadania · Zgłoś błąd |
The DeletePagesForGood extension allows users to delete pages permanently from the database by adding a new delete tab to each page. Even if you permanently delete a page, the page title, how many edits does the page have and the time of edits can still be seen through CheckUser if you enter the user or IP address who created or edited the page.
When a page is permanently deleted, it removes the title from all users' watchlist.
Limitations
A page being permanently deleted is like deleting a file on a hard drive. It does not necessarily ensure all references to the page have been purged from the files storing the database, or the hard drive that those files are stored on.
Instalacja
- Pobierz i umieść plik(i) w katalogu o nazwie
DeletePagesForGood
w folderzeextensions/
.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/DeletePagesForGood - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
wfLoadExtension( 'DeletePagesForGood' );
- Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
User rights
You can configure the user rights in LocalSettings.php :
Defaults from DeletePagePermanently.php:
$wgGroupPermissions['*']['deleteperm'] = false;
$wgGroupPermissions['user']['deleteperm'] = false;
$wgGroupPermissions['bureaucrat']['deleteperm'] = false;
$wgGroupPermissions['sysop']['deleteperm'] = true;
The extension introduces a new user rights deleteperm.
Namespaces
To configure this, add some lines to your LocalSettings.php :
$wgDeletePagesForGoodNamespaces = [
NS_MAIN => true,
NS_TALK => true,
NS_CATEGORY => true,
NS_CATEGORY_TALK => true,
NS_TEMPLATE => true,
NS_TEMPLATE_TALK => true,
NS_USER => true,
NS_USER_TALK => true,
NS_FILE => true,
NS_FILE_TALK => true,
];
Built-in namespaces are described on the help page on namespaces .