fenom/docs/usage.md
2013-06-28 11:53:53 +04:00

379 B

Basic usage

Creating template engine

$fenom = Fenom::factory('/path/to/templates', '/path/to/template/cache', $options);

//or

$fenom = new Fenom(new FSProvider('/path/to/templates'));
$fenom->setCompileDir('/path/to/template/cache');
$fenom->setOptions($options);

Output template result

$fenom->display("template/name.tpl", $vars);