예제 #1
0
파일: source.php 프로젝트: Lothurm/J3.x
 function display()
 {
     $action = $this->input->get('action');
     if ($action == 'select') {
         $this->input->set('tmpl', 'component');
         $this->input->set('action', $action);
     }
     parent::display();
 }
예제 #2
0
 public function edit()
 {
     $cids = $this->input->get('cid', null, 'array');
     $cid = (int) $cids[0];
     $this->input->set('id', $cid);
     $this->input->set('view', 'jt_location');
     $this->input->set('layout', 'form');
     parent::display();
 }
예제 #3
0
파일: jt_themes.php 프로젝트: Lothurm/J3.x
 public function edit_css()
 {
     $cids = $this->input->get('cid', array(), 'array');
     $cid = (int) $cids[0];
     $this->input->set('id', $cid);
     $this->input->set('view', 'jt_theme');
     $this->input->set('layout', 'editcss');
     parent::display();
 }