forked from vincent3569/i-feel-dirty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorites.php
executable file
·53 lines (41 loc) · 1.28 KB
/
favorites.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
<?php
if (extensionEnabled('favoritesHandler')) {
include ('inc_header.php');
?>
<div class="main">
<div class="content">
<div id="breadcrumb">
<h2>
<?php printGalleryIndexURL('', gettext('Home'), false); ?>
<?php
if (isset($isHomePage) && $isHomePage) {
printCustomPageURL(getGalleryTitle(), 'gallery', '', ' » ');
}
?>
» <?php printAlbumTitle(); ?>
</h2>
</div>
<?php printPageListWithNav(gettext('« prev'), gettext('next »'), false, true, 'pagelist', NULL, true, 7); ?>
<div class="album-desc clearfix">
<?php printAlbumDesc(); ?>
</div>
<?php if (function_exists('printSlideShowLink')) { ?>
<div class="img-slide clearfix">
<?php printSlideShowLink(gettext('Slideshow')); ?>
</div>
<?php } ?>
<?php if (isAlbumPage()) { ?>
<?php include('inc_print_album_thumb.php'); ?>
<?php } ?>
<?php if (getNumImages() > 0) { ?>
<?php include('inc_print_image_thumb.php'); ?>
<?php } ?>
<?php printPageListWithNav(gettext('« prev'), gettext('next »'), false, true, 'pagelist', NULL, true, 7); ?>
</div> <!-- content -->
<?php include('inc_sidebar.php'); ?>
</div> <!-- main -->
<?php
include('inc_footer.php');
} else {
include(SERVERPATH . '/' . ZENFOLDER . '/404.php');
} ?>