Extension:UserExport/ja

This page is a translated version of the page Extension:UserExport and the translation is 73% complete.
MediaWiki 拡張機能マニュアル
UserExport
リリースの状態: 安定
実装 特別ページ , データ抽出
説明 Allows to export user name and email to a CSV file
作者 Rodrigo Sampaio Primo (RodrigoSampaioPrimoトーク)
メンテナー Mark A. Hershberger
最新バージョン 2.1.1 (2020-04-15)
MediaWiki 1.34+
PHP 7.2+
データベースの変更 いいえ
Composer mediawiki/user-export
ライセンス GNU 一般公衆利用許諾書 2.0 以降
ダウンロード
README
CHANGELOG
userexport
Quarterly downloads 10 (Ranked 128th)
translatewiki.net で翻訳を利用できる場合は、UserExport 拡張機能の翻訳にご協力ください

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".

インストール

  • Downloadして、ファイルをextensions/フォルダー内のUserExportという名前のディレクトリ内に配置します。
  • 以下のコードを LocalSettings.php ファイルの末尾に追加します:
    wfLoadExtension( 'UserExport' );
    
  • 必要に応じて設定します。
  •   完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。

設定

利用者権限

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; // "bureaucrat"グループから取り外し可能です。
$wgGroupPermissions['userexport']['userexport'] = true; // add to dedicated "userexport" group

関連項目