Kohana 基于角色的多个默认控制器
我想在应用程序的根 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该考虑使用 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
为什么不在一个控制器中更改基本模板(并使用相同的路由)?我认为,无论用户是否登录,您的控制器代码都不会有所不同。
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.
我这样做:
创建一个抽象类 Controller_Rolebased,在 before() 方法中您可以实现角色检查。
然后例如:
I do it like this:
Create an abstract class Controller_Rolebased where in before() method you can implement Role checking.
And then for example: