Change admin layout in CakePHP

后端 未结 4 1414
旧时难觅i
旧时难觅i 2021-02-15 09:17

I am working in cakephp, and I have the following two lines in my /app/config/routes.php file:

/**
 * ...and setup admin routing
 */
 Router::connect(\'/admin/:c         


        
4条回答
  •  一向
    一向 (楼主)
    2021-02-15 10:09

    the approaches above are good but if you are looking to change the layout for every page when logged in you might try the following using Auth Component

    function beforeFilter() {
        if ($this->Auth->user()) {
            $this->layout = 'admin';
        }
    }
    

提交回复
热议问题