Twig is a modern template engine for PHP, developed and used by default in the Symfony2 PHP framework. It’s both designer and developer friendly by sticking to PHP’s principles and adding functionality useful for templating environments. For more details refer: Twig Documentation Twig Download
11
votes
3answers
5k views
How to check for null in Twig?
What construct should I use to check whether a value is NULL in a Twig template?
8
votes
3answers
2k views
How to var_dump variables in twig templates?
View layer pattern where you only present what you have been given is fine and all, but how do you know what is available? Is there a "list all defined variables" functionality in TWIG? Is there a way ...
6
votes
1answer
1k views
Symfony2 - convert datetime to string in a twig template
One of my fields in one of my entities is a "datetime" variable.
How can I convert this field into a string to render in a browser?
Here is a code snippet:
{% for game in games %}
...
6
votes
2answers
434 views
How to identify if a user is being impersonated in Symfony2?
In an application built with Symfony2 we want superadmins to be able to impersonate other users. This is easily done by giving the superadmin user the ROLE_ALLOWED_TO_SWITCH role. The switching is ...
6
votes
1answer
2k views
Symfony2 Twig extension
I have some problem to implement twig extension. I need to create my own filter (a substr filter). So I have thought to use twig extension.
I created a folder named "Extension" on ...
5
votes
1answer
92 views
Extending all templates in a bundle from the controller
I have a lot of templates in a bundle and they all extend the same layout.html.twig. Rather than have to define:
{% extends 'MyBundle::layout.html.twig' %}
at the top of every template, is there a ...
5
votes
1answer
392 views
How to access class constants in Twig?
I have a few class constants in my entity class, e.g.:
class Entity {
const TYPE_PERSON = 0;
const TYPE_COMPANY = 1;
}
In normal PHP I often do if($var == Entity::TYPE_PERSON) and I would ...
5
votes
3answers
2k views
Twig forgets array-keys
I have a weird problem with twig in Symfony2. I am using the following array:
[days] => Array
(
[1] => Array
(
[money] => 9
)
[2] ...
5
votes
2answers
780 views
add active class to link with sf2 and twig
following simple code:
<li><a href="{{ path('_list') }}">List</a></li>
is there a simple way to add an class="active" if the current page matches the _list route?
using the ...
4
votes
2answers
397 views
Symfony2 Assetic + Twig Template JavaScript Inheritance
My problem:
I have 3 templates:
main.html.twig (main layout file)
layout.html.twig (a bundle specific layout override which contains some bundle specific JS tags)
create.html.twig (a page specific ...
4
votes
1answer
135 views
Check if {{ path() }} is current {{ path() }} in Symfony2
How do I check if the current page is this path:
{{ path('someNamePath') }}
I want to set a css class to the <a> element or possible remove it altogether, e.g.
{% if ...
4
votes
1answer
364 views
Multilanguage in Symfony2 and Twig
how in Symfony create multilanguage page? In Symfony 1 in Jobeet tutorial is this very good describet, but now on symfony.com i dont show somethings of translated page.
In symfony 1.4 is echo ...
4
votes
1answer
226 views
Use PHP function in TWIG?
In PHP templates I can use php functions, for example:
foreach ($users as $user){
echo someFunction($user->getName());
}
How can I make it in TWIG?
{% for user in users %}
* {{ user.name ...
4
votes
2answers
274 views
Twig extend template on condition
I use Symfony 2 with Twig and my question is pretty straightforward:
In a view I want to extend one of the layouts based on a variable. If the variable is false I want to extend ...
4
votes
1answer
946 views
Generating routes in javascript with Twig and Symfony2
Quite odd problem, sorry for asking, i'm quite new to Symfony/Twig. My route requires a mandatory region_id paramenter:
ajax_provinces_by_region:
pattern: /ajax/region/{region_id}/provinces
...
4
votes
2answers
665 views
Creating a Symfony2 Form Theme - Fieldset and List style
I am using symfony2. I am trying to override the default div style form blocks in twig.
First, does any have or know of an available implementation of the fieldset and list (ul -> li) approach?
4
votes
1answer
189 views
Twig “trans” tag broke after upgrading to 1.0
I'm updating a PHP system using Twig with I18n extension to the latest twig 1.0.0-77.
The problem is that Twig can't find Twig_Extension_I18n, when I move it and related files to the appropriate ...
4
votes
1answer
1k views
twig - pass function into template
Currently I place my function in a class and pass an instance of this class into template and call my required function as a class method.
{{ unneededclass.blah() }}
I need to do like below
{{ ...
3
votes
2answers
114 views
Symfony 2 append Javascripts, just one request
I have a layout.html.twig with:
{% block js %}
{% javascripts
'Resources/public/js/jquery/jquery-1.7.1.min.js'
'Resources/public/js/jquery/jquery.namespace.js'
...
3
votes
1answer
95 views
Tags vs functions in twig extensions
I am currently writing some extensions in twig, but I am having trouble deciding why a certain extension should be implemented as a tag or a function.
Twig's documentation lists the following 2 ...
3
votes
1answer
191 views
What's wrong with twig?
This is my first steps in symfony 2.0, so please apologise a basic question. I try to extend automaticaly generated crud code. To postcontroller I've added:
/**
* Prints a Post entity.
...
3
votes
2answers
263 views
Twig - How to render a tree
I would like to render a tree with an undetermined depth (children of children of children etc...). I need to loop through the array recursively, how can I do this in Twig?
Regards,
Ron
3
votes
1answer
317 views
Symfony 2 load different template depending on user agent properties
Is it possible (and how) to
determine if a user is using a mobile device
force symfony 2 to load different template in that case
(and fall back the default html template)
or determine screen ...
3
votes
2answers
151 views
Accessing twig template variables from php
Is it possible to access every variable defined in a twig template from php?
Eg:
Template:
...
{% set foo = 'foo' %}
...
And from PHP:
echo $template->foo
Or something like that.
3
votes
3answers
237 views
Elegant foreach - else construct in Razor
A lot of templating engines have a special kind of syntax that is a combination of foreach and else. Basically the else clause is executed when the foreach loop doesn't have any iterations. This can ...
3
votes
1answer
165 views
How to register new Twig tag in Symfony2 bundle?
I found tons of articles how to register Twig filters in Symfony2, but none about actual tags. There's a tutorial for creating tags for Twig itself, but I'm having trouble incorporating it into my ...
3
votes
1answer
177 views
How to switch from div to table layout for Symfony2 forms?
I see here that there is a possible twig template for rendering a form into table based html. I am wondering though how to change the default layout for one form, from the default div based html to ...
3
votes
2answers
746 views
Twig: in_array or similar possible within if statement?
I am using Twig as templating engine and I am really loving it. However, now I have run in a situation which definitely mustbe accomplishable in a simpler way than I have found.
What I have right now ...
3
votes
1answer
270 views
How to translate with pluralization in Twig?
How can I translate the current hardcoded text with the key from the language file (messages.en.xliff) ?
I try to use the {% trans %}..{% endtrans %} tag, but I didn't success
(Symfony2 return this ...
3
votes
4answers
270 views
How do I access a member in Twig determined by a variable?
I want to do the following code:
{% set rooms = [] %}
{% set opts = {
'hasStudio': 'Studio',
'has1Bed': '1 BR',
'has2Bed': '2 BR',
'has3Bed': '3 BR',
'has4BedPlus': '4 BR+'
}
%}
...
3
votes
1answer
370 views
Twig asset with CDN using Symfony 2
For performance reasons, I want to deliver some of my files from a CDN.
Is it possible to configure the "asset" helper such that it automaticly sets something like "static1.xxxx.com/css/main.css" ...
3
votes
2answers
434 views
symfony2 form templating
I want to render a form. HTML for a field row should be like this:
<li class="text">
<label for="fieldname">
<div>
<input type="text" ... />
</div>
</li>
...
3
votes
4answers
673 views
Extending or including - what is better in Twig?
Why Twig documentation recommends to use extending rather than including? Symfony 2 documentation says because "In Symfony2, we like to think about this problem differently: a template can be ...
3
votes
1answer
964 views
How do you check if an object exists in the Twig templating engine in Symfony2?
I have a multidimensional array where some objects exist and others don't. I keep getting a
Method "code" for object "stdClass" does not exist in...?
The code I am using in my template is:
{% for ...
3
votes
2answers
91 views
Expose php templating engine to user?
I want to build a report builder into a web app of mine. The user collects data through other parts of the site, and then should be able to generate "reports" in which he/she can use said data in a ...
3
votes
1answer
474 views
How to embed stylesheets with Assetic based on a value in the session
I want to embed different Stylesheet files with assetic in a twig template of a Symfony2 project. The used stylesheet depends on the theme setting of the user.
I used
{% stylesheets
...
3
votes
1answer
527 views
Templating with Twig - permanent access to a variable in all my templates
I've just started looking into Twig and I'm wondering how I would accomplish the following.
I have a variable $logged_in that I need to have access to in every single page on my site, I was hoping ...
2
votes
1answer
43 views
Globally access to the user object in templates
I have seen so far a Twig method to know the user privilege
{% if is_granted('ROLE_USER') %}
but nothing about getting authentified user informations, without passing the object in every single ...
2
votes
1answer
104 views
Silex micro-framework and Twig: enable debug
My question: How do I permit use of debug in Twig templates within Silex?
I'm playing around with the Silex micro-framework (a PHP framework that leverages Symfony).
When using the Twig template ...
2
votes
1answer
117 views
Twig: render vs include
I am creating an online store.
I have a performance problem if I use the twig function "render" instead of "include".
Here is the code that displays a product catalog:
catalog controller:
<?php
...
2
votes
1answer
58 views
@route annotation overriding another route
i have a staticController with actions for the following example links:
/register
/imprint
this is the example annotation:
/**
*@Route("/imprint", name="user.static.imprint")
*/
And now i have ...
2
votes
0answers
254 views
Dynamic CSS/Javascript in Twig using Silex/SilexExtensions and Assetic
What I want to do: Get CSS properties from a database and dump it into a less file. Then apply a less/yui compress-filter on it and dump the output in my twig template.
Let me just come to the ...
2
votes
2answers
412 views
Extending language definitions (for code highlighting) in notepad++
I've been doing development in TWIG lately. It is an html templating language that is very simple and robust.
I've set notepad++ to automatically treat .twig files as html. This is ok, but I don't ...
2
votes
1answer
225 views
Symfony2 Twig url() https
I need to generate an absolute URL that will use the secure HTTP protocol since it's a payment page template used by a third party payment gateway solution that requires every single element on the ...
2
votes
1answer
250 views
Symfony2 + Twig: Using an entity type field to store unsaved entities
I've spent a while looking through the symfony2 docs trying to find a suitable method of doing what I need to do, maybe I'm looking in the wrong place.
Basically, I have an entity called Album, which ...
2
votes
1answer
345 views
Symfony 2: route defined in annotation not visible from by Twig's path()
I encountered a problem, have the following:
DefaultController with a simple action:
/**
* @Route("/register")
* @Template
*/
public function indexAction() {
$oForm = $this->createForm(new ...
2
votes
1answer
416 views
Symfony2: preventing radio widgets from rendering labels
I'm attempting to customise the form layouts using Twig in symfony2. I am aiming to render a radio input that looks something like this...
<label class=" required">Label name</label>
...
2
votes
2answers
277 views
Flash-Messages in Symfony2 doesen't seem to work in my twig-template
i want to add support for flash messages on our pages. I implemented
this by following the documentation found here:
http://symfony.com/doc/current/book/controller.html#index-13
i added the ...
2
votes
1answer
516 views
Using Twig for dynamic Javascript files
I'm working on a kind of dashboard mini site that has blocks with a certain functionality. Using symfony2 I have a dedicated route /instagram that gets an html fragment that shows all the images taken ...
2
votes
1answer
458 views
Symfony2 Session data outside of controller
Hi I am trying to get the logged in user while I am saving an object in a propel model class.
I see from all the docs on symfony2 that you get the user by:
...