How to generate links in templates
- simPod
- Member | 383
I have the same issue as the guy here https://forum.nette.org/…y-componenty#…
I followed the thread, docs and https://phpfashion.com/…lech-a-nette
I don't want any magic so I went with LatteEngine
which is the
least magical (it has this
though Nette\Bridges\ApplicationLatte\UIMacros::install($latte->getCompiler());
meh)
and I'm getting
Undefined property: stdClass::$uiControl
This is generated when renderToString()
is called:
There's no uiControl
registered on global though.
I expected
\Nette\Bridges\ApplicationLatte\LatteFactory::create()
to give me
fully working latte renderer.
So I noticed there's TemplateFactory
that requires
UI\Control
instance and internally setups LatteEngine properly.
I've created this abomination that can be used only from Control (presenters etc.).
I can't use Template because it cannot be rendered to string. Is there's a way to render latte properly using OOP?
- Rick Strafy
- Nette Blogger | 81
Hi, try this, use Nette\Bridges\ApplicationLatte\LatteFactory
and Nette\Application\LinkGenerator
from DI and then
and you can use that to render templates to string, for instance
It can be used outside of controls/presenters.
EmailTemplate extends Nette\Bridges\ApplicationLatte\Template
, that
way you can have strict typed templates
Last edited by Rick Strafy (2021-07-31 14:59)
- Marek Bartoš
- Nette Blogger | 1297
I would go with something like this to not loose functionality of TemplateFactory, most importantly all the macros and filters from outside of Nette
Last edited by Marek Bartoš (2021-07-31 13:56)