Twig is a modern template engine for PHP, developed and used by default in the Symfony2 PHP framework.
0
votes
0answers
19 views
Sonata Media Bundle : acces media url
I use the sonata media bundle.
I wonder how I can access the media url in twig.
I just want the url, I do not want to show the media.
Any suggestions?
1
vote
1answer
23 views
Minus In twig block definition
What's the difference between this:
{%block body %}
and that
{%block body -%}
0
votes
0answers
22 views
Defer execution/completion in Twig
I am using Twig separately from the Symfony2 framework, into something smaller rolled to suit my (perceived) needs better. Part of my framework is an asset management library that manages js/css ...
0
votes
1answer
18 views
How get object's method by string in twig
In php I can get object method as:
$methodName="getId";
$obj->{$methodName}();
Is there such features in twig?
UPD: I would like some as :
{% set method='getId' %}
{{ obj[method]() }}
Now I ...
0
votes
0answers
28 views
Define custom method and access it from twig
I have two entities in 1:n relations: Race and Day - a race may have more days. This is the simple model:
Race (id)
Day (id, race_id, is_active, is_deleted)
I want to access the superior one - ...
0
votes
2answers
29 views
variable jquery inside twig template
I'm trying to use a jquery varaible inside a twig template to send by ajax, but I can't access to the jquery variable inside the twig:
My code is:
<script type="text/javascript">
...
0
votes
2answers
45 views
Twig error Item “detailIndex” for “Array” does not exist in
I'm study symfony and want to display a variable in my twig template.
Here is my PHP code:
{% for row in issue.data %}
{{ dump(row) }}
and that what i got on my site:
array(size=5)
...
0
votes
1answer
27 views
Symfony (Silex) radio choice form builder does not render attr
I'm trying to add attributes to my rendered radios
$builder
->add('myRadios', 'choice', array(
'choices' => array(
'one' => 'uno',
'two' => 'due'),
...
0
votes
2answers
43 views
Page stop being rendered without any errors
I'm having a problem with a specific page using PHP + Symfony 2. The page stop being rendered in a specific point, always when a twig template is included with {% include %} tag. Its only happening in ...
2
votes
1answer
31 views
How is Input and Output Sanitization handled in Symfony2+Twig?
I need my users to enter the URL of their personal website in their profile so that other users can see and click on it. I am worried that this could lead to XSS attacks if the output is not sanitized ...
0
votes
1answer
25 views
How can I change symfony2 form fields default options globally?
Is there a way to change default options for form fields globally in symfony2?
More specifically, I want to change the render of ALL datetime fields to use single_text instead of the default choice ...
0
votes
1answer
27 views
Twig Sprintf Gettext
My question refers to this Twig Extension:
https://github.com/deceze/Twig-extensions/blob/master/doc/gettext.rst
If i use this for example:
<p>{{ _n('One day without accident.', '%d days ...
1
vote
1answer
27 views
Difference between {% block javascripts %} and {% javascripts %} in Symfony
I just started using Twig instead of PHP templates and I've seen that people sometimes use
{% block javascripts %}
{% endblock %}
and sometimes
{% javascripts %}
{% endjavascripts %}
are these ...
-5
votes
1answer
39 views
Use translations in php not twig, symfony 2 [closed]
I am writing an app in Symfony2 using FOSUserBundle. However, all of their templates are in Twig, but I prefer to use php templates instead.
Using the translate file, they use this:
{{ ...
0
votes
1answer
37 views
symfony2 and facebox ajax twig content not displaying
enter link description here
I am trying about this:
<a href="remote.html" rel="facebox">text</a>
I have this in my twig
<a href='{{ path('likes_show_names') }}' ...
0
votes
1answer
17 views
Display twig code written in a twig file
I am writting a tutorial and need to display some twig code... Problem: I'm writting that twig code on a twig view, so I need to find some way to write it raw, without interpretation.
Currently, I am ...
1
vote
0answers
51 views
Symfony2 FormBuilder isn't rendering text fields
I'm using Symfony's FormBuilder to create a form and render it via Twig.
I use this as my Type:
<?php
namespace Vendor\AppBundle\Form;
use Symfony\Component\Form\FormBuilderInterface;
use ...
0
votes
1answer
11 views
In symfony2 is there a single variable or methode like 'hasError' to check if a form returns any errors?
In Symfony you can link validation to both a field or an input so errors are the returned in form.vars.error and form.fielName.vars.errors
In a template I had to do all these checks just to fuigure ...
0
votes
2answers
31 views
Include then block on a Twig template
None of the previous questions seem to have any information and about a day and a half of random Google searches turns up nothing.
What I am trying to do is this, I have a base.html.twig template and ...
0
votes
0answers
39 views
Symfony2: asset_url doesn't work on DEV environment
{% stylesheets
'../web/less/main.less'
filter='less'
%}
<link rel="stylesheet" href="{{ asset_url }}">
{% endstylesheets %}
This code works perfectly on PROD environment. Here is an ...
0
votes
1answer
37 views
Twig path-based overloading
This is a bit complicated to explain. My use-case is as follows:
Let's say I have the following filesystem structure:
/client/name/web/dashboard.twig <- extends dashboard.twig - file might not ...
0
votes
1answer
43 views
Twig - multiple if conditions inside a foreach loop
I'm coding up a twig template to display a grid containing 'sector' objects in a simple HTML table. If the object has no link adjacent to the left I want to start a new row, if it has no next link i ...
0
votes
2answers
41 views
symfony2 twig referencing base widget
I am trying to customize my symfony2 form choice_widget_expanded part, and trying to reference the base (standard) for the choice_widget_collapsed as per this instruction ...
0
votes
1answer
8 views
Twig filter only avialable to custom extended function
Is there any way to create a Twig filter that can only be used with specific function but nothing else?
For examples lets say i have custom function collection() and when i apply "sort" filter to it ...
0
votes
1answer
39 views
How to use custom twig functions in laravel using TwigBridge
I'm using twig with laravel using TwigBridge. I'd like to register a custom function to use from within twig templates.
The documents states that extensions can be added via the extension-array, but ...
0
votes
1answer
46 views
Assetic - How to disable asset combination?
I am using assetic to manage my CSS files in the Symfony 2 framework. It works well in production mode.
My problem is that in debug mode, assetic keeps combining my files into one output file. It ...
0
votes
0answers
46 views
Symfony2: Twig Extension not usable in twig template
I try to run symfony2 document example for twig extension and give a error.....
//.../Twig/DotExtension.php
<?php
namespace Dot\ArtBundle\Twig;
class DotExtension extends \Twig_Extension
{
...
1
vote
2answers
25 views
twig if block broken for int 0 comparison. symfony2
Can someone explain why this code outputs false instead of true?
Or is this a bug in twig?
{% set key = 0 %}
{% if(key != 'new') %}
{{'true' }}
{% else %}
{{ 'false' }}
{% endif %}
I use ...
0
votes
1answer
29 views
Twig render array key with a dash in it
How do you render a value of the value of an array key when it has a dash in the name?
I have this snippet:
$snippet = "
{{ one }}
{{ four['five-six'] }}
{{ ['two-three'] }}
";
$data = ...
0
votes
1answer
48 views
Use Assetic with BootstrapBundle
I am trying to use the BoostrapBundle for Symfony2, but I get stuck.
I tried to install the assets and use assetic using the tutorial, but I don't know how to use it on a twig file.
I tried with:
...
0
votes
1answer
28 views
symfony2 twig render form 'choice' as list
How can I (in symfony2 twig) render the form control 'choice' (expanded, checkboxes) as list ('li's, or just with a 'br' inbetwwen each option) and not have all options appear on one line?
I guess I ...
0
votes
1answer
29 views
Accessing database value with twig
Currently in in my php I have this:
$vals['followers'][] = R::find('follow', 'following_id=?', array($_GET['id']));
I get a return of all followers in the "follow" table with a following_id of the ...
0
votes
2answers
39 views
Symfony2 Path to image in twig template
I store img in Acme/DemoBundle/Resources/public/img/weather_icon/blizzard.gif
I want to put this img in my template so I did
<img src="{{ asset('bundles/acmedemo/img/weather_icons/blizzard.gif') ...
2
votes
1answer
28 views
Using Twig to show object properties that start with a hash
I am building a template using Twig to show my last.fm top artist chart. Part of the last.fm api returns images of each artist - when converted to a php object using json_decode, it looks like this:
...
0
votes
1answer
41 views
How reload twig cache in symfony2
I am new to PHP , I have a application which is developed in PHP and symfony2 framework.
I have changed html file , the change is not reflecting when i am refreshing the page.
01. I restarted the ...
0
votes
0answers
49 views
Twig extension to be available in new Twig_Environment
I'm using Symfony 2 / Twig. I have a Twig extension which, among other things, overloads the date filter to output custom date formats based on user preference.
app/config/services.yml:
...
0
votes
1answer
41 views
symfony2 twig render nesting sub directories
I seem to be having problems with twig render nesting
To explain further I have the following view layout structure
resources
.. config
.. public
.. etc
.. views
.. WeekBreakDown
...
0
votes
1answer
71 views
Using jquery directly in html (and twig)
Short Version
Normally, I include jquery by writing a xy.js an including it in html/twig. This file than uses ready() or maybe load().
Are there any disadvantages, if I use jquery directly in a ...
0
votes
1answer
72 views
Dynamic type in a form with symfony2
I am using Symfony2 to build a web application including a quiz.
The quiz will have different type of questions like choice and choice with multiple answers.
What I did is the following quiz form:
...
3
votes
1answer
44 views
Find the twig fie of the current view
When I want to modify something in the current view I have to see the action and the controller( DefaultController:indexAction for example ) , go to the action function ( indexAction ) and see what ...
0
votes
2answers
38 views
Twig path fucntion - passing an array ofparameters
Ciao,
how to pass an array of parameters to the path function of Twig (the Sensiolabs template engine)?
An example:
<a href="{{ path(item.getRoute(), {'foo':'bar', 'foo_2':'bar'} ) ...
2
votes
1answer
93 views
Twig render vs include - When and where to use one or the other?
I've read Twig: render vs include but it isn't what I'm looking for. I am not sure where and when should i use render, and when should i use include, as the behavior of these expressions seems very ...
0
votes
0answers
47 views
Mixing 1dimensional and 2 dimensional elements in an array / hash in Twig
In my CakePhp app, I can do this:
php echo $this->Form->postLink(
__('Delete'),
array('action' => 'delete', $profile['Profile']['id']),
null,
__('Are you sure you want to delete # ...
0
votes
1answer
53 views
Looping with twig
How do I do this with twig?
foreach($estimate_data AS $year => $month) {
foreach ($month AS $monthNo => $estimates) {
$chart_data .= "['". $year ."/".$monthNo."',";
...
1
vote
1answer
85 views
Access Service from Controller and/or Twig template
Disclaimer: I'm slowly starting to get into Symfony and still have some problems understanding how the architecture works.
Currently I set up different Bundles (Services, right?) that should deliver ...
0
votes
2answers
49 views
Twig and cycle function iteration with foreach/PDO
I have a TV guide script I wrote in Twig, and it works up to a point - the data displays properly from the PDO/MySQL, but it's the cycle function with the CSS I'm having problems with.
This is my ...
1
vote
2answers
73 views
Add attribute to form widget not work
I'm trying to add the selected attribute to my <option> tags
{% for product in form.products %}
{# of course this should only done inside a if,
but for testing purpose, it's okay #}
...
0
votes
1answer
34 views
How to use display() on more than one array
I am trying to pass more than one array to the Twig display() method.
My code contains several functions returning arrays.
I do have one parent template (parent.phtml) and several child templates ...
1
vote
1answer
52 views
Twig, truncating text and PHP error
I have a small simple Twig site (no Symfony install, so config.yml is not relevant here) and this is my code:
.htaccess file:
php_flag display_startup_errors on
php_flag display_errors on
php_flag ...
0
votes
1answer
94 views
Symfony 2.2 - Generate URL from route OR simply display URL
I'm developing a navigation system for Symfony 2. It's working really nicely so far. So far, there is a config file like so:
# The menu name ...
primary:
# An item in the menu ...
Home:
...


