Download the PHP package ujjwal/user-rbac without Composer
On this page you can find all versions of the php package ujjwal/user-rbac. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ujjwal/user-rbac
More information about ujjwal/user-rbac
Files in ujjwal/user-rbac
Package user-rbac
Short Description A Zend Framework 2 module to easily integrate ZfcUser and ZfcRbac
License MIT
Homepage https://github.com/ojhaujjwal/UserRbac
Informations about the package user-rbac
UserRbac
A Zend Framework 2 module to easily integrate ZfcUser and ZfcRbac
Are your tired of doing tedious work of integrating ZfcUser and ZfcRbac again and again? Then, you are in the right place. This module comes to save us. This module, simply, gets roles of a user from the database and passes it to the ZfcRbac. You only need to focus on the domain logic of your application. No more repetive tasks.
Features
- No need to write code for integrating ZfcUser and ZfcRbac
- A user`s roles are easily retrievable from the database
- Addition of
SmartRedirectStrategy
Installation
- Add
"ujjwal/user-rbac": "0.1.*",
to your composer.json and runphp composer.phar update
- Import the schema in
data/mysql.sql
- Enable this module in
config/application.config.php
- Copy file located in
vendor/ujjwal/user-rbac/config/user-rbac.global.php
to./config/autoload/user-rbac.global.php
and change the values as you wish
What it does
This module registers an identity provider and provides some configuration to ZfcRbac. So, you don't need to create your own identity provider. See config/module.config.php
.
How it works
It gets a user's roles from the table user_role_linker
and passes the roles to ZfcRbac
. This module is best suited when you use ZfcRbac\Role\InMemoryRoleProvider
as role provider.
Options
Check the options available in vendor/ujjwal/user-rbac/config/user-rbac.global.php
.
SmartRedirectStrategy
This module comes with a new strategy called SmartRedirectStrategy
. This simply redirects to ZfcUser
's login page or route, zfcuser/login
only when the user is unauthenticated. Otherwise, it shows a 403 error page!
Usage
Known Limitation
This module is only ideal for small and meduim web sites as a quick and easy way. For complicated use cases, it may not suit your need.