cakePHP:关于ACL的问题

发布于 2024-09-18 10:45:59 字数 195 浏览 4 评论 0原文

我编码 $this->Auth->allowedActions = array('index') 我使用插件民意调查,在操作索引中进行评级。 当我输入操作索引时,身份验证不允许,因为插件轮询的操作、评级不允许。

如何允许插件轮询、评级等操作在控制器中公开(我不想在插件控制器中允许)。

I code $this->Auth->allowedActions = array('index')
I use plugin poll, rating in action index .
When I enter action index, Auth dont allow because action of plugin poll,rating dont permit.

How to allow action of plugins poll,rating,...to public in controller (I dont want allow in controller of plugin ).

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

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

发布评论

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

评论(1

心房敞 2024-09-25 10:45:59

您可以在 AppController 中设置它:

function beforeFilter(){
    if($this->plugin == 'poll'){
        $this->Auth->allowedActions = array('*');
    }
}

You can set it in AppController:

function beforeFilter(){
    if($this->plugin == 'poll'){
        $this->Auth->allowedActions = array('*');
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文