Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to render Twig template from database in symfony2

I'm working on application written in symfony2 and I want to send email after some action/event... the problem is, that the users can define something like "email templates" which are stores in db like simple string, for example: "This is some email from {{ user }}" and I need to render body for that email which should use that template...

In symfony documentation from this link: https://symfony.com/doc/2.0/cookbook/email/email.html#sending-emails the method for render view is $this->renderView and it expects the path to file such as "bundle:controller:file.html.twig", but my template is simple string from database...

How can I render it?

like image 622
Karol F Avatar asked Nov 18 '11 20:11

Karol F


People also ask

Is Twig a template engine?

Twig is a template engine for the PHP programming language.

Is Twig a Symfony?

Twig is a PHP template engine. It was created by Symfony developers. Twig files have the extension of . html.

What is Twig extension?

File created by Twig, a PHP optimizing template engine; contains a template that will be generated into a specific final format, such as a HTML, JavaScript, XML, or CSS based file; the twig extension determines what engine should be used to create the final format whether it's the Twig or PHP engine.


2 Answers

Twig_Loader_String is deprecated and was always designed for internal use anyway. The usage of this loader is strongly discouraged.

From the API doc:

This loader should NEVER be used. It only exists for Twig internal purposes. When using this loader with a cache mechanism, you should know that a new cache key is generated each time a template content "changes" (the cache key being the source code of the template). If you don't want to see your cache grows out of control, you need to take care of clearing the old cache file by yourself.

Also check out this issue: https://github.com/symfony/symfony/issues/10865


The best way I know to load a template from a String source are:

From a controller:

$template = $this->get('twig')->createTemplate('Hello {{ name }}'); $template->render(array('name'=>'World')); 

as described here: http://twig.sensiolabs.org/doc/recipes.html#loading-a-template-from-a-string

From a twig template:

{{ include(template_from_string("Hello {{ name }}", {'name' : 'Peter'})) }} 

as described here: http://twig.sensiolabs.org/doc/functions/template_from_string.html

Note, that the 'template_from_string' - function is not available by default and needs to be loaded. In symfony you would do this by adding a new service:

# services.yml services:     appbundle.twig.extension.string:         class: Twig_Extension_StringLoader         tags:             - { name: 'twig.extension' } 
like image 73
Atan Avatar answered Sep 28 '22 06:09

Atan


This should work. Replace "Hello {{ name }}" with your template text, and fill the array that is passed into the render function with any variables that you need.

$env = new \Twig_Environment(new \Twig_Loader_String()); echo $env->render(   "Hello {{ name }}",   array("name" => "World") ); 
like image 39
adavea Avatar answered Sep 28 '22 07:09

adavea