1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/obsolete/web_client/application/views/tag_block.html.php

13 lines
412 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="wc-tag-cloud">
<h3>Tags</h3>
<ul>
<? foreach ($tags as $tag): ?>
<li class="size<?=(int)(($tag->count / $max_count) * 7) ?>">
<span><?= $tag->count ?> photos are tagged with </span>
<a href="<?= url::site("g3_client/tagged_album/{$tag->name}") ?>"><?= $tag->name ?></a>
</li>
<? endforeach ?>
</ul>
</div>