system/security/RIGHTS.php
2013-04-21 18:12:13 +02:00

13 lines
245 B
PHP

<?php
namespace SYSTEM\SECURITY;
class RIGHTS {
//Never use anything with 0 in php
const SYS_DONOTUSE = 0;
//System Administrator Interface
const SYS_SAI = 1;
//Reserve first 1000 ids.
const RESERVED_SYS_0_999 = 999;
}