gkralik/laminas-smarty-module
最新稳定版本:v4.0.0
Composer 安装命令:
composer require gkralik/laminas-smarty-module
包简介
Laminas module providing a Smarty rendering strategy
README 文档
README
This is a module for integrating the Smarty template engine with Laminas.
Based on gkralik/zf3-smarty-module.
Installation with Composer
Installing via Composer is the only supported method.
$ composer require gkralik/laminas-smarty-module:^4.0.0
Add the module to your applications configuration to enable it:
'modules' => [ 'GKralik\SmartyModule', // ... ]
Usage
To enable the Smarty rendering strategy, it must be registered as a strategy with the Laminas ViewManager (eg. in the application's default module configuration):
use GKralik\SmartyModule\Strategy\SmartyStrategy; return [ // ... 'view_manager' => [ 'strategies' => [ /* Register view strategy with the view manager (REQUIRED). */ SmartyStrategy::class, ], ], ];
Important: As of version 4.0.0, this is no longer done automatically.
Configuration
For information on supported options refer to the module config file.
There is also a sample configuration file with all available configuration options.
You can set options for the Smarty engine under the smarty_options configuration key (eg force_compile, etc).
Pay attention to the compile_dir and cache_dir keys. Smarty needs write access to the directories specified there.
Documentation
Using Zend Framework view helpers
Using view helpers of Laminas is supported. Just call the view helper as you would do in a PHTML template:
{$this->doctype()} {$this->basePath('some/path')}
统计信息
- 总下载量: 250
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2024-03-07