00001 <?PHP 00017 define ('DENY', 0); 00018 define ('ALLOW', 1); 00019 define ('ALLOW_OWNER', 2); 00020 00029 class aclService 00030 { 00031 // TODO: conver it to AclService 00032 // TODO: save the data $userAccesses in session 00033 00040 public static function allowAccess($resAction, $module="") 00041 { 00042 return ALLOW; 00043 } 00044 }