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-debian/modules/exif/views/exif_dialog.html.php

34 lines
966 B
PHP

<?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>
<h1 style="display: none;"><?= t("Photo detail") ?></h1>
<div id="g-exif-data">
<table class="g-metadata" >
<tbody>
<? 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>
<? if (!empty($details[++$i])): ?>
<td class="g-even">
<?= $details[$i]["caption"] ?>
</td>
<td class="g-odd">
<?= html::clean($details[$i]["value"]) ?>
</td>
<? else: ?>
<td class="g-even"></td><td class="g-odd"></td>
<? endif ?>
</tr>
<? endfor ?>
</tbody>
</table>
</div>