1<?php
2/**
3 * DokuWiki Image Detail Template
4 *
5 * This is the template for displaying image details
6 *
7 * You should leave the doctype at the very top - It should
8 * always be the very first line of a document.
9 *
10 * @link   http://dokuwiki.org/templates
11 * @author Andreas Gohr <andi@splitbrain.org>
12 */
13
14// must be run from within DokuWiki
15if (!defined('DOKU_INC')) die();
16
17?>
18<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
19 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
20<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $conf['lang']?>" lang="<?php echo $conf['lang']?>" dir="ltr">
21<head>
22  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
23  <title>
24     <?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?>
25    [<?php echo strip_tags($conf['title'])?>]
26  </title>
27
28  <?php tpl_metaheaders()?>
29
30  <link rel="shortcut icon" href="<?php echo DOKU_TPL?>images/favicon.ico" />
31</head>
32
33<body>
34<div class="dokuwiki">
35  <?php html_msgarea()?>
36
37  <div class="page">
38    <?php if($ERROR){ print $ERROR; }else{ ?>
39
40    <h1><?php echo hsc(tpl_img_getTag('IPTC.Headline',$IMG))?></h1>
41
42    <div class="img_big">
43      <?php tpl_img(900,700) ?>
44    </div>
45
46    <div class="img_detail">
47      <p class="img_caption">
48        <?php print nl2br(hsc(tpl_img_getTag('simple.title'))); ?>
49      </p>
50
51      <p>&larr; <?php echo $lang['img_backto']?> <?php tpl_pagelink($ID)?></p>
52      <?php
53            $imgNS = getNS($IMG);
54            $authNS = auth_quickaclcheck("$imgNS:*");
55            if ($authNS >= AUTH_UPLOAD) {
56                echo '<p><a href="'.media_managerURL(array('ns' => $imgNS, 'image' => $IMG)).'">'.$lang['img_manager'].'</a></p>';
57            }
58      ?>
59
60      <dl class="img_tags">
61        <?php
62            $config_files = getConfigFiles('mediameta');
63            foreach ($config_files as $config_file) {
64                if(@file_exists($config_file)) include($config_file);
65            }
66
67            foreach($fields as $key => $tag){
68                $t = array();
69                if (!empty($tag[0])) $t = array($tag[0]);
70                if(is_array($tag[3])) $t = array_merge($t,$tag[3]);
71                $value = tpl_img_getTag($t);
72                if ($value) {
73                    echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
74                    if ($tag[2] == 'date') echo dformat($value);
75                    else echo hsc($value);
76                    echo '</dd>';
77                }
78            }
79        ?>
80      </dl>
81      <?php //Comment in for Debug// dbg(tpl_img_getTag('Simple.Raw'));?>
82    </div>
83
84  <?php } ?>
85  </div>
86</div>
87</body>
88</html>
89
90