Extension:DisableAccount/pl

From mediawiki.org
This page is a translated version of the page Extension:DisableAccount and the translation is 10% complete.
Podręcznik rozszerzeń MediaWiki
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 GNU General Public License 2.0 or later
Pobieranie
disableaccount
Quarterly downloads 62 (Ranked 87th)
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 folderze extensions/.
    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;
    
  • Yes 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.

Zobacz też