sivin/role-panel

RolePanel is extension for Nette Framework which change user roles in development mode, where it appears in the debugger bar.

2.0 2020-04-17 20:23 UTC

This package is auto-updated.

Last update: 2024-04-18 06:09:45 UTC


README

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

screenshot.png