Files
Cloudreve/application/index/controller/Index.php
T
2018-02-04 12:58:07 +08:00

24 lines
453 B
PHP

<?php
namespace app\index\controller;
use think\Controller;
use think\Db;
use \app\index\model\Option;
use \app\index\model\User;
class Index extends Controller{
public $userObj;
public function index(){
$this->userObj = new User(cookie('user_id'),cookie('login_key'));
$userInfo = $this->userObj->getInfo();
return view('index', [
'options' => Option::getValues(['basic']),
'userInfo' => $userInfo,
]);
}
}