summaryrefslogtreecommitdiff
path: root/modules/exif/views/exif_dialog.html.php
blob: d7985a30e7d28c7074d60a63a0e8f1a7856b8133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php defined("SYSPATH") or die("No direct script access.") ?>
<style>
  #gExifData {font-size: .85em;}
  .gOdd {background: #BDD2FF;}
  .gEven {background: #DFEFFC;}
</style>
<h1 style="display: none;"><?= t("Photo Detail") ?></h1>
<div id="gExifData">
  <table class="gMetadata" >
    <tbody>
      <? for ($i = 0; $i < count($details); $i++): ?>
      <tr>
         <td class="gEven">
         <?= $details[$i]["caption"] ?>
         </td>
         <td class="gOdd">
         <?= $details[$i]["value"] ?>
         </td>
         <? if (!empty($details[++$i])): ?>
           <td class="gEven">
           <?= $details[$i]["caption"] ?>
           </td>
           <td class="gOdd">
           <?= $details[$i]["value"] ?>
           </td>
         <? else: ?>
           <td class="gEven"></td><td class="gOdd"></td>
         <? endif ?>
       </tr>
       <? endfor ?>
    </tbody>
  </table>
</div>