cakePHP 中的多前缀路由
我有一个包含 4 个用户的新项目和一些仅允许某些用户执行的任务。
由于用户和任务是固定的,我认为不需要使用 ACL。
我的决定正确吗??
那么我可以为每个用户拥有多个前缀吗?如果是的话,我该如何实现它?
我需要限制用户 B 执行用户 A 的任务,我该如何实现呢???
I have a new project with 4 users and some tasks which is only allowed to certain users.
Since the users and tasks are fixed i thought no need of using ACL.
is my decision is correct??
Then can i have multiple prefix for each users if yes how can i achive it??
I need to restrict the task of user A from user B how can i achive it???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
4个用户也是一个列表。我建议您使用 基于 INI ACL 组件(如果您不需要即时更改权限)。
4 users is also a list. I would suggest you to use the INI-based ACL component if you don't need to change permissions on the fly.
不是特别优雅,但它应该完成工作(在每个相关的 app_controller 中):
Not especially elegant, but it should get the job done (in each relevant app_controller):