芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/theenvironmentalengineering.com/application/controllers/Gallery.php
load->model('Model_common'); $this->load->model('Model_gallery'); } public function index() { $header['setting'] = $this->Model_common->get_setting_data(); $header['page'] = $this->Model_common->get_page_data(); $header['comment'] = $this->Model_common->get_comment_code(); $header['social'] = $this->Model_common->get_social_data(); $header['language'] = $this->Model_common->get_language_data(); $header['latest_news'] = $this->Model_common->get_latest_news(); $header['popular_news'] = $this->Model_common->get_popular_news(); $header['gallery'] = $this->Model_gallery->get_gallery_data(); $this->load->view('view_header',$header); $this->load->view('view_gallery'); $this->load->view('view_footer'); } }