2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<table class="gMetadata">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Title:") ?></th>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td><?= p::clean($item->title) ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2009-03-09 07:54:37 +00:00
|
|
|
<? if ($item->description): ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Description:") ?></th>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td><?= p::clean($item->description) ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2009-03-09 07:54:37 +00:00
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($item->id != 1): ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Name:") ?></th>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td><?= p::clean($item->name) ?></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2008-12-24 00:20:26 +00:00
|
|
|
<? endif ?>
|
2009-06-06 00:35:30 -06:00
|
|
|
<? if ($item->id != 1): ?>
|
|
|
|
|
<? $parent = $item->parent(); ?>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><?= t("Album: ") ?></th>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="<?= url::site("albums/{$parent->id}?show=$item->id") ?>">
|
|
|
|
|
<?= p::clean($parent->title) ?>
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<? endif ?>
|
2009-05-07 01:18:31 +00:00
|
|
|
<? if ($item->captured): ?>
|
|
|
|
|
<tr>
|
|
|
|
|
<th><?= t("Captured:") ?></th>
|
|
|
|
|
<td><?= date("M j, Y H:i:s", $item->captured)?></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<? endif ?>
|
2008-11-08 07:48:36 +00:00
|
|
|
<? if ($item->owner): ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
<tr>
|
2009-01-08 17:13:06 +00:00
|
|
|
<th><?= t("Owner:") ?></th>
|
2009-05-31 00:11:48 -07:00
|
|
|
<td><a href="#"><?= p::clean($item->owner->name) ?></a></td>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tr>
|
2008-11-08 07:48:36 +00:00
|
|
|
<? endif ?>
|
2008-11-05 05:35:47 +00:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|