Extension:UserGroups/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. |
UserGroups Status wydania: niewspierane |
|
---|---|
Realizacja | Strona specjalna , Uprawnienia użytkownika |
Opis | Provides finer control over user groups and user rights. |
Autor(zy) | Withoutaname |
Ostatnia wersja | 1.0.0 |
MediaWiki | 1.24+ |
PHP | 5.3.10+ |
Zmiany w bazie danych | No |
Licencja | Licencja GNU General Public License 2.0 lub późniejsza |
Pobieranie | |
modifygroups |
|
Quarterly downloads | 10 (Ranked 122nd) |
Przetłumacz rozszerzenie UserGroups jeżeli jest dostępne na translatewiki.net | |
The UserGroups extension adds a special page called Special:UserGroups that allows the user accessing it the ability to create, delete, modify and configure user groups in terms of the user rights registrations or associations with it. It could be thought of as a revival of the now defunct Extension:GroupPermissionsManager . This is different from Special:UserRights, which only determines how to allocate user rights to certain users based upon membership of certain user groups.
It is not possible to configure $wgAddGroups or $wgRemoveGroups that way; such must be done in LocalSettings.php. Also, be careful when removing groups - doing so incorrectly can lock you out of your wiki! It is not possible to remove some system-created rights (such as CheckUser) completely through this extension; see Podręcznik:Uprawnienia użytkowników instead on how to do this manually.
If you are still locked out, the last options are to have someone else grant you the groups again, or at worst (if you are the only one) to grant yourself the rights manually via the database in the user_groups
table.
Instalacja
- Pobierz i umieść plik(i) w katalogu o nazwie
UserGroups
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/UserGroups - Dodaj poniższy kod na dole twojego pliku LocalSettings.php :
wfLoadExtension( 'UserGroups' );
- Zrobione – Przejdź do Special:Version na twojej wiki, aby sprawdzić czy rozszerzenie zostało pomyślnie zainstalowane.
Uprawnienia użytkownika
- modifygroups - Determines control of access to the Special:UserGroups special page interface, or in essence who is allowed to modify and configure user groups and their associated permissions. By default, this access is restricted to bureaucrats.
However, if you want to grant this right to other groups, add this to LocalSettings.php .
$wgGroupPermissions['sysop']['modifygroups'] = true;