gkralik / zf3-smarty-module
Laminas / ZF3 module providing a Smarty rendering strategy
Installs: 5 259
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.1 || ^8.0 || ^8.1
- laminas/laminas-dependency-plugin: ^2.0
- laminas/laminas-servicemanager: ^3.0
- laminas/laminas-view: ^2.0
- smarty/smarty: ^3.1 || ^4.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.18
- phpstan/phpstan: ^0.12.78
README
This is a module for integrating the Smarty template engine with Laminas or Zend Framework 3.
Version 2.x supports Laminas.
Version 1.x supports Zend Framework 3. See branch 1.x
Installation with Composer
Installing via Composer is the only supported method.
composer require gkralik/zf3-smarty-module:2.0.0
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 ZF3 is supported. Just call the view helper as you would do in a PHTML template:
{$this->doctype()} {$this->basePath('some/path')}