PHP code example of amberovsky / zf2-twig
1. Go to this page and download the library: Download amberovsky/zf2-twig library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
amberovsky / zf2-twig example snippets
// in module configuration or autoload override
return array(
'zfctwig' => array(
'extensions' => array(
// an extension that uses no key
'My\Custom\Extension',
// an extension with a key so that you can remove it from another module
'my_custom_extension' => 'My\Custom\Extension'
)
)
);
// in module configuration or autoload override
return array(
'zfctwig' => array(
'loaders' => array(
'MyTwigFilesystemLoader'
)
)
);
// in some module
public function getServiceConfiguration()
{
return array(
'factories' => array(
'MyTwigFilesystemLoader' => function($sm) {
return new \Twig_Loader_Filesystem('my/custom/twig/path');
}
)
);
}