转载,略有改动
ThinkPHP 3.2.x多个模块使用公共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.C('LAYOUT_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路径'
例如LAYOUT_PATH’ => ‘./apps/Admin/View/’,
转载于:https://my.oschina.net/u/1424662/blog/483982
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/109384.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...