maglnet/smarty-module

Smarty template engine module for Laminas 3

Maintainers

👁 maglnet

Package info

github.com/maglnet/SmartyModule

pkg:composer/maglnet/smarty-module

Statistics

Installs: 36 228

Dependents: 1

Suggesters: 0

Stars: 0

2.4.0 2023-12-16 11:11 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 1f75b18888554e3976defac69c7b4f461274cc79

  • Matthias Glaub <magl.woop@magl.net>
  • Murga Nikolay <work.woop@murga.kiev.ua>
  • Sebastian Hopfe <nusphere83.woop@gmail.com>

smartymoduleviewlaminas

This package is auto-updated.

Last update: 2026-06-16 16:44:42 UTC


README

SmartyModule is a module that integrates the Smarty templating engine with Laminas.

Installation

Composer

  1. Add "maglnet/smarty-module": "^2.0" to your composer.json file and run composer update.
  2. Add SmartyModule to your config/application.config.php file under the modules key.

Configuration

Change you Application config like this:

...
'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',
 ),
),
...

Aditional info about view manager: Laminas\View.