Add function to render a latte file
- mrcosgrove
- Member | 11
I am trying to add a function to latte that includes a latte file , something like:
$this->template->addFunction(‘hello’, function ($hellotext) {
return “{include ‘test.latte’, hello: $hellotext}”;
});
this code will just render the text as is instead of including the file. Is there a way get this code to actually include the file and render it?
- nightfish
- Member | 517
@mrcosgrove Well, I suppose you could try to call Latte this way:
$this->template->addFunction('hello', function ($hellotext) {
$latte = new Latte\Engine; // or use latteFactory
$latte->setTempDirectory('/path/to/tempdir');
return $latte->renderToString('test.latte', ['hello' => $hellotext]);
});
You can also read templates from strings – see docs
Last edited by nightfish (2022-12-17 20:28)