审查视图

simplewind/cmf/controller/UserBaseController.php 897 字节
王晓刚 authored
1 2 3 4 5 6 7 8 9 10 11 12
<?php
// +----------------------------------------------------------------------
// | bronet [ 以客户为中心 以奋斗者为本 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2017 http://www.bronet.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +---------------------------------------------------------------------
// | Author: Dean <zxxjjforever@163.com>
// +----------------------------------------------------------------------
namespace cmf\controller;
王晓刚 authored
13 14
use think\Db;
王晓刚 authored
15 16 17 18 19 20
class UserBaseController extends HomeBaseController
{

    public function _initialize()
    {
        parent::_initialize();
王晓刚 authored
21 22
        $user=Db::name('user')->find();
        cmf_update_current_user($user);
王晓刚 authored
23 24 25 26 27
        $this->checkUserLogin();
    }


}