Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Doctrine as Auth provider in my symfony2 app. How can I access authenticated user in action or template?

share|improve this question

1 Answer

up vote 31 down vote accepted

In your templates, you can do:

{{ app.user }}

And in your controller, if you extend the base controller provided by the framework bundle, you can do:

$this->getUser();

Anyway, you can access it from the service container:

$securityContext = $container->get('security.context');
$token = $securityContext->getToken();
$user = $token->getUser();
share|improve this answer
Thank you very much. – DavidW Dec 18 '11 at 10:24

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.