hscstudio / yii2-mimin
Simple RBAC Manager
Installs: 9 429
Dependents: 4
Suggesters: 0
Security: 0
Stars: 51
Watchers: 9
Forks: 33
Open Issues: 3
Type:yii2-extension
Requires
README
Simple RBAC Manager fo Yii 2.0. Minify of yii2-admin extension with awesome features
Attention
Before you install and use this extension, then make sure that your application has been using the login authentication to the database. especially for yii basic template. Because without it, this extension will produce error and useless.
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist hscstudio/yii2-mimin "~1.1.5"
or add
"hscstudio/yii2-mimin": "~1.1.5"
or add this for install last change
"hscstudio/yii2-mimin": "~1.*"
to the require section of your composer.json
file.
Configuration
Once the extension is installed, simply use it in your code by :
in config
'as access' => [ 'class' => '\hscstudio\mimin\components\AccessControl', 'allowActions' => [ // add wildcard allowed action here! 'site/*', 'debug/*', 'mimin/*', // only in dev mode ], ], ..., 'modules' => [ 'mimin' => [ 'class' => '\hscstudio\mimin\Module', ], ... ], 'components' => [ 'authManager' => [ 'class' => 'yii\rbac\DbManager', // only support DbManager ], ],
Because this extension use 'yii\rbac\DbManager'as authManager, so You should migrate rbac sql first:
yii migrate --migrationPath=@yii/rbac/migrations
If You use Yii 2.0.6 version or newer, so then migrate custom table for this extension
yii migrate --migrationPath=@hscstudio/mimin/migrations
But if You install Yii 2.0.5 version or older, so then migrate custom table for this extension
yii migrate --migrationPath=@hscstudio/mimin/migrations/old
Usage
This RBAC manager have three main page, they are:
Route
To get all action route from application. In here, You can on / off permission so not shown in menu role, rename alias/type of action route, so easy readable by end user.
You can then access Route
through the following URL:
http://localhost/path/to/index.php?r=mimin/route
Role
To define level access of user, what he superadmin?, staff?, cashier? etc. In this menu, You can assign permission / action route (actions in application, they are create, update, delete, etc) to role.
You can then access Role
through the following URL:
http://localhost/path/to/index.php?r=mimin/role
Below screenshoot of route assignment to role
User
For standard user management, create/update/delete user, and assign role to user.
You can then access User
through the following URL:
http://localhost/path/to/index.php?r=mimin/user
We recommendate you for activate pretty URL.
Implementation on Widgets
Example dynamic button
It is used for checking if route right to access
if ((Mimin::checkRoute($this->context->id.'/create'))){ echo Html::a('Create Note', ['create'], ['class' => 'btn btn-success']); } // in other case maybe You want ensure same of route so You can add parameter strict true if ((Mimin::checkRoute($this->context->id.'/create',true))){
Example dynamic menu
It is is used for filtering right access menu
use hscstudio\mimin\components\Mimin; $menuItems = [ ['label' => 'Home', 'url' => ['/site/index']], ['label' => 'About', 'url' => ['/site/about']], ['label' => 'Contact', 'url' => ['/site/contact']], ]; if (\Yii::$app->user->isGuest){ $menuItems[] = ['label' => 'Login', 'url' => ['/site/login']]; } else{ $menuItems[] = ['label' => 'App', 'items' => [ ['label' => 'Category', 'url' => ['/category/index']], ['label' => 'Product', 'url' => ['/product/index']], ['label' => 'Cart', 'url' => ['/cart/index']], ]]; $menuItems[] = [ 'label' => 'Logout (' . \Yii::$app->user->identity->username . ')', 'url' => ['/site/logout'], 'linkOptions' => ['data-method' => 'post'] ]; } $menuItems = Mimin::filterMenu($menuItems); // in other case maybe You want ensure same of route so You can add parameter strict true // $menuItems = Mimin::filterMenu($menuItems,true); echo Nav::widget([ 'options' => ['class' => 'navbar-nav navbar-right'], 'items' => $menuItems, ]);
Example dynamic action column template
It is used for filtering template of Gridview Action Column
use hscstudio\mimin\components\Mimin; echo GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ..., [ 'class' => 'yii\grid\ActionColumn', 'template' => Mimin::filterActionColumn([ 'update','delete','download' ],$this->context->route), ... ] ] ]);
How to Contribute
This tools is an OpenSource project so your contribution is very welcome.
In order to get started:
- Install this in your local (read installation section)
- Clone this repository.
- Check README.md.
- Send pull requests.
Aside from contributing via pull requests you may submit issues.
Our Team
- Hafid Mukhlasin - Project Leader / Indonesian Yii developer.
We'd like to thank our contributors for improving this tools. Thank you!
Jakarta - Indonesia
Buku Panduan
Tutorial tentang dasar-dasar RBAC atau access controll di Yii 2 dan panduan yii2-mimin dibahas secara komprehensif di buku saya ini https://hscstudio.github.io/yii2-book-id