vova07/yii2-start-rbac-module 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

vova07/yii2-start-rbac-module

最新稳定版本:0.1.1

Composer 安装命令:

composer require vova07/yii2-start-rbac-module

包简介

The RBAC module for Yii2-Start application.

README 文档

README

Yii2 RBAC module.

This module provide an RBAC managing system for your yii2 application.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist vova07/yii2-start-rbac-module "*"

or add

"vova07/yii2-start-rbac-module": "*"

to the require section of your composer.json file.

Configuration

Edit authManager component in your application config file:

'authManager' => [
    'class' => 'yii\rbac\PhpManager',
    'defaultRoles' => [
        'user'
    ],
    'itemFile' => '@vova07/rbac/data/items.php',
    'assignmentFile' => '@vova07/rbac/data/assignments.php',
    'ruleFile' => '@vova07/rbac/data/rules.php',
]

Add new filed role to your users table.

Usage

Once the extension is installed, simply use it in your code by:

Yii::$app->user->can('admin');

Info

By default RBAC module provide 3 defaults roles: user, admin and superadmin.

You can add more roles by creating your own rules.php file.

If you want to regenerate the rbac files, you can change the itemFile, assignmentFile and ruleFile in your config authManager section and run php yii cron/cron/init.

统计信息

  • 总下载量: 9.9k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 0
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 4
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2014-10-12