26 lines
752 B
PHP
26 lines
752 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\admin\controller;
|
|
|
|
/**
|
|
* @title 后端公共模块
|
|
*/
|
|
class Index extends Base {
|
|
|
|
/**
|
|
* @title 系统首页
|
|
*/
|
|
public function index(){
|
|
$this->data['data'] = array(
|
|
'info' => 'ddd'
|
|
);
|
|
return $this->fetch('', $this->data, $this->meta);
|
|
}
|
|
}
|