CakePHP - 仅当用户(ARO)具有页面权限时才显示链接?

发布于 2024-11-14 09:26:01 字数 233 浏览 4 评论 0原文

我正在使用 CakePHP 的 ACL 组件来管理我的应用程序的权限。我有大约三个不同的“角色”,具有不同的访问级别。我自始至终都使用 HTML 帮助器来创建指向不同页面的链接。我希望链接仅在用户有权访问该页面时显示。

我想,明显但麻烦的方法是为包含权限的视图设置变量,并根据这些变量显示链接。

我想知道是否有更好的方法 - 也许是一个扩展 HTML 帮助程序以提供首先检查权限的方法的帮助程序?

谢谢。

I'm using CakePHP's ACL component to manage permissions for my app. I have about three different "Roles", with different access levels. I am using the HTML helper throughout, to create links to different pages. I would like links to only display if the user has permission to access the page.

The obvious but cumbersome approach, I guess, would be to set variables to the view containing permissions and show links based on these variables.

I was wondering if there is a better way - perhaps a helper that extends the HTML helper to provide a method that checks permissions first?

Thanks.

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

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

发布评论

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

评论(1

初相遇 2024-11-21 09:26:01

我不建议使用具有此类功能的助手。

这是因为这个助手必须检查您在该页面上使用的每个链接。这会减慢您的应用程序。

所以我认为最好的方法就是你的方法。设置登录权限并相应地显示您的链接。
我们也在我们的应用程序中使用它,它运行得非常好且快速。

I wouldn't recommend to use a helper which has this sort of functionality.

This is because this helper would have to do the checking on every link you use on that page. This would slow down your application.

So I think the best approach is your approach. Set the permission on login and display your links accordingly.
We are using this in our application, too, and it works very good and fast.

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