Files
archived-web-pecl/include/twig.inc.php
2012-07-26 10:26:25 +02:00

11 lines
338 B
PHP

<?php
require_once __DIR__ . '/../vendor/twig/twig/lib/Twig/Autoloader.php';
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem(realpath(__DIR__ . '/../templates/public'));
$twig = new Twig_Environment($loader, array(
'cache' => realpath(__DIR__ . '/../cache'),
'charset' => 'utf-8',
'auto_reload' => true
));