Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.98 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Module\User\Enum;
  4.  
  5. /**
  6.  * Interface PermissionEnumInterface
  7.  *
  8.  * @package App\Module\User\Enum
  9.  */
  10. interface PermissionEnumInterface
  11. {
  12.     public const ROLE_VIEW = 'user@role@view';
  13.     public const ROLE_CONTROL = 'user@role@control';
  14.     public const USER_VIEW = 'user@user@view';
  15.     public const USER_CONTROL = 'user@user@control';
  16.     public const VIMB_VIEW = 'vimb@dictionary@view';
  17.     public const VIMB_CONTROL = 'vimb@dictionary@control';
  18.     public const COMPANY_VIEW = 'company@dictionary@view';
  19.     public const COMPANY_CONTROL = 'company@dictionary@conrol';
  20.     public const PLAN_ACCESS = 'plan@access';
  21.     public const PALOMARS_AFFINITY_ACCESS = 'palomars-affinity@access';
  22.     public const BG_GRID_REPORT_ACCESS = 'bg-grid-report@access';
  23.     public const CHART_ACCESS = 'chart@access';
  24.     public const CHART_PARAMS_BUYING = 'chart@params@type@buying';
  25.     public const CHART_PARAMS_ALLOCATION = 'chart@params@group-by@allocation';
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement