PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Smoren Freelight   Yii2 Module Access Manager   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Yii2 Module Access Manager
User access manager and control module for Yii2
Author: By
Last change:
Date: 1 month ago
Size: 727 bytes
 

Contents

Class file image Download

yii2-module-access-manager

Access manager and control module for Yii2

How to install to Yii2 project

composer require smoren/yii2-module-access-manager

After install

Include into Yii2 config:

...
'modules' => [
    ...
    'access' => ['class' => 'Smoren\Yii2\AccessManager\Module'],
],
...
'bootstrap' => [
    ...
    'access',
],
...
'controllerMap' => [
    'migrate' => [
        'class' => MigrateController::class,
        'migrationPath' => [
            ...
            'vendor/smoren/yii2-module-access-manager/src/migrations',
        ],
    ],
],
...

Then run migrations:

php yii migrate

Also you can choose another module id if you already have your own module named "access".