'basis/adresse:rw')); // Load model PersonModel $this->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() { $adresse = $this->post(); if (is_array($adresse)) { if (isset($adresse['adresse_id'])) { $result = $this->AdresseModel->update($adresse['adresse_id'], $adresse); } else { $result = $this->AdresseModel->insert($adresse); } $this->response($result, REST_Controller::HTTP_OK); } else { $this->response(); } } }