Esempio n. 1
0
 function edit_location()
 {
     $locations_model = new Locations_model();
     $locations_service = new Locations_service();
     $locations_model->set_id($this->input->post('loc_id', TRUE));
     $locations_model->set_name($this->input->post('name', TRUE));
     $locations_model->set_type($this->input->post('type', TRUE));
     $locations_model->set_updated_date(date("Y-m-d H:i:s"));
     echo $locations_service->update_location($locations_model);
 }