Exemple #1
0
 public function get_extend_instance($mode = NULL)
 {
     $id_extend = $this->input->post('id_extend');
     $parent = $this->input->post('parent');
     $id_parent = $this->input->post('id_parent');
     $lang = $this->input->post('lang');
     $extend = $this->extend_field_model->get_element_extend_field($id_extend, $parent, $id_parent, $lang);
     if ($mode === 'json') {
         $this->xhr_output($extend);
     }
 }