mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
14 lines
542 B
PHP
14 lines
542 B
PHP
<?php
|
|
|
|
require_once __DIR__.'/../src/Fenom.php';
|
|
require_once __DIR__.'/../tests/tools.php';
|
|
|
|
\Fenom::registerAutoload();
|
|
|
|
$fenom = Fenom::factory(__DIR__.'/templates', __DIR__.'/compiled');
|
|
$fenom->setOptions(Fenom::AUTO_RELOAD | Fenom::FORCE_COMPILE);
|
|
$fenom->addAccessorSmart('g', 'App::$q->get', Fenom::ACCESSOR_CALL);
|
|
var_dump($fenom->compileCode('{$.g("env")}')->getBody());
|
|
//var_dump($fenom->compile("bug158/main.tpl", [])->getTemplateCode());
|
|
//var_dump($fenom->display("bug158/main.tpl", []));
|
|
// $fenom->getTemplate("problem.tpl");
|