Ejemplo n.º 1
0
 /**
  * Sauvegarde des modifications
  */
 public function save()
 {
     // Mise a jour des donnees en base
     $model = new Champ_model();
     $model->chpidchp = $this->input->post('identifiant');
     $model->chplbcde = $this->input->post('code');
     $model->chplbnom = $this->input->post('Nom');
     $model->chpfgnul = $this->input->post('peutEtreNull');
     $model->chpfgcle = $this->input->post('estCle');
     $model->chpcdtyp = $this->input->post('type');
     $model->chplbdes = $this->input->post('description');
     $model->objidobj = $this->input->post('idObjet');
     $model->update($this->db);
     $this->session->set_userdata('message', formatInfo('Champ mis a jour'));
     redirect('listchamps/index');
 }