gkralik/zf3-smarty-module

Laminas / ZF3 module providing a Smarty rendering strategy

2.4.0 2022-05-19 09:09 UTC

This package is auto-updated.

Last update: 2024-04-19 13:28:14 UTC


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')}