Download the PHP package murganikolay/smarty-module without Composer
On this page you can find all versions of the php package murganikolay/smarty-module. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download murganikolay/smarty-module
More information about murganikolay/smarty-module
Files in murganikolay/smarty-module
Download murganikolay/smarty-module
More information about murganikolay/smarty-module
Files in murganikolay/smarty-module
Vendor murganikolay
Package smarty-module
Short Description Smarty template engine module for Zend Framework 2
License MIT
Homepage https://github.com/MurgaNikolay/SmartyModule
Package smarty-module
Short Description Smarty template engine module for Zend Framework 2
License MIT
Homepage https://github.com/MurgaNikolay/SmartyModule
Please rate this library. Is it a good library?
Informations about the package smarty-module
Welcome to the SmartyModule for Zend Framework 2!
SmartyModule is a module that integrates the Smarty templating engine with Zend Framework 2.
Version: 1.0.0
Istallation
Composer
- Add
"murganikolay/smarty-module": "1.0.0"
to yourcomposer.json
file and run php composer.phar update. - Add SmartyModule to your
config/application.config.php
file under the modules key.
Manual
git clone https://github.com/MurgaNikolay/SmartyModule.git
in tovendor
dir- Put Smarty in to
vendor
dir - Setup autoloader for load Smarty.
- 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',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
...
Aditional info about view manager: Zend\View.
All versions of smarty-module with dependencies
PHP Build Version
Package Version
The package murganikolay/smarty-module contains the following files
Loading the files please wait ....