Kohana 基于角色的多个默认控制器

发布于 2024-11-26 01:25:59 字数 552 浏览 0 评论 0原文

我想在应用程序的根 url 上为不同角色的用户显示完全不同的布局。我目前正在使用 bootstrap.php 中的以下几行来实现此目的。

if (Auth::instance()->logged_in()){
  Route::set('default', '(<controller>(/<action>(/<id>)))')
   ->defaults(array('controller' => 'profile','action'     => 'index',));
}    
else{ 
 Route::set('default', '(<controller>(/<action>(/<id>)))')
  ->defaults(array('controller' => 'welcome','action'     => 'index',));
}

在 Kohana 中实现这一目标的最佳实践是什么?是否可以在 bootstrap.php 中为不同角色添加更多行?

谢谢

I want to display completely different layouts for users in different roles on the root url of my application. I am currently achieving this using the following lines in bootstrap.php.

if (Auth::instance()->logged_in()){
  Route::set('default', '(<controller>(/<action>(/<id>)))')
   ->defaults(array('controller' => 'profile','action'     => 'index',));
}    
else{ 
 Route::set('default', '(<controller>(/<action>(/<id>)))')
  ->defaults(array('controller' => 'welcome','action'     => 'index',));
}

What is the best practice to achieve this in Kohana? Is it ok to add more lines for different roles in bootstrap.php.

Thanks

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

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

发布评论

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

评论(3

黑白记忆 2024-12-03 01:25:59

您应该考虑使用 lambdacallback-route-logic

如果允许您动态修改请求的 URL,比在 bootstrap.php 中编写内容更简洁

you should consider using lambdacallback-route-logic

If allows you to modify the requested URL dynamically and much more cleaner than writing something in bootstrap.php

末骤雨初歇 2024-12-03 01:25:59

为什么不在一个控制器中更改基本模板(并使用相同的路由)?我认为,无论用户是否登录,您的控制器代码都不会有所不同。

Why dont change basic template in ONE controller (and using the same route)? I think, your controller code doesn't differs if user logged in or not.

陌上青苔 2024-12-03 01:25:59

我这样做:
创建一个抽象类 Controller_Rolebased,在 before() 方法中您可以实现角色检查。
然后例如:

class Controller_Profile extends Controller_Rolebased
{
    protected $_accept_roles = array('user', 'admin'); // this array Controller_Rolebased class will use in before method.

I do it like this:
Create an abstract class Controller_Rolebased where in before() method you can implement Role checking.
And then for example:

class Controller_Profile extends Controller_Rolebased
{
    protected $_accept_roles = array('user', 'admin'); // this array Controller_Rolebased class will use in before method.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文