log(__METHOD__." - ".print_r($request_data, true)); // Instanciation de la classe qui s'occupe du traitement métier $this->instructeur_manager = new InstructeursManager(); if ($this->instructeur_manager->f->authenticated !== true) { return $this->sendHttpCode(500, __("Erreur lors de la connexion au serveur.")); } // Exécution du traitement $ret = $this->instructeur_manager->cud_instructeur($request_data); // Gestion du retour en fonction du résultat return $this->sendReply($ret, array( 'message' => $this->instructeur_manager->getMessage(), 'instructeur' => $this->instructeur_manager->instructeur )); } } ?>