1.1.0
1.1.0.0RBAC Auth manager for Yii2
BSD-3-Clause
The Requires
by Misbahul Munir
auth yii rbac admin
dev-master
9999999-devRBAC Auth manager for Yii2
BSD-3-Clause
The Requires
by Misbahul Munir
auth yii rbac admin
RBAC Auth manager for Yii2
GUI manager for RABC (Role Base Access Control) Yii2. Easy to manage authorization of user., (*1)
Important: If you install version 3.x, please see this readme., (*3)
The preferred way to install this extension is through composer., (*4)
Either run, (*5)
php composer.phar require jackhsoft/yii2-admin "~1.0" or php composer.phar require jackhsoft/yii2-admin "~2.0"
or for the dev-master, (*6)
php composer.phar require jackhsoft/yii2-admin "2.x-dev"
Or, you may add, (*7)
"jackhsoft/yii2-admin": "~2.0"
to the require section of your composer.json
file and execute php composer.phar update
., (*8)
Download the latest release from here releases, then extract it to your project. In your application config, add the path alias for this extension., (*9)
return [ ... 'aliases' => [ '@jackh/admin' => 'path/to/your/extracted', // for example: '@jackh/admin' => '@app/extensions/mdm/yii2-admin-2.0.0', ... ] ];
Once the extension is installed, simply modify your application configuration as follows:, (*10)
return [ 'modules' => [ 'admin' => [ 'class' => 'jackh\admin\Module', ... ] ... ], ... 'components' => [ ... 'authManager' => [ 'class' => 'yii\rbac\PhpManager', // or use 'yii\rbac\DbManager' ] ], 'as access' => [ 'class' => 'jackh\admin\components\AccessControl', 'allowActions' => [ 'site/*', 'admin/*', 'some-controller/some-action', // The actions listed here will be allowed to everyone including guests. // So, 'admin/*' should not appear here in the production, of course. // But in the earlier stages of your development, you may probably want to // add a lot of actions here until you finally completed setting up rbac, // otherwise you may not even take a first step. ] ], ];
See Yii RBAC for more detail. You can then access Auth manager through the following URL:, (*11)
http://localhost/path/to/index.php?r=admin http://localhost/path/to/index.php?r=admin/route http://localhost/path/to/index.php?r=admin/permission http://localhost/path/to/index.php?r=admin/menu http://localhost/path/to/index.php?r=admin/role http://localhost/path/to/index.php?r=admin/assignment
To use the menu manager (optional), execute the migration here:, (*12)
yii migrate --migrationPath=@jackh/admin/migrations
If you use database (class 'yii\rbac\DbManager') to save rbac data, execute the migration here:, (*13)
yii migrate --migrationPath=@yii/rbac/migrations
Assignment controller properties may need to be adjusted to the User model of your app.
To do that, change them via controllerMap
property. For example:, (*14)
'modules' => [ 'admin' => [ ... 'controllerMap' => [ 'assignment' => [ 'class' => 'jackh\admin\controllers\AssignmentController', /* 'userClassName' => 'app\models\User', */ 'idField' => 'user_id', 'usernameField' => 'username', 'fullnameField' => 'profile.full_name', 'extraColumns' => [ [ 'attribute' => 'full_name', 'label' => 'Full Name', 'value' => function($model, $key, $index, $column) { return $model->profile->full_name; }, ], [ 'attribute' => 'dept_name', 'label' => 'Department', 'value' => function($model, $key, $index, $column) { return $model->profile->dept->name; }, ], [ 'attribute' => 'post_name', 'label' => 'Post', 'value' => function($model, $key, $index, $column) { return $model->profile->post->name; }, ], ], 'searchClass' => 'app\models\UserSearch' ], ], ... ] ... ],
By default, the admin module will use the layout specified in the application level. In that case you have to write the menu for this module on your own., (*15)
By specifying the layout
property, you can use one of the built-in layouts of the module:
'left-menu', 'right-menu' or 'top-menu', all equipped with the menu for this module., (*16)
'modules' => [ 'admin' => [ ... 'layout' => 'left-menu', // defaults to null, using the application's layout without the menu // other avaliable values are 'right-menu' and 'top-menu' ], ... ],
If you use one of them, you can also customize the menu. You can change menu label or disable it., (*17)
'modules' => [ 'admin' => [ ... 'layout' => 'left-menu', 'menus' => [ 'assignment' => [ 'label' => 'Grant Access' // change label ], 'route' => null, // disable menu ], ], ... ],
While using a dedicated layout of the module, you may still want to have it wrapped in your application's main layout
that has your application's nav bar and your brand logo on it.
You can do it by specifying the mainLayout
property with the application's main layout. For example:, (*18)
'modules' => [ 'admin' => [ ... 'layout' => 'left-menu', 'mainLayout' => '@app/views/layouts/main.php', ... ], ... ],
screenshots, (*19)
RBAC Auth manager for Yii2
BSD-3-Clause
auth yii rbac admin
RBAC Auth manager for Yii2
BSD-3-Clause
auth yii rbac admin