Download the PHP package binn/yii2-auth without Composer
On this page you can find all versions of the php package binn/yii2-auth. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download binn/yii2-auth
More information about binn/yii2-auth
Files in binn/yii2-auth
Package yii2-auth
Short Description Web UI for the authorization manager of Yii PHP framework.
License BSD-3-Clause
Informations about the package yii2-auth
yii2-auth
Auth is a module for the Yii PHP framework that provides a web user interface for Yii's built-in authorization manager (\yii\rbac\BaseManager). You can read more about Yii's authorization manager in the framework documentation under Authorization.
Auth based on original code of yii-auth extension and fully rewrited for using with Yii 2. Also fork contain all original releases for Yii 1.x.
At this moment module supports only DbManager.
Demo
Coming soon.
Usage
Setup
The preferred way to install this extension is through composer.
Add
to the require section of your composer.json
file.
Add module to application config and configure authManager
component:
Please note that while the module doesn't require you to use a database, if you wish to use yii\rbac\DbManager you need it's schema (it can be found in the framework under yii\rbac\migrations
).
Configuration
Configure the module to suit your needs. Here's a list of the available configurations (with default values).
Checking access
When you wish to check if the current user has a certain permission you can use the User::can() method which can be access from anywhere in your application through Yii::$app like so:
In order to keep your permissions dynamic you should never check for a specific role or task, instead you should always check for an operation. For more information on Yii's authorization manager refer to the framework documentation on Authorization.
Checking access using a filter
You can also use a filter to automatically check access before controller actions are called. Operations used with this filter has to be named as follows (moduleId.)controllerId.actionId, where moduleId is optional.
For example
For more information on how filters work refer to the framework documentation on Controllers.
Versioning
Because Auth contain all versions from original library be careful with versions.
Version 1.x - for Yii 1.x Version 2.x - for Yii 2.x
Contributing
Please, send any issues and PR only for 2.x version. For original Yii 1.x module contribute to yii-auth