Extension:UserExport/fr

This page is a translated version of the page Extension:UserExport and the translation is 27% complete.
Manuel des extensions MediaWiki
UserExport
État de la version : stable
Implémentation Page spéciale , Extraction de données
Description Allows to export user name and email to a CSV file
Auteur(s) Rodrigo Sampaio Primo (RodrigoSampaioPrimodiscussion)
Maintenance Mark A. Hershberger
Dernière version 2.1.1 (2020-04-15)
MediaWiki 1.34+
PHP 7.2+
Modifie la base
de données
Non
Composer mediawiki/user-export
Licence Licence publique générale GNU v2.0 ou supérieur
Téléchargement
README
CHANGELOG
userexport
Téléchargements trimestriels 10 (Ranked 128th)
Traduire l’extension UserExport sur translatewiki.net si elle y est disponible

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.

Utilisation

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

Installation

  • Download et placez le(s) fichier(s) dans un répertoire appelé UserExport dans votre dossier extensions/.
  • Ajoutez le code suivant à la fin de votre fichier LocalSettings.php  :
    wfLoadExtension( 'UserExport' );
    
  • Configure as required.
  •   Fait – Accédez à Special:Version sur votre wiki pour vérifier que l'extension a bien été installée.

Configuration

User right

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

Voir aussi