Kohana 3.1 Controllers in Sub Folders within the Controller Folder

旧城冷巷雨未停 提交于 2019-12-25 03:55:52

问题


I need to create sub folders for my controllers for ease of managing and troubleshooting. I need to have controller/, controller/admin, controller/user/ kind of setup. I have tried creating the controller in controller/admin/createuser from http://mydomain/admin/createuser but that does not seem to work.

Anyone with tips on this?

Do I need custom routing?


回答1:


You would need to set up a Route to catch /admin/ and look for an 'directory' called admin rather than a 'controller file' called admin. Then your 'createuser' param would ideally be in a 'user' controller, so 'createuser' would be an action in your users controller


Note the 'directory' declaration - application/bootstrap.php

Route::set('admin', 'admin(/<controller>(/<action>(/<id>)))')
  ->defaults(array(
    'directory' => 'admin',
    'controller' => 'user',
    'action' => 'index',
));

Then in your controller you need to use underscores for each directory '/' in the Class name - application/classes/controller/admin/user.php

class Controller_Admin_User extends Controller {

  public function action_createuser()
  {
    ..your code
  }


来源:https://stackoverflow.com/questions/6858640/kohana-3-1-controllers-in-sub-folders-within-the-controller-folder

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!