ngyuki / zf2-smarty
Smarty module for Zend Framework 2
dev-master
2015-04-17 05:45 UTC
Requires
- php: >=5.3.3
- smarty/smarty: 3.*
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-11 01:43:29 UTC
README
Installation
Copy config/smarty.global.php to your config/autoload/ directory.
$ cp vendor/ngyuki/zf2-smarty/config/smarty.global.php config/autoload/
Fix config/autoload/smarty.global.php
<?php return array( 'smarty' => array( // ... ), );
Add ZendSmarty
in your application.config.php
<?php return array( 'modules' => array( 'Application', 'ZendSmarty', // this is it! ), // ... );
Using ZF2 View Helpers
{* simple with echo (not support method chain) *}
{url bar [id => 12345]}
{* simple without echo (not support method chain) *}
{do headTitle "Index Page"}
{* method chain *}
{$this->headTitle("ZF2 Smarty")->setSeparator(' - ') nofilter}