Hi all,
i'm using $this->view->render to render some VOLT templates and store the result in a file later. All works fine but i'm getting in trouble with macros now because VOLT causes an exception if i call multiple times render on the template which contains the macro definition. Off course i can move the declaration in a separate template file but i'm looking for a way to avoid this.
I've even tried with a new view instance with
$this->di->get('view')->render
but even in this case Phalcon complains about double declaration. Can i render a template independently from others with macros available just during that render/file and than discarded?
Thanks very much Gianks