maglnet / smarty-module
Laminas 3 的 Smarty 模板引擎模块
2.4.0
2023-12-16 11:11 UTC
Requires
- php: ~8.1.0 || ~8.2.0 || ~8.3.0
- laminas/laminas-eventmanager: ^3.2
- laminas/laminas-servicemanager: ^3.5
- laminas/laminas-view: ^2.11
- smarty/smarty: ~3.1 || ^4.0
Requires (Dev)
- laminas/laminas-i18n: ^2.10
- laminas/laminas-log: ^2.11
- laminas/laminas-modulemanager: ^2.9
- laminas/laminas-mvc: ^3.0
- laminas/laminas-serializer: ^2.9
- phpunit/phpunit: ^10.0
README
SmartyModule 是一个将 Smarty 模板引擎与 Laminas 集成的模块。
安装
Composer
- 将
"maglnet/smarty-module": "^2.0"
添加到您的composer.json
文件中,并运行composer update
。 - 将
SmartyModule
添加到您的config/application.config.php
文件中的 modules 键下。
配置
更改您的应用程序配置如下
...
'view_manager' => array(
'default_suffix' => 'tpl', // <-- new option for path stack resolver
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.tpl',
'application/index/index' => __DIR__ . '/../view/application/index/index.tpl',
'error/404' => __DIR__ . '/../view/error/404.tpl',
'error/index' => __DIR__ . '/../view/error/index.tpl',
),
'smarty' => array(
'error_reporting'=> E_PARSE,
'compile_dir' => 'path/to/compile/dir',
'cache_dir' => 'path/to/cache/dir',
//Other Smarty options
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
'plugin_path_stack' => array(
__DIR__ . '/../smarty-plugins',
),
),
...
关于视图管理器的附加信息: Laminas\View。