Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.17 KB

README.md

File metadata and controls

52 lines (38 loc) · 1.17 KB

Role Panel

License Total Downloads

Role Panel is an extension for Nette Framework which change user roles in development mode, where it appears in Tracy debugger bar.

Installation

  1. Install library via composer:

    composer require sivin/role-panel
  2. Update your local configuration (e.g. config.local.neon) to register Role Panel to Tracy.

    extensions:
        rolePanel: SiViN\RolePanel\DI\RolePanelExtension
    
    #optional
    rolePanel:
        roleNames:
            r154: Section 154
            5001: Writer

Usage

services:
    authorizator: MyAuthorizator
use Nette\Security\Permission;

class MyAuthorizator extends Permission
{
    public function __construct()
    {
        $this->addRole('user');
        $this->addRole('r154');
        $this->addRole('5001');
    }
}

Screenshot