Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_actionTooltip.twig « templates « CustomVariables « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52084a4be5ff639152b7a25d1d4889d141954908 (plain)
1
2
3
4
5
6
7
8
9
10
{% if action.customVariables is defined %}

    {{ 'CustomVariables_CustomVariables'|translate }}:{% for id,customVariable in action.customVariables %}
        {% set name = 'customVariablePageName' ~ id %}
        {% set value = 'customVariablePageValue' ~ id %}

        {# line break above is important #}
        - {{ customVariable[name]|raw }} {% if customVariable[value]|length > 0 %} = {{ customVariable[value]|raw }}{% endif %}
    {% endfor %}
{% endif -%}