minmod
This commit is contained in:
parent
18a2d0ae38
commit
2aff126d43
|
@ -303,11 +303,6 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* (5) On met le contenu en json */
|
/* (5) On met le contenu en json */
|
||||||
$file = json_encode($file);
|
$file = json_encode($file);
|
||||||
|
|
||||||
|
@ -323,7 +318,23 @@
|
||||||
return array( 'ModuleError' => ManagerError::ModuleError ); // si erreur -> erreur
|
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(
|
return array(
|
||||||
'ModuleError' => ManagerError::Success,
|
'ModuleError' => ManagerError::Success,
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
0
|
Loading…
Reference in New Issue