All Projects → githubjeka → Gui Rbac Yii2

githubjeka / Gui Rbac Yii2

GUI for RBAC Yii2 Auth manager

Labels

Projects that are alternatives of or similar to Gui Rbac Yii2

Yii2 Ace Admin
我的Yii2 Admin后台项目
Stars: ✭ 130 (+56.63%)
Mutual labels:  yii2, rbac
Yii2 Db Rbac
Dynamic control of access rights in YII2
Stars: ✭ 106 (+27.71%)
Mutual labels:  yii2, rbac
Rageframe2
一个基于Yii2高级框架的快速开发应用引擎
Stars: ✭ 1,553 (+1771.08%)
Mutual labels:  yii2, rbac
Rageframe
基于yii2的应用开发引擎
Stars: ✭ 170 (+104.82%)
Mutual labels:  yii2, rbac
Yii2 Cms
An enterprise application based on yii2 basic template
Stars: ✭ 188 (+126.51%)
Mutual labels:  yii2, rbac
yii2-admin-theme
基于Yii2+layui的后台框架模板,实现了完善的RBAC权限控制
Stars: ✭ 87 (+4.82%)
Mutual labels:  yii2, rbac
Yii2 Usuario
Highly customizable and extensible user management, authentication, and authorization Yii2 extension
Stars: ✭ 251 (+202.41%)
Mutual labels:  yii2, rbac
yii2-rest-rbac
yii2 rbac yii2 rest RBAC Auth manager for Yii2 RESTful(YII2权限管理rbac--rest接口方式)
Stars: ✭ 79 (-4.82%)
Mutual labels:  yii2, rbac
Yii2 Configloader
Build configuration arrays from config files and env vars.
Stars: ✭ 59 (-28.92%)
Mutual labels:  yii2
Gorbac
goRBAC provides a lightweight role-based access control (RBAC) implementation in Golang.
Stars: ✭ 1,148 (+1283.13%)
Mutual labels:  rbac
Yii2 Psr Log Target
Yii 2.0 log target that is able to write messages to PSR-3 compatible logger
Stars: ✭ 58 (-30.12%)
Mutual labels:  yii2
Sitemap
Site map creation support
Stars: ✭ 59 (-28.92%)
Mutual labels:  yii2
Yii2 Smarty
Yii 2 Smarty Extension.
Stars: ✭ 67 (-19.28%)
Mutual labels:  yii2
Yii2 Oauth2
OAuth2 wrapper for Yii2 applications
Stars: ✭ 58 (-30.12%)
Mutual labels:  yii2
Yii2 Schemadump
Generate the schema from an existing database.
Stars: ✭ 78 (-6.02%)
Mutual labels:  yii2
Lang Sc
一本字典
Stars: ✭ 57 (-31.33%)
Mutual labels:  yii2
Php frameworks analysis
php框架源码分析
Stars: ✭ 57 (-31.33%)
Mutual labels:  yii2
Csv Grid
Yii2 extension for CSV export
Stars: ✭ 83 (+0%)
Mutual labels:  yii2
Nestjs Roles
Type safe roles guard and decorator made easy
Stars: ✭ 78 (-6.02%)
Mutual labels:  rbac
Yii2 Adminlte Asset
AdminLTE Asset Bundle for Backend Theme in Yii2 Framework
Stars: ✭ 1,124 (+1254.22%)
Mutual labels:  yii2

Total Downloads Build Status

http://i.imgur.com/BXTKymp.jpg

How to install

🐤 Follow the commands:

  • Check that the component authManager has been configured.
  • Add to your composer.json "githubjeka/yii2-gui-rbac": "1.0.2"
  • Run composer update
  • If your project doesn't have to implement rbac then run yii migrate [email protected]/rbac/migrations/
  • Add to @app/config/main.php the code:
// '/config/web.php' for Basic or '/backend/config/main' - Advanced Yii2 application.
'modules' => [
  'rbac' => [
    'class' => 'githubjeka\rbac\Module',
    'as access' => [ // if you need to set access
      'class' => 'yii\filters\AccessControl',
      'rules' => [
          [
              'allow' => true,
              'roles' => ['@'] // all auth users 
          ],
      ]
    ]
  ],
],
  • go to url /index.php?r=rbac
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].