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/modules/photoannotation/views/photoannotation_cloud.html.php
hukoeth de68eb78e6 Added user sidebar block, Replaced user dropdown field with ajax input field, added some error handling
@todo: user sidebar block displays 30 users maximum and only users with annotations associated with them, add a search field allowing to search for all other users
2010-09-11 16:11:04 +08:00

10 lines
327 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<? foreach ($users as $user): ?>
<li class="size<?=(int)(($user->size / $max_count) * 7) ?>">
<span><?= $user->size ?> photos are tagged with </span>
<a href="<?= $user->url ?>"><?= html::clean($user->name) ?></a>
</li>
<? endforeach ?>
</ul>