Created
October 24, 2017 10:32
-
-
Save rileyrg/3591a7d74a5417af48d7bdd113d9b812 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% macro isUserDisplay(template,value,errorTemplate) %} | |
{% import _self as h %} | |
{% if h.isUser() %} | |
{% if value is defined and value is not null %} | |
{{ value }} | |
{% else %} | |
{% include template %} | |
{% endif %} | |
{% else %} | |
{% include errorTemplate|default(":User:useronly.inform.html.twig") %} | |
{% endif %} | |
{% endmacro %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment