Kohana 启动控制器

发布于 2024-11-18 10:16:15 字数 77 浏览 0 评论 0原文

我需要检查每个页面上的用户有效性。我是否需要一个控制器来在每个页面上检查这一点,或者有更简单的方法吗?我需要创建一个每次加载的基本控制器吗?

I need to have a check for user validity on every page. Do I need a controller that checks this on every page or there is a simpler way of doing it? Do I need to create a base controller that is loaded each time?

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

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

发布评论

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

评论(1

ら栖息 2024-11-25 10:16:15

通常就是这样做的。只需扩展一个基类来检查 before 方法的有效性。

下面是一个例子:

classes/controller/base.php:

class Controller_Base extends Controller
{
    public function before()
    {
        //Do your checks here
    }
}

classes/controller/welcome.php:

class Controller_Welcome extends Controller_Base
{
    public function action_index()
    {
        //Do your normal thing here
    }
}

在基本控制器的 before 方法中,可以检查登录情况用户和权限,例如显示一条错误消息,表明他们无权访问该页面。

That is how it usually is done. Just extend a base class which checks the validity on the before method.

Here is an example:

classes/controller/base.php:

class Controller_Base extends Controller
{
    public function before()
    {
        //Do your checks here
    }
}

classes/controller/welcome.php:

class Controller_Welcome extends Controller_Base
{
    public function action_index()
    {
        //Do your normal thing here
    }
}

In the before method of the base controller, you can check the signed in user and permissions, and for example show an error message that they don't have access to that page.

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