好的,我一直在尝试使用'自定义'ACL来处理额外的约束。正常的ACL检查类似于:
if(aclCheck($user, 'edit', 'really_important_value')){
// Allow $user to 'edit' the 'really_important_value'.
} else {
// Deny $user to 'edit' the 'really_important_value'.
}
但是,如果不同的用户对'really_important_value'有不同的界限(用户1可以输入10到50之间的值,用户2可以编辑20到60之间的值) - 这些约束属于哪里?它们被称为约束,边界,属性,参数,规则还是其他什么?我在其他ACL或现有应用程序的任何手册中都找不到任何示例!
感谢您的帮助!