Files
gallery3/modules/exif/views/exif_dialog.html.php

34 lines
981 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<style type="text/css">
#g-exif-data { font-size: .85em; }
.g-odd { background: #bdd2ff; }
.g-even { background: #dfeffc; }
</style>
2009-10-28 12:15:52 -07:00
<h1 style="display: none;"><?= t("Photo detail") ?></h1>
<div id="g-exif-data">
<table class="g-metadata" >
<tbody>
2018-01-28 12:43:27 +01:00
<?php for ($i = 0; $i < count($details); $i++): ?>
<tr>
<td class="g-even">
<?= $details[$i]["caption"] ?>
</td>
<td class="g-odd">
<?= html::clean($details[$i]["value"]) ?>
</td>
2018-01-28 12:43:27 +01:00
<?php if (!empty($details[++$i])): ?>
<td class="g-even">
<?= $details[$i]["caption"] ?>
</td>
<td class="g-odd">
<?= html::clean($details[$i]["value"]) ?>
</td>
2018-01-28 12:43:27 +01:00
<?php else: ?>
<td class="g-even"></td><td class="g-odd"></td>
2018-01-28 12:43:27 +01:00
<?php endif ?>
</tr>
2018-01-28 12:43:27 +01:00
<?php endfor ?>
</tbody>
</table>
</div>