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 to dump a variable?

The solution I found by searching for it was to define a function where I can use my existing php debug tools by injecting a function, but all references I have found to that includes these nice two lines of code, but nowhere is it specified where to place them. Going by the fact that they need a $loader variable defined, I tried /app/config/autoload.php but the $loader there was the wrong kind. Where do I place the php code for adding a twig function?

link|improve this question

79% accept rate
feedback

5 Answers

You can use the debug tag, which is documented here.

{% debug expression.varname %}
link|improve this answer
4  
If you get a error saying Unknown tag name "debug", extend your configuration (either in the global config.yml or config_dev.yml) as described here: github.com/symfony/symfony-docs/issues/455#issuecomment-1884861 – flu Jan 29 at 14:52
feedback
up vote 11 down vote accepted

So I got it working, partly a bit hackish:

  1. Set twig: debug: 1 in app/config/config.yml
  2. Add this to config_dev.yml

    services:
        debug.twig.extension:
            class: Twig_Extensions_Extension_Debug
            tags: [{ name: 'twig.extension' }]
    
  3. sudo rm -fr app/cache/dev

  4. To use my own debug function instead of print_r(), I opened vendor/twig-extensions/lib/Twig/Extensions/Node/Debug.php and changed print_r( to d(

PS. I would still like to know how/where to grab the $twig environment to add filters and extensions.

link|improve this answer
btw: for clearing the cache you can use the console tool (stackoverflow.com/questions/6789950/…) – Яaffael1984 Sep 6 '11 at 11:35
is there any advantage to do that? – Alexander Morland Sep 6 '11 at 12:20
it's more straightforward ... if you don't know the console tool, I recommend you check it out – Яaffael1984 Sep 6 '11 at 13:57
1  
You shouldn't have to set twig: debug: 1 because it's inheriting this information from your front controller's environment. Otherwise you could end up in uninentionally outputting debug information in your prod environment. As long as you are working in the dev environment it is enabled by default and it's disabled in your prod environment. – flu Jan 29 at 15:00
This is outdated as of Twig 1.5. See other answer: stackoverflow.com/a/10080404/107768 – Icode4food May 4 at 21:37
feedback

For debugging Twig templates you can use the debug statement.

enter image description here

There you can set the debug setting explicitely.

link|improve this answer
I get 'Unknown tag name "debug" ' with and without setting that twig.debug: true – Alexander Morland Sep 6 '11 at 10:26
if you are working in prod-mode you have to clear the cache first – Яaffael1984 Sep 6 '11 at 10:40
I am using app_dev.php, cache still needs to be clear though – Alexander Morland Sep 6 '11 at 10:57
@AlexanderMorland Hi Alex, you have to extend your configuration as described here: github.com/symfony/symfony-docs/issues/455#issuecomment-1884861 to get rid of the Unknown tag name "debug" error. – flu Jan 29 at 14:57
feedback

As of Twig 1.5, the correct answer is to use the dump function. It is fully documented in the Twig documentation.

{{ dump(user) }}
link|improve this answer
feedback

If you are using Twig in your application as a component you can do this:

$twig = new Twig_Environment($loader, array(
        'autoescape' => false,
    ));

$twig->addFilter('var_dump',      new Twig_Filter_Function('var_dump'));

Then in your templates:

{{ my_variable | var_dump }}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.