mrsilva/acl-manager

AclManager Plugin for CakePHP 3.x framework

Installs: 815

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Forks: 1

Type:cakephp-plugin

2.0.2 2023-09-15 13:42 UTC

This package is not auto-updated.

Last update: 2024-04-12 17:11:34 UTC


README

Installation

You can install this plugin into your CakePHP application using composer.

The recommended way to install composer packages is:

composer require mrsilva/acl-manager

Then in your src/Application.php:

public function bootstrap()
{
    parent::bootstrap();
    

    
    // Load more plugins here
    $this->addPlugin("Acl");
    $this->addPlugin('AclManager',['bootstrap' => false, 'routes' => true]);
}

Creating tables

To create the ACL requires tables, run the following Migrations command:

bin/cake migrations migrate -p Acl

Accessing Admin Page

Add address your page the url

https://..../admin/dashboards

Into dashboards the Plugin System to guide to do configure nescessary. Not forget set database!!!