Issue
I'm using symfony2 role hierarchy, it works well, but in order to perform some changes, i have to retrieve the role_hierarchy
set up in my security.yml
.
role_hierarchy:
ROLE_USER: [ROLE_ACCESS_USER, ROLE_ACCESS_DATA, ROLE_ACCESS_PRODUCT]
Using getRoles()
just return ROLE_USER
, how can i know in my code that ROLE_USER
is made with ROLE_ACCESS_USER, ROLE_ACCESS_DATA, ROLE_ACCESS_PRODUCT
?
thanks for helping.
Solution
You can get the hierarchy from the container:
$container->getParameter('security.role_hierarchy.roles')
Answered By - Kris Wallsmith Answer Checked By - Gilberto Lyons (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.