symfony - How to use OR Condition in twig and symfony2 -


{% if ( session.get('userrole') != 'role client user' ) or  ( session.get('actionpermission') == 'true' ) %}      {# stuff #}  {% endif; %} 

{% if (session.get('userrole') != 'role client user' or  session.get('actionpermission') == 'true') %}      {# ... stuff #}  {% endif %} 

Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

python - Exception while importing pymorphy2 -

c# - Nested Internal Class with Readonly Hashtable throws Null ref exception.. on assignment -