CakePHP 对 ACL 的混淆

发布于 2024-10-13 07:11:18 字数 464 浏览 2 评论 0原文

在 CakePHP 网站上,它显示您将使用 ACL 为用户和用户组创建用户表和组表: http://book.cakephp.org/view/1544/Preparing-our-Application

然而,大多数其他教程(例如 NetTuts)显示创建三个表(除了用户表之外)来使用 ACL : http://net.tutsplus.com /tutorials/php/how-to-use-cakephps-access-control-lists/

两者有什么区别?坦尔斯

On the CakePHP website it shows that you would create a users table and a groups table for users and user groups using ACL: http://book.cakephp.org/view/1544/Preparing-our-Application

However most other tutorials e.g. NetTuts shows creating three tables (in addition to the users table) to use ACL: http://net.tutsplus.com/tutorials/php/how-to-use-cakephps-access-control-lists/

What is the difference between the two? Thanls

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神魇的王 2024-10-20 07:11:18

如果您询问名为 Acos、Aros 和 aros_acos 的额外表,

在两个教程中我们都需要使用这些表。在 cakephp.org 中。有一个名为 初始化 Db Acl 表 的部分,其中他们运行命令来创建这些表。就像在 nettuts 中一样,他们向我们展示了手动创建它。

无论如何,cakePHP 需要 5 个表才能完美运行 ACL。其中 Acos、Aros 和 aros_acos 是 cakePHP 定义的表,用户和组 是用户定义的表。

CakePHP 将用户权限存储为带有 Aros 的树(访问请求对象表示用户)与 Acos 的 hasAndBeongsToMany 关系(访问控制对象表示操作)

if you are asking about the extra tables named Acos,Aros and aros_acos

In both tutorial we need to use these tables.In the cakephp.org. there is a section called Initialize the Db Acl tables where they running a command to create those tables. where as in nettuts they showing us creating it manually.

Any way cakePHP need 5 tables to run the ACL perfectly.In that Acos,Aros and aros_acos are cakePHP defined tables and Users and Groups are user defined tables.

CakePHP is storing the User permissions as a Tree with Aros(Access Request Objects means users) hasAndBeongsToMany relation with Acos (Access Control Objects means actions)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文