|
发表于 2014-9-25 11:17:01
|
显示全部楼层
你看论坛项目DiliCMS
他有做修改views路径
要在core做继承CI_Loader
PHP复制代码
class Dili_Loader extends CI_Loader
{
/**
* 构造函数
*
* @access public
* @return void
*/
public function __construct ()
{
parent ::__construct ();
}
// ------------------------------------------------------------------------
/**
* 切换视图路径
*
* @access public
* @return void
*/
public function switch_theme ($theme = 'default')
{
$this->_ci_view_paths = array(APPPATH . 'templates/' . $theme . '/' => TRUE);
}
// ------------------------------------------------------------------------
}
复制代码 |
|