Home > php教程 > php手册 > body text

ThinkPHP 3.2多个模块使用公共Layout

WBOY
Release: 2016-06-07 11:42:00
Original
1292 people have browsed it

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路径'

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!