mediawiki/user-export
Composer 安装命令:
composer require mediawiki/user-export
包简介
README 文档
README
The UserExport extension to MediaWiki allows to export all user's account names together with the respective e-mail address as a UTF-8 encoded CSV file.
Compatibility
- PHP 7.2+
- MediaWiki 1.33+
See also the CHANGELOG.md file provided with the code.
Installation
- Obtain the code from GitHub
- Extract the files in a directory called
UserExportin yourextensions/folder. - Add the following code at the bottom of your "LocalSettings.php" file:
wfLoadExtension( 'UserExport' ); - Configure as required. See the "Configuration" section below.
- Go to "Special:Version" on your wiki to verify that the extension was successfully installed.
- Done.
Configuration
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
Usage
See the extension's homepage for further information.
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2020-04-12