amélioration messages

This commit is contained in:
Prof Langues 2020-10-06 15:25:12 +02:00
parent 97c820c7d6
commit 29a41a8d99
2 changed files with 11 additions and 9 deletions

View File

@ -549,8 +549,6 @@ class user extends common {
* Importation CSV d'utilisateurs
*/
public function import() {
$notification = '';
$success = true;
// Soumission du formulaire
if($this->isPost()) {
// Lecture du CSV et construction du tableau
@ -589,9 +587,9 @@ class user extends common {
'signature' => 1, // Pseudo
'password' => uniqid() // A modifier à la première connexion
]]);
$item['notification'] = 'Ok';
$item['notification'] = template::ico('check');
} else {
$item['notification'] = 'Pb';
$item['notification'] = template::ico('cancel');
}
// Création du tableau de confirmation
@ -605,8 +603,10 @@ class user extends common {
$item['notification']
];
}
$notification = 'importation effectuée' ;
$success = true;
} else {
$notification = 'Erreur de lecture : ' . $file;
$notification = 'Erreur de lecture, vérifiez les permissions';
$success = false;
}
}

View File

@ -9,7 +9,9 @@
]); ?>
</div>
<div class="col2 offset8">
<?php echo template::submit('userImportSubmit'); ?>
<?php echo template::submit('userImportSubmit', [
'value' => 'Importer'
]); ?>
</div>
</div>
<div class="row">
@ -28,10 +30,10 @@
]); ?>
</div>
<div class="col5 offset1">
<h5>Contenu du fichier d'import : </h5>
<p>Les en-têtes obligatoires sont : id, nom, prenom, email et groupe.</p>
<p>Groupes 1 : membre - 2 : éditeur - 3 : administrateur </p>
<p>Voir ce <a href="core/module/user/ressource/template.csv">modèle</a> à renseigner avec un tableur.</p>
<p>Voir ce <a href="core/module/user/ressource/template.csv">modèle</a> à compléter avec un tableur.</p>
<p>Enregistrement au format CSV, séparateur ; ou , ou :
</div>
</div>
</div>
@ -39,5 +41,5 @@
</div>
<?php echo template::formClose(); ?>
<?php if ($module::$users): ?>
<?php echo template::table([1, 3, 3, 1, 1, 2, 1, 1 ], $module::$users, ['Identifiant', 'Nom', 'Prénom','Groupe', 'Pseudo', 'eMail', 'Statut']); ?>
<?php echo template::table([1, 3, 3, 1, 1, 2, 1, 1 ], $module::$users, ['Identifiant', 'Nom', 'Prénom','Groupe', 'Pseudo', 'eMail', 'Succès']); ?>
<?php endif;?>