Accessing session from TWIG template Accessing session from TWIG template symfony symfony

Accessing session from TWIG template


{{app.session}} refers to the Session object and not the $_SESSION array. I don't think the $_SESSION array is accessible unless you explicitly pass it to every Twig template or if you do an extension that makes it available.

Symfony2 is object-oriented, so you should use the Session object to set session attributes and not rely on the array. The Session object will abstract this stuff away from you so it is easier to, say, store the session in a database because storing the session variable is hidden from you.

So, set your attribute in the session and retrieve the value in your twig template by using the Session object.

// In a controller$session = $this->get('session');$session->set('filter', array(    'accounts' => 'value',));// In Twig{% set filter = app.session.get('filter') %}{% set account-filter = filter['accounts'] %}

Hope this helps.

Regards,
Matt


Setup twig

$twig = new Twig_Environment(...);    $twig->addGlobal('session', $_SESSION);

Then within your template access session values for example

$_SESSION['username'] in php file Will be equivalent to {{ session.username }} in your twig template


A simple trick is to define the $_SESSION array as a global variable. For that, edit the core.php file in the extension folder by adding this function :

public function getGlobals() {    return array(        'session'   => $_SESSION,    ) ;}

Then, you'll be able to acces any session variable as :

{{ session.username }}

if you want to access to

$_SESSION['username']