forked from vincent3569/i-feel-dirty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.php
executable file
·77 lines (62 loc) · 2.64 KB
/
image.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php include ('inc_header.php'); ?>
<div class="main">
<div class="content-image">
<div id="breadcrumb">
<div class="img-nav">
<?php if (hasPrevImage()) { ?>
<div class="img-previous"><a href="<?php echo html_encode(getPrevImageURL()); ?>" title="<?php echo gettext('Previous Image'); ?>"><</a></div>
<?php } else { ?>
<div class="img-previous disabledlink"><</div>
<?php } ?>
<?php if (hasNextImage()) { ?>
<div class="img-next"><a href="<?php echo html_encode(getNextImageURL()); ?>" title="<?php echo gettext('Next Image'); ?>">></a></div>
<?php } else { ?>
<div class="img-next disabledlink">></div>
<?php } ?>
</div>
<h2>
<?php printGalleryIndexURL('', gettext('Home'), false); ?>
<?php
if (isset($isHomePage) && $isHomePage) {
printCustomPageURL(getGalleryTitle(), 'gallery', '', ' » ');
}
?>
» <?php printParentBreadcrumb('', ' » ', ' » '); printAlbumBreadcrumb('', ' » '); printImageTitle(); ?>
</h2>
</div>
<?php if (function_exists('printSlideShowLink')) { ?>
<div class="img-slide clearfix">
<?php printSlideShowLink(gettext('Slideshow')); ?>
</div>
<?php } ?>
<div id="image">
<?php $fullimage = getFullImageURL(); ?>
<?php if ((getOption('use_colorbox_image')) && (!empty($fullimage))) { ?>
<a rel="zoom" href="<?php echo html_encode($fullimage); ?>" title="<?php echo html_encode(getBareImageTitle()); ?>"><?php printDefaultSizedImage(getImageTitle()); ?></a>
<?php } else { ?>
<?php printDefaultSizedImage(getImageTitle()); ?>
<?php } ?>
</div>
<div id="image-title"><?php printImageTitle(); ?></div>
<div id="image-infos"><?php printImageDesc(); ?></div>
<?php if ((getOption('show_exif')) && (getImageMetaData())) { ?>
<div id="exif_link"><a href="#" title="<?php echo gettext('Image Info'); ?>" class="colorbox"><?php echo gettext('Image Info'); ?></a></div>
<div style='display:none'><?php printImageMetadata('', false); ?></div>
<?php } ?>
<div class="tags">
<?php printTags('links', NULL, 'taglist', ''); ?>
<div class="clearfix"></div>
</div>
<?php if ((zp_loggedin()) && (extensionEnabled('favoritesHandler'))) { ?>
<div class="favorites"><?php printAddToFavorites($_zp_current_image); ?></div>
<?php } ?>
<?php if (extensionEnabled('rating')) { ?>
<div id="rating-wrap"><?php printRating(); ?></div>
<?php } ?>
<?php if (extensionEnabled('comment_form')) { ?>
<?php include('inc_print_comment.php'); ?>
<?php } ?>
</div> <!-- content -->
<div class="clearfix"></div>
</div> <!-- main -->
<?php include('inc_footer.php'); ?>