roferwoo / tp5-smarty
ThinkPHP5 Smarty Template Driver Support Template Theme
0.0.5
2017-09-06 01:21 UTC
Requires
- php: >=5.4.0
- smarty/smarty: ^3.1
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-09-12 11:04:36 UTC
README
tp5-smarty
ThinkPHP5 Smarty 引擎驱动,支持模板主题与模板布局配置。
安装方法
使用composer安装模版引擎方法:
composer require roferwoo/tp5-smarty
配置参数
在ThinkPHP5的基础上,可添加配置以下参数:
// 模板主题目录
'view_theme' => 'default',
// 模板布局
'page_layout' => [
'header' => 'path/to/header.html', // 或 'no_header' => 1,
'footer' => 'path/to/footer.html', // 或 'no_footer' => 1,
],