mirror of https://github.com/helloxz/imgurl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.2 KiB
62 lines
2.2 KiB
<?php |
|
/* |
|
name:首页 |
|
*/ |
|
defined('BASEPATH') OR exit('No direct script access allowed'); |
|
|
|
class Home extends CI_Controller{ |
|
public function __construct(){ |
|
parent::__construct(); |
|
//检测是否已安装 |
|
$lock_file = FCPATH.'data/install.lock'; |
|
|
|
|
|
//如果锁文件不存在 |
|
if(!is_file($lock_file)){ |
|
header("location:/install/"); |
|
exit; |
|
} |
|
} |
|
public function index(){ |
|
//加载数据库模型 |
|
$this->load->model('query','',TRUE); |
|
$siteinfo = $this->query->site_setting(); |
|
//读取配置文件内容 |
|
$this->load->library("basic"); |
|
$conf = $this->basic->conf("info"); |
|
|
|
|
|
$siteinfo = json_decode($siteinfo->values); |
|
$siteinfo->info = $conf->index_info; |
|
//echo $siteinfo->title; |
|
//$data['title'] = '图片上传'; |
|
$this->load->view('user/header.php',$siteinfo); |
|
$this->load->view('user/home.php',$siteinfo); |
|
$this->load->view('user/footer.php'); |
|
} |
|
//首页多图上传 |
|
public function multiple(){ |
|
//加载数据库模型 |
|
$this->load->model('query','',TRUE); |
|
$siteinfo = $this->query->site_setting(); |
|
$siteinfo = json_decode($siteinfo->values); |
|
//echo $siteinfo->title; |
|
//$data['title'] = '图片上传'; |
|
$this->load->view('user/header.php',$siteinfo); |
|
$this->load->view('user/multiple.php'); |
|
$this->load->view('user/footer.php'); |
|
} |
|
//更新日志 |
|
public function log(){ |
|
//加载数据库模型 |
|
$this->load->model('query','',TRUE); |
|
$siteinfo = $this->query->site_setting(); |
|
$siteinfo = json_decode($siteinfo->values); |
|
//echo $siteinfo->title; |
|
//$data['title'] = '图片上传'; |
|
$this->load->view('user/header.php',$siteinfo); |
|
$this->load->view('user/log.php'); |
|
$this->load->view('user/footer.php'); |
|
} |
|
} |
|
?>
|