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/dynamic/views/dynamic_block.html.php
Tim Almdal fc671304fe Add the dynamic module to contrib
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
2009-07-10 23:27:42 +08:00

11 lines
260 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div class="gDynamicBlock">
<ul>
<? foreach ($albums as $album => $text): ?>
<li>
<a href="<?= url::site("dynamic/$album") ?>"><?= t($text) ?></a>
</li>
<? endforeach ?>
</ul>
</div>