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

_dataTableViz_tagCloud.twig « templates « CoreVisualizations « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f9f51397e2d2666ae2688e5735451221a40028a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="tagCloud">
{% for word,value in cloudValues %}
    <span title="{{ value.word|rawSafeDecoded }} ({{ value.value }} {{ properties.translations[cloudColumn]|default(cloudColumn) }})" class="word size{{ value.size }}
    {# we strike tags with 0 hits #}
    {% if value.value == 0 %}valueIsZero{% endif %}">
    {% if labelMetadata[value.word].url is not sameas(false) %}
        <a href="{{ labelMetadata[value.word].url }}" rel="noreferrer noopener" target="_blank">
    {% endif %}
    {% if labelMetadata[value.word].logo is not sameas(false) %}
        <img src="{{ labelMetadata[value.word].logo }}" width="{{ value.logoWidth }}" />
    {% else %}
        {{ value.wordTruncated|rawSafeDecoded }}
    {% endif %}
    {% if labelMetadata[value.word].url is not sameas(false) %}</a>{% endif %}
    </span>
{% endfor %}
</div>