1

我的 codeigniter 应用程序由一个管理面板(使用 bonfire 开发)和一个显示不同产品的前端应用程序组成。管理面板运行良好。但我想在我的前端应用程序中使用篝火的篝火资产管理功能(比如将所有 css 和 jss 文件合并为一个,缩小)。

我有三个不同的视图(header.php、body.php 和 footer.php)文件,我想通过扩展 bonfire 的管理控制器来呈现它。

    //Via codeigniter it can be achieved like this
    class Home extends CI_Controller
    {
        public function index()
        {
             //By using codeigniter load view 
             $this->load->view('header');
             $this->load->view('body');
             $this->load->view('footer');
        }
    }

        //Extending Bonfire Admin controller 
        class Home extends Admin_Controller
        {
            public function index()
            {
                 //How to do this ?
            }
        }

有关篝火布局的更多信息http://cibonfire.com/docs/developer/layouts_and_views

有关篝火资产管理的更多信息http://cibonfire.com/docs/developer/working_with_assets

提前致谢 :)

4

0 回答 0