Blame view

app/library/App/Constants/AclRoles.php 339 Bytes
15479603   Alex Savenko   initialize
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  
  namespace App\Constants;
  
  class AclRoles
  {
      const UNAUTHORIZED = 'Unauthorized';
      const AUTHORIZED = 'Authorized';
      const USER = 'User';
      const MANAGER = 'Manager';
      const ADMINISTRATOR = 'Administrator';
  
      const ALL_ROLES = [self::UNAUTHORIZED, self::AUTHORIZED, self::USER, self::MANAGER, self::ADMINISTRATOR];
  }