I have seen so far a Twig method to know the user privilege
{% if is_granted('ROLE_USER') %}
but nothing about getting authentified user informations, without passing the object in every single controller actions.
Before looking for how to pass a global variable to my layout, I'd rather know if there is any "standard" way to access my security provider user objects (at least the username, and database informations for entity users) in my layout or in any template covered by a firewall.
Thanks in advance.
{{ app.security.token.username }}but nothing about a entity provider object... – rayfranco Feb 22 at 18:48