load->model('person/Adresse_model', 'AdresseModel'); } public function getAdresse() { $personID = $this->get("person_id"); if (isset($personID)) { $result = $this->AdresseModel->loadWhere(array('person_id' => $personID)); $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } public function postAdresse() { $post = $this->_parseData($this->post()); if (is_array($post)) { if (isset($post['adresse_id'])) { $result = $this->AdresseModel->update($post['adresse_id'], $post); } else { $result = $this->AdresseModel->insert($post); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } }