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/modules/tagsinalbum/views/tagsinalbum_sidebar.html.php

12 lines
335 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<?
// Loop through each tag in $all_tags, and display it as a link.
$not_first = 0;
foreach ($all_tags as $one_tag) {
if ($not_first++ > 0) {
print ", ";
}
print "<a href=\"" . $one_tag->url() . "\">" . html::clean($one_tag->name) . "</a>";
}
?>