| 1: | <?php |
| 2: | |
| 3: | namespace Aurora\Modules\Contacts\Enums; |
| 4: | |
| 5: | class StorageType extends \Aurora\System\Enums\AbstractEnumeration |
| 6: | { |
| 7: | public const Personal = 'personal'; |
| 8: | public const Collected = 'collected'; |
| 9: | public const Team = 'team'; |
| 10: | public const Shared = 'shared'; |
| 11: | public const All = 'all'; |
| 12: | public const AddressBook = 'addressbook'; |
| 13: | |
| 14: | |
| 15: | |
| 16: | |
| 17: | protected $aConsts = [ |
| 18: | 'Personal' => self::Personal, |
| 19: | 'Collected' => self::Collected, |
| 20: | 'Team' => self::Team, |
| 21: | 'Shared' => self::Shared, |
| 22: | 'All' => self::All, |
| 23: | 'AddressBook' => self::AddressBook |
| 24: | ]; |
| 25: | } |
| 26: | |