Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't know why show this error "The function "dump" does not exist in twig file" while i have already write in config.yml file this code:

services:
product_store.twig.extension.debug:
    class:        Twig_Extension_Debug
    tags:
         - { name: 'twig.extension' }

and in twig file dump with:

{{ dump(product) }}

Please help me with this.

Thanks! I appreciate your help.

share|improve this question
Not sure if you copied it wrong but you need to indent all lines below the services: line – Carlos Granados Aug 28 '12 at 12:42
@CarlosGranados ah... I just posted the same answer :S – thecatontheflat Aug 28 '12 at 12:44
If the indent was wrong I bet he would have an error when loading the configuration for a non-existing section. – Boris Guéry Aug 28 '12 at 12:45
@BorisGuery Yeah, you are right – Carlos Granados Aug 28 '12 at 12:54
1  
Which version of Symfony are you using? This was only available after 2.0.9 – Carlos Granados Aug 28 '12 at 12:55
show 4 more comments

2 Answers

First, "dump" is not actually the command, its "debug". Second, your config syntax is a little messed up. It should look something like this:

services:
    twig.extension.debug:
        class: Twig_Extensions_Extension_Debug
        tags:
            - { name: twig.extension }

Then you can use it in your templates like this: {% debug var %} -- Note the {%%} braces. Debug does not work within {{}} braces because its a TAG and not a FUNCTION.

share|improve this answer

It could be that the reason:

Where have you put the

services:
  product_store.twig.extension.debug:
  class:        Twig_Extension_Debug
  tags:
     - { name: 'twig.extension' }

It should be in config.yml of your boundle in:

nameOfTheBoundle/Resources/config/config.yml

and not in config.yml of the projeft in:

app/config/config.yml
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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