登录  /  注册
博主信息
博文 91
粉丝 2
评论 4
访问量 125241
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
tp5 auth 权限初始化
夏日的烈风的博客
原创
1500人浏览过


public function _initialize()

{

parent::_initialize();

//判断是否已经登录

 

if( !Session::has('userinfo', 'admin') ) {

$this->error('Please login first', url('admin/Login/index'));

}

        $auth=new \think\Auth();

$userRow = Session::get('userinfo', 'admin');

//验证权限

$request = Request::instance();

$rule_name = $request->module().'/'.$request->controller().'/'.$request->action();

$this->uid = $userRow['id'];

$this->role_id = $userRow['role_id'];

 

//        var_dump($this->uid);

if($rule_name == 'admin/login/index' || $rule_name == 'admin/index/index') {

            $result = true;

        } else {

    $result = $auth->check($rule_name, $this->uid);

        }

        if(!$result){

            $this->error('您没有权限访问');

        }

/*if($userRow['administrator']!=1 && !$this->checkRule($this->uid, $rule_val)) {

$this->error(lang('Without the permissions page'));

}*/


本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学