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

cloud.tpl « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18d24c1e7e49c01efc4629f4cc2648531758ae51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div id="{$properties.uniqueId}">
<div class="tagCloud">
{if count($cloudValues) == 0}
	<div id="emptyDatatable">{'General_NoDataForTagCloud'|translate}</div>
{else}
	{foreach from=$cloudValues key=word item=value}
	<span title="{$value.word} ({$value.value} {$columnTranslation})" class="word size{$value.size} {* we strike tags with 0 hits *} {if $value.value == 0}valueIsZero{/if}">
	{if false !== $labelMetadata[$value.word].url}<a href="{$labelMetadata[$value.word].url}" target="_blank">{/if}
	{if false !== $labelMetadata[$value.word].logo}<img src="{$labelMetadata[$value.word].logo}" width="{$value.logoWidth}">{else}
	{$value.wordTruncated}{/if}{if false !== $labelMetadata[$value.word].url}</a>{/if}</span>
	{/foreach}
{/if}
{if $properties.show_footer}
	{include file="CoreHome/templates/datatable_footer.tpl"}
{/if}
{include file="CoreHome/templates/datatable_js.tpl"}
</div>
</div>