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.

link|improve this question
feedback

2 Answers

Variables you set in Twig are set into the $context array you pass to Twig_Template->display(). This array is passed by value so any modifications to it will not be seen in the outer (PHP) scope.

So, no, you can't use the variables you set in Twig in PHP.

link|improve this answer
This might work if the variables inside that array are references. Have not tested it, but never say never :) – hakre Oct 28 '11 at 17:50
Would it be possible if I sent in the context array an object and set properties of that object with a custom twig function? – ZenMaster Oct 28 '11 at 17:53
@ZenMaster Yes, that would be possible ;) – NikiC Oct 28 '11 at 18:17
feedback
up vote 0 down vote accepted

Accessing every variable is very cumbersome, so what I did in the end was to create an extension which holds the data that I need:

class SampleExtension extends Twig_Extension {
    private $foo;

    function getName() {
        return 'sampleExtension';
    }

    function getFunctions() {
        return array(
            'setFoo' => new Twig_Function_Method($this, 'setFoo')
        );
    }

    function setFoo($value) {
        $this->foo = $value;
    }

    function getFoo() {
        return $this->foo;
    }
}

And in the class where I needed the data:

$this->sampleExtension = new SampleExtension();
$twigEnv->addExtension($this->sampleExtension);
...
$html = $twigEnv->render('myTemplate.tpt', ...);

Using this template:

...
{{ setFoo('bar') }}
...

After render:

echo $this->sampleExtension->getFoo(); // Prints bar
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.