I'm a bit confused about how to access the current user in Symfony 2. Currently I'm trying to display a variation of a form (AbstractType) depending on the ROLES of the current user.
A similar question has already been answered by Gremo: Access currently logged in user in EntityRepository
My question is: Is there a Symfony 2 native way to access the user inside my AbstractType class without using JMSDiExtraBundle? Thanks!
Here's my current code:
namespace Acme\DemoBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class Comment extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
//somehow access the current user here
$builder
->add('name')
->add('comment_text')
->add('comment_email')
// Add more fields depending on user role
;
}
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Acme\DemoBundle\Entity\Comment'
));
}
public function getName()
{
return 'acme_demobundle_comment';
}
}
Edit: I'm looking for the currently logged in user (security.context)