Tagged Questions
0
votes
0answers
13 views
Symfony2, Twig, change twig after include
I have such hierarchy of twig files
my main (for controller) twig
{% extends "MainSiteBundle::layout.html.twig" %}
{% block footer_moderator_buttons %}
some buttons
{% endblock %}
{% block ...
0
votes
1answer
34 views
Symfony2 - Twig Function returning an array
I created a twig extension that returns me the list of all the blogs I have. This list is an array that I loop through in my twig template.
Here's my extension:
<?php
// ...
1
vote
1answer
23 views
Symfony Twig customize an Individual field for a collection
In the documentation there is a way in Symfony to customize a Individual field, based on the name/id of the widget.
{% form_theme form _self %}
{% block _product_name_widget %}
<div ...
0
votes
1answer
19 views
twig - render xml content with loops (even empty content)
I am building a web service that render content in multiple formats, basically json, xml and html (for testing only, no worry about it).
The JSON and HTML renderings work fine, I have just added a ...
0
votes
1answer
32 views
Custom FOSUserBundle Login Template using BootStrap
I've installed Symfony2, FOS User Bundle and Twitter Boot Strap.
Then I setup the /app/Resources/FOSUserBundle/views/layout.html.twig template to override FOSUserBundle to use my site template.
It ...
0
votes
1answer
43 views
any {addslashes} function in twig?
I am working in a symfony app and I need to use a function like the addslashes function in php but I can't find any think like that in twig ? is there any way to do that
2
votes
1answer
29 views
Symfony2, Twig, Routes, Create valid url from twig with slug
question is how to create such route as hpp://localhost/search/{searchString}
I played around but...
Simple form is (twig)
<form class="form-search" action="{{ path ('site_search') }}" ...
2
votes
1answer
33 views
Symfony2: How to hide link in Twig based on permissions
My application shows a list of projects, project detail pages and forms to edit these projects. These are the routes:
/ - list of projects
/project/42 - view project (project detail page)
...
1
vote
1answer
63 views
Twig/Symfony2 : multiples roles with is_granted
I want to know if a user has the 'VIEW_GEOLOC_DATA' role, but I have a problem using the twig function is_granted().
If I use in a template :
Roles : {{ dump(app.user.getRoles()) }}
...
0
votes
1answer
78 views
.each equal (==) X
I need to create a filter with checkbox (work in symfony)
{% for destino in destinos %}
$("#{{ destino.id }}").click(function()
{
var val = document.getElementById("{{ destino.id }}").value;
...
3
votes
2answers
46 views
How to use absolute path in twig functions
I have a application with symfony2 (2.2) when i want to send a mail i'm having troubles with the paths all are relatives path and obviously arn't working from emails
for render the the paths i'm ...
0
votes
1answer
43 views
Select element into foreach Twig template
I'm on Symfony2 with Twig and i have 2 array in param :
My controller :
return $this->render('MyBundle:Default:index.html.twig',
array('checked' => $boxChecked,
...
1
vote
1answer
30 views
Symfony 2 Debug Toolbar not showing, breaks HTML in dev environment
I really need your help with this.
I don't know what I've done to break the Symfony 2 toolbar. The debug tool bars stop showing and when I look at the source code of the page, I can see something like ...
0
votes
1answer
63 views
import js in html.twig symfony2
I try to import the JS file into my html.twig file. But it doesn't work. Could you give me some suggestions?
this is my layout file
<meta http-equiv="Content-Type" content="text/html; ...
0
votes
0answers
35 views
Twig Template Tesing
I began to think about CI for the projects at Symfony.
Today, the question arose about twig templates.
Template is an independent logic.
There are mistakes in the templates. But in the process of ...
2
votes
1answer
64 views
Symfony2 : add a new target for assetic finder
In my symfony project I have a bundle named Modules that included of many modules that each one saved in a separate directory into src/ModuleBundle/Modules directory and they have separate twig files ...
0
votes
2answers
85 views
Symfony2 Forms not rendering
I have created a form in symfony2:
$form = $this->createFormBuilder()
->add('name', 'text')
->getForm();
return ...
0
votes
1answer
36 views
How to check if widget is a checkbox in twig
Im theming my forms i want dont show the label if the field is a checkbox
{% form_theme form with _self %}
{% block form_row %}
{% spaceless %}
<div class="mygroup">
...
-2
votes
0answers
27 views
How to capture rendered controller output as a string in Symfony? [closed]
I'm writing a service in Symfony (2.2) to iterate through a series of routes generated by controllers and collect their (Twig-rendered) output as strings.
What's the best way to do this?
2
votes
1answer
17 views
Symfony2 form: repated type and his rendering in twig
I have a a form and one of the fields is :
$builder->add('password', 'repeated', array(
'type' => 'password',
'invalid_message' => 'The password fields must match.',
'options' ...
2
votes
2answers
35 views
Disable the css style on the specific html item
I have css style:
#topmenu a:hover {
margin: 0;
padding: 8px 20px 7px 12px;
color: #FFFFFF;
text-decoration: none;
background-color: #48516D;
}
And then, I ...
1
vote
1answer
72 views
Symfony2 - Twig render controller and return array response
Note: What I'm doing here is embedding controllers <--- see that link for a similar (official) example.
I want to call a controller from a twig template, and have that controller return an ...
0
votes
1answer
212 views
Nearly completed - just need to finish Twig extension to render ESI - Symfony2
I want to create a Twig extension and use this:
{{ new_func(route-name) }}
To do the same thing as:
{{ render_esi(url(route-name)) }}
...but with some adjustments
It's nearly done but it's this ...
1
vote
1answer
60 views
Variable “form” does not exist when overriding Symfony2 form theme
I am having an issue all of the sudden where I am getting the following error on my Symfony2 site:
Variable "form" does not exist in SiteBackendBundle::layout.html.twig at line 2.
My ...
1
vote
2answers
67 views
Symfony2 and Twig - Check if an asset exists
I have a symfony2 project using twig templates.
I am displaying some images and would like to display the image only if the specific asset exists.
I have this:
{% if ...
1
vote
2answers
42 views
How to apply class to form label?
I have this in a twig.
{{ form_errors(form) }}
{{ form_row(form.name, {'attr':{'class':'admin_finance_input'}}) }}
{{ form_row(form.amount, {'attr':{'class':'admin_finance_input'}}) }}
{{ ...
0
votes
0answers
47 views
Render entity form type
I have a problem with rendering the entity form type from symfony2. I have a category entity and the services entities the have relationship:
Category:
/**
* @ORM\OneToMany(targetEntity="Service", ...
0
votes
0answers
37 views
Symfony2 Trouble with setting up collection form type data
I'll try to be as clear as possible :
I have some value in a database that is not symfony's one.
I easily get my data in a repository, treat them in a controller and in my view i did this :
{% for ...
0
votes
1answer
68 views
Why does “no route found” have an uncaught exception in Silex?
My site is logging uncaught exceptions when users try routes that don't exist. The log looks like this:
[2013-05-30 15:47:38] myapp.ERROR: ...
0
votes
2answers
65 views
Embedding Controller using Twig
I've made it simpler (apologies for the complicated question which I've left at the bottom).
I want to have a twig template render another controller as a sub-part.
Here's the parent twig ...
0
votes
1answer
23 views
Access collection field in twig
How can I access a field in collection in twig
$builder
->add('name', 'text', array('required' => false))
->add('email', 'collection', array(
'type' => new ...
0
votes
2answers
55 views
Empty Twig template keeps throwing “Some mandatory parameters are missing” exception
Every search I try with this, gets me to host placeholding problems. That's not my case. Let's see if you guys can help me. Thanks in advance.
My routing.yml file:
mgfbw_blogslug:
path: ...
0
votes
1answer
25 views
Mapping and displaying in twig template
Hi I am trying to create such mapping
class Users
{
/**
* @var integer
*
* @ORM\Column(name="id_users", type="smallint", nullable=false)
* @ORM\Id
* ...
0
votes
1answer
32 views
twig: caching and dynamic content
I'm currently developing an application based on symfony2. It's my first dealing with this framework and I have a question regarding twig template caching.
How does it manage templates with dynamic ...
2
votes
1answer
43 views
Check if template exists before rendering
is there a way to check if twig template exists before calling to render? A try catch block seems not to work, at least in dev environment, and plus, I prefer a check than the cost of an exception.
...
0
votes
2answers
73 views
Symfony 2 Forms with Twig: add form variable to existing types
I need my symfony2/twig forms to adhere to a certain condition: All form rows must look similar to this:
{% block form_row %}
<div clas="CONSTANT_CLASS class_based_on_field_type ...
1
vote
1answer
80 views
Symfony2 -> Twig -> Form -> Field -> Set rendered = true
i have a simple problem.
I have a form with a field for example:
$builder
->add('x')
->add('y')
->add('z')
;
In my twig files i used multiple blocks and i want to stop render ...
0
votes
1answer
57 views
data-prototype not correctly rendered using nested collection form fields in a symfony2 form-type
Im building a project with symfony2.2, I'm posting here because i'm having trouble with nested collection, within collection.
I want to render a form, for this kind of Doctrine Entities :
...
1
vote
1answer
27 views
Catch-all route for Twig templates
I'm creating a website which consits of several apps (I created a bundle for each of them) and a number of "semi static" pages.
This semistatic pages are Twig templates which don't need a controller ...
0
votes
1answer
55 views
Access to the next value in a Twig loop
I have a problem to display the next line of a result in a loop using Twig :
// Arkiglass/ProduitBundle/Controller/DefaultController.php
<?php
public function produitAction()
{
$em = ...
1
vote
1answer
103 views
Symfony 2.1 - Uncaught PHP Exception Twig_Error_Runtime
I am getting this error when trying to open a route in Symfony 2.1
I realy have no idea where to check that. There is nothing on the internet.
Thank you very much for your help:
CRITICAL - ...
2
votes
1answer
49 views
How to sum with joined tables with Doctrine
I have 2 related entities - Category and Expense. Expense has a date - when the expense was made.
A Category entity has a one-to-many relationship with multiple Expense entities which themselves have ...
2
votes
1answer
65 views
Is a Twig block empty? - Symfony 2
I have a twig template with the following block:
{% block dashboard %}
{% include "::user_dashboard.html.twig" %}
{% endblock dashboard %}
Later in that template, I want to set a class on a ...
0
votes
1answer
36 views
Select options are overwritten in symfony2 . How can i avoid that
{% for tableField in tableFieldsArr %}
<tr>
<td>
<select>
<option name="{{ tableField }}">{{ tableField }}</option>
</select>
...
0
votes
1answer
47 views
Symfony2 Change class name in twig form theme
I want to override form_widget_simple function
{% block form_widget_simple %}
{% spaceless %}
{% set type = type|default('text') %}
{% if errors|length > 0 %}
...
0
votes
0answers
33 views
Symfony2 Twig custom filter in asset
I'm nearly new in Symfony2 and I have a little question:
I'm developing an email template, which has txt and html parts (no problem with it)
The only 'problem' I have is with the absolute paths of ...
0
votes
0answers
60 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
76 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
79 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
2answers
67 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'),
...



