Extension:UserExport/ru

From Linux Web Expert

Справка по расширениям MediaWiki
UserExport
Статус релиза: стабильно
Реализация Служебная страница , Извлечение данных
Описание Allows to export user name and email to a CSV file
Автор(ы) Rodrigo Sampaio Primo (RodrigoSampaioPrimotalk)
Поддерживающий(ие) Mark A. Hershberger
Последняя версия 2.1.1 (2020-04-15)
MediaWiki 1.34+
PHP 7.2+
Изменения в БД Нет
Composer mediawiki/user-export
Лицензия GNU General Public License 2.0 или позднее
Скачать
README
CHANGELOG
userexport
Ежеквартальные загрузки Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin').
Использование общедоступными вики Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin').
Переведите расширение UserExport, если оно доступно на translatewiki.net

The UserExport extension allows to export the user name and email of all MediaWiki users to a CSV-file via a new special page called "Special:UserExport". The extension cannot export passwords and user groups.

Использование

This extension creates a new restricted special page called "Special:UserExport" with the title User Export which has only a button to trigger the generation of the CSV file. Click on this button and download the file. The data gets exported in "UTF-8".

Установка

  • <translate> <tvar name=1>Download</tvar> and place the file(s) in a directory called <tvar name=name>UserExport/ru</tvar> in your <tvar name=ext>extensions/</tvar> folder.</translate>
  • <translate> Add the following code at the bottom of your <tvar name=1>LocalSettings.php </tvar> file:</translate>
    wfLoadExtension( 'UserExport/ru' );
    
  • Configure as required.
  • File:OOjs UI icon check-constructive.svg <translate> Done</translate> – <translate> Navigate to <tvar name=special>Special:Version</tvar> on your wiki to verify that the extension is successfully installed.</translate>

Настройка

Право участника

By default the "userexport" permission provided by this extension is assigned to the "bureaucrat" user group.

In case you would like to change this add the following lines to your "LocalSettings.php" file after the inclusion of the extension as described in the "Installation" section above:

$wgGroupPermissions['bureaucrat']['userexport'] = false; // remove from "bureaucrat" group
$wgGroupPermissions['userexport']['userexport'] = true; // add to dedicated "userexport" group

См. также