fat2fast / yii2-admin
RBAC Auth manager for Yii2
Installs: 249
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 585
Open Issues: 0
Type:yii2-extension
pkg:composer/fat2fast/yii2-admin
Requires
- deesoft/yii2-adminlte: ~1.0
- deesoft/yii2-angular: ~1.3
- yiisoft/yii2: >=2.0.6
README
Warning: This version was no longer maintained. Please use version 2.x.
composer require fat2fast/yii2-admin "~3.2"
Documentation
- Change Log.
- Authorization Guide. Important, read this first before you continue.
- Basic Usage.
- Using Menu.
- Api
Installation
Install With Composer
The preferred way to install this extension is through composer.
Either run
php composer.phar require fat2fast/yii2-admin "~3.2"
to the require section of your composer.json file and execute php composer.phar update.
Install From the Archive
Download the latest release from here releases, then extract it to your project. In your application config, add the path alias for this extension.
return [ ... 'aliases' => [ '@fat2fast/admin' => 'path/to/your/extracted', // for example: '@mdm/admin' => '@app/extensions/mdm/yii2-admin-3.0.0', ... ] ];
Usage
Once the extension is installed, simply modify your application configuration as follows:
return [ 'bootstrap' => [ 'admin', // required ... ], 'modules' => [ 'admin' => [ 'class' => 'fat2fast\admin\Module', ... ] ... ], ... 'components' => [ ... 'authManager' => [ 'class' => 'yii\rbac\PhpManager', // or use 'yii\rbac\DbManager' ] ], 'as access' => [ 'class' => 'fat2fast\admin\classes\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:
http://localhost/path/to/index.php/admin
http://localhost/path/to/index.php/admin#/route
http://localhost/path/to/index.php/admin#/permission
http://localhost/path/to/index.php/admin#/menu
http://localhost/path/to/index.php/admin#/role
http://localhost/path/to/index.php/admin#/assignment
To use the menu manager (optional), execute the migration here:
yii migrate --migrationPath=@fat2fast/admin/migrations
If you use database (class 'yii\rbac\DbManager') to save rbac data, execute the migration here:
yii migrate --migrationPath=@yii/rbac/migrations