This commit is contained in:
xdrm-brackets 2016-05-17 16:18:45 +02:00
parent 18a2d0ae38
commit 2aff126d43
2 changed files with 18 additions and 6 deletions

View File

@ -303,11 +303,6 @@
/* (5) On met le contenu en json */
$file = json_encode($file);
@ -323,7 +318,23 @@
return array( 'ModuleError' => ManagerError::ModuleError ); // si erreur -> erreur
/* [n] Gestion du retour
/* [6] Enregistrement des mini-fiches dans un fichier '.json'
=========================================================*/
$file = array();
/* (1) On enregistre les données des fiches */
foreach($mini as $id=>$miniFiche){
$data = array(
'number' => $contacts[$id]['number'],
'username' => $contacts[$id]['username'],
'firstname' => $contacts[$id]['firstname'],
'lastname' => $contacts[$id]['lastname'],
);
}
>>>>>>> Stashed changes
/* [9] Gestion du retour
=========================================================*/
return array(
'ModuleError' => ManagerError::Success,

View File

@ -0,0 +1 @@
0