امتداد:UserExport
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 |
ترخيص | رخصة جنو العمومية 2.0 أو ما بعدها |
التنزيل | README CHANGELOG |
userexport |
|
تنزيلات ربع سنوية | 10 (Ranked 122nd) |
ترجم الامتداد 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".
التنصيب
- تنزيل وضع الملف/الملفات في دليل يحمل اسم
UserExport
في مجلد extensions/
لديك. - أضف الكود التالي في الجزء الأسفل من ملف LocalSettings.php :
wfLoadExtension( 'UserExport' );
- أعدّ الامتداد حسب ما هو مطلوب.
- تم التنفيذ – اذهب إلى Special:Version على موقع الويكي لديك كي تتحقق من أن الامتداد قد ثبت بنجاح.
الإعداد
- حق المستخدم
يخصص افتراضيًا تصريح "userexport" الذي يقدمه هذا الامتداد إلى مجموعة المستخدمين "bureaucrat".
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; // الإضافة إلى مجموعة "userexport" المكرّسة
انظر أيضا
- Extension:ImportUsers - امتداد يسمح باستيراد المستخدمين جماعات من ملف سي إس في
- Extension:MediaWikiAuth - Extension that allows to export users in bulk to a CSV file