該主題支持參考ThinkPHP3.2,因很多網友呼籲,官方仍未推出支持模板主題的更新,我自己修改代碼,完美支持主題
該主題支持參考ThinkPHP3.2,因很多網友呼籲,官方仍未推出支持模板主題的更新,我自己修改程式碼,完美支援主題
請參考tpadmin文件http://www.kancloud.cn/yuan1994/tpadmin/220597
tpadmin完美支援主題設定與切換,github倉庫:https://github.com/yuan1994/tpadmin/
線上體驗:http://tpadmin.demo.tianpian.net.cn 帳號:admin,密碼:123456
原文網址:http://www.thinkphp.cn/code/2411.html
使用方法
在控制器裡模板輸出時加上theme方法://繼承thinkController控制器時<br>
return $this->theme('blue')->fetch(); <br>
//或<br>
$this->theme('blue')->display(); <br>
<br>
//沒有繼承thinkController控制器時<br>
$view = thinkView();<br>
return $view->theme('blue')->fetch();<br>
//或<br>
$view->theme('blue')->display(); <br>
<br>
//全域設定預設模板主題<br>
//在config.php設定檔裡加上<br>
'template' => [<br>
//預設主題<br>
'default_theme' => 'blue'<br>
],
主題為空時表示不使用主題,不使用主題時view模板文件路徑和以前一樣,例如AdminGroup的模板文件在view/admin_group/,使用blue主題時,模板文件在view/blue/admin_group/,使用red主題時,範本檔案在view/red/admin_group/*
官方程式碼修改
thinkphp/library/think/Controller.php 第147行: /**<br>
* 設定範本主題<br>
* tianpian <tianpian0805><br>
* @access protected<br>
* @param string $theme<br>
* @return $this<br>
*/<br>
protected function theme($theme = ''){<br>
$this->view->theme($theme);<br>
return $this;<br>
}</tianpian0805>
thinkphp/library/think/View.php 第171行: /**<br>
* 設定範本主題<br>
* tianpian <tianpian0805><br>
* @access public<br>
* @param string $theme 主題名稱<br>
* @return $this<br>
*/<br>
public function theme($theme = ''){<br>
$this->config('default_theme',$theme);<br>
return $this;<br>
}</tianpian0805>
thinkphp/library/think/view/driver/Think.php 第35行和第131行:(如果使用其他模板引擎驅動,請參考該文件修改)//第35行<br>
// 模板主題 tianpian <tianpian0805><br>
'default_theme' => '',<br>
<br>
//第131行:<br>
//模板主題 tianpian <tianpian0805><br>
if ($this->config['default_theme']){<br>
$template = $this->config['default_theme'] . DS . $template;<br>
}</tianpian0805></tianpian0805>
注意
檔案修改可能會導致錯位,請使用tpadmin管理背景提供的來源碼