Extension:DisableAccount/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. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{Rozszerzenie }} infobox. |
DisableAccount Status wydania: niewspierane |
|
---|---|
Realizacja | Strona specjalna , Dostęp użytkownika |
Opis | Allows administrators to disable individual accounts. |
Autor(zy) | Andrew Garrett (Werdnadyskusja) |
MediaWiki | >= 1.35.0 |
Zmiany w bazie danych | Nie |
Licencja | Licencja GNU General Public License 2.0 lub nowsza |
Pobieranie | |
disableaccount |
|
Quarterly downloads | 4 (Ranked 127th) |
Przetłumacz rozszerzenie DisableAccount jeżeli jest dostępne na translatewiki.net | |
Problemy | Otwarte zadania · Zgłoś błąd |
The DisableAccount extension allows administrators to disable individual users' wiki accounts.
Disabling an account will remove this user's password and email, and place it in an "inactive" user group. It is not reversible without system administrator intervention. To re-enable an account, remove it from the inactive user group, and reset its password using changePassword.php .
Installation
- Pobierz i umieść plik(i) w katalogu o nazwie
DisableAccount
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/DisableAccount - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
wfLoadExtension( 'DisableAccount' ); $wgGroupPermissions['bureaucrat']['disableaccount'] = true;
- Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
The second line above assumes you want to give the disableaccount
permission to users in the bureaucrat
user group.
Replace bureaucrat
in the LocalSettings.php lines with the appropriate other user group, if you wish to use a different configuration.
The permission should not be given to user groups that are automatically assigned or widely populated.