mirror of
https://github.com/cloudreve/Cloudreve.git
synced 2024-04-21 12:31:40 +00:00
28 lines
555 B
PHP
28 lines
555 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'));
|
|
if($this->userObj->loginStatus){
|
|
$this->redirect(url('/Home','',''));
|
|
exit();
|
|
}
|
|
$userInfo = $this->userObj->getInfo();
|
|
return view('index', [
|
|
'options' => Option::getValues(['basic']),
|
|
'userInfo' => $userInfo,
|
|
]);
|
|
}
|
|
|
|
}
|