vr-shopxo-source/application/admin/controller/Index.php

63 lines
1.2 KiB
PHP
Executable File

<?php
namespace app\admin\controller;
/**
* 首页
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class Index extends Common
{
/**
* 构造方法
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-03T12:39:08+0800
*/
public function __construct()
{
// 调用父类前置方法
parent::__construct();
// 登录校验
$this->Is_Login();
}
/**
* [Index 首页]
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-01-05T21:36:13+0800
*/
public function Index()
{
return $this->fetch();
}
/**
* [Init 初始化页面]
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-01-05T21:36:41+0800
*/
public function Init()
{
$mysql_ver = db()->query('SELECT VERSION() AS `ver`');
$data = array(
'server_ver' => php_sapi_name(),
'php_ver' => PHP_VERSION,
'mysql_ver' => isset($mysql_ver[0]['ver']) ? $mysql_ver[0]['ver'] : '',
'os_ver' => PHP_OS,
'host' => isset($_SERVER["HTTP_HOST"]) ? $_SERVER["HTTP_HOST"] : '',
'ver' => 'ShopXO'.' '.APPLICATION_VERSION,
);
$this->assign('data', $data);
return $this->fetch();
}
}
?>