dd

ThinkPHP 3.2多个模块使用公共Layout

jerry thinkphp 2015年11月19日 收藏
ThinkPHP 3.2.1多个模块使用公共Layout
文件 ThinkPHP\Library\Think\Template.class.php
第104行
$layoutFile  =  THEME_PATH.C('LAYOUT_NAME').$this->config['template_suffix'];
修改为
$layoutFile  = empty(C('LAYOUT_PATH'))?THEME_PATH.$array['name'].$this->config['template_suffix']:C('LAYOUT_PATH').C('LAYOUT_NAME').$this->config['template_suffix'];
第208行
$layoutFile =   THEME_PATH.$array['name'].$this->config['template_suffix'];
修改为
$layoutFile  = empty(C('LAYOUT_PATH'))?THEME_PATH.$array['name'].$this->config['template_suffix']:C('LAYOUT_PATH').C('LAYOUT_NAME').$this->config['template_suffix'];
在Common模块下的配置文件中设置公共Layout目录 'LAYOUT_PATH'=>'Layout路径'
dd