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/about_this_photo/views/about_this_photo.html.php

35 lines
1.0 KiB
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<? date_default_timezone_set('Australia/ACT'); ?>
<div class="g-metadata">
<span class="g-about-this">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><strong class="caption"><?= t("Date:&nbsp;") ?></strong></td>
<td><?= $date ?></td>
</tr>
<tr>
<td><strong class="caption"><?= t("Time:&nbsp;") ?></strong></td>
<td><?= $time ?></td>
</tr>
<tr>
<td><strong class="caption"><?= t("Views:&nbsp;") ?></strong></td>
<td><?= $vcount ?></td>
</tr>
<tr>
<td><strong class="caption"><?= t("Name:&nbsp;") ?></strong></td>
<td><?= $name ?></td>
</tr>
</table>
<div style="margin-top: 10px; margin-bottom: 10px;">
<strong class="caption"><?= t("Caption:&nbsp;") ?></strong>
<?= $caption ?>
</div >
<span >
<strong class=="caption"><?= t("Tags: &nbsp;&nbsp;") ?></strong>
<? foreach ($tags as $tag): ?>
<a href="<?= $tag->url() ?>"><?= html::clean($tag->name) ?></a>,
<? endforeach?>
</span ><br>
</span>
</div>