예제 #1
0
 public function index()
 {
     mycache($this);
     $data_contents = array();
     $data_frame = array();
     load_my_view($this, '/service/index', $data_contents, $data_frame);
 }
예제 #2
0
파일: top.php 프로젝트: sosute/lucubunga
 public function index()
 {
     //mycache($this);
     $data_contents = array();
     $data_frame['top'] = 'on';
     load_my_view($this, '/top/index', $data_contents, $data_frame);
 }
예제 #3
0
 private function _load_view_done()
 {
     $data_contents = array();
     $data_contents = $this->input->post();
     $data_frame = array();
     load_my_view($this, '/contact/done', $data_contents, $data_frame);
 }
예제 #4
0
파일: status.php 프로젝트: sosute/lucubunga
 public function index()
 {
     // お申込みIDの状態確認、データ取得
     $app_id = $this->input->get('app_id');
     if ($app_id !== FALSE && $app_id !== '') {
         $_POST['app_id'] = $app_id;
         if ($this->form_validation->run('status') === FALSE) {
             $this->_data_contents['page_type'] = self::PAGE_TYPE_INVALID;
         } else {
             $this->_set_issue_id_and_status_id($app_id);
             $status_id = $this->_get_status_id();
             if ($status_id === '') {
                 $this->_data_contents['page_type'] = self::PAGE_TYPE_NOT_FOUND;
             } else {
                 $issue_id = $this->_get_issue_id();
                 $this->_data_contents = array('page_type' => self::PAGE_TYPE_HIT, 'status_desc' => $this->config->item('redmine_status_desc_' . $status_id), 'app_values' => $this->_get_app_values($issue_id));
             }
         }
     }
     // ページ出力
     $data_contents = $this->_data_contents;
     $data_frame = array();
     load_my_view($this, '/status/index', $data_contents, $data_frame);
 }
예제 #5
0
파일: apply.php 프로젝트: sosute/lucubunga
 private function _load_view_done()
 {
     $data_contents = array();
     $data_frame = array();
     load_my_view($this, '/apply/done', $data_contents, $data_frame);
 }
예제 #6
0
 public function index()
 {
     mycache($this);
     load_my_view($this, '/privacy/index');
 }