2009-02-11 17:42:05 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-02-12 01:12:33 +00:00
|
|
|
<style>
|
|
|
|
|
#gExifData {font-size: .85em;}
|
|
|
|
|
.gOdd {background: #BDD2FF;}
|
|
|
|
|
.gEven {background: #DFEFFC;}
|
|
|
|
|
</style>
|
2009-02-11 17:42:05 +00:00
|
|
|
<h1 style="display: none;"><?= t("Photo Detail") ?></h1>
|
2009-02-12 00:52:44 +00:00
|
|
|
<div id="gExifData">
|
2009-02-12 01:12:33 +00:00
|
|
|
<table class="gMetadata" >
|
|
|
|
|
<tbody>
|
|
|
|
|
<? for ($i = 0; $i < count($details); $i++): ?>
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="gEven">
|
|
|
|
|
<?= $details[$i]["caption"] ?>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="gOdd">
|
2009-05-31 00:11:48 -07:00
|
|
|
<?= p::clean($details[$i]["value"]) ?>
|
2009-02-12 01:12:33 +00:00
|
|
|
</td>
|
|
|
|
|
<? if (!empty($details[++$i])): ?>
|
|
|
|
|
<td class="gEven">
|
|
|
|
|
<?= $details[$i]["caption"] ?>
|
|
|
|
|
</td>
|
|
|
|
|
<td class="gOdd">
|
2009-05-31 00:11:48 -07:00
|
|
|
<?= p::clean($details[$i]["value"]) ?>
|
2009-02-12 01:12:33 +00:00
|
|
|
</td>
|
|
|
|
|
<? else: ?>
|
|
|
|
|
<td class="gEven"></td><td class="gOdd"></td>
|
|
|
|
|
<? endif ?>
|
|
|
|
|
</tr>
|
|
|
|
|
<? endfor ?>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2009-02-12 00:52:44 +00:00
|
|
|
</div>
|