예제 #1
0
파일: item.php 프로젝트: trk/ionize
 public function get_parent_item_list()
 {
     $parent = $this->input->post('parent');
     $id_parent = $this->input->post('id_parent');
     $items = $this->item_model->get_parent_item_list($parent, $id_parent, $lang = NULL);
     $this->xhr_output($items);
 }