forked from ndmsp/connectedbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalogue.php
140 lines (103 loc) · 3.68 KB
/
catalogue.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
session_start();
include('include/config.php');
$genre = (!isset($_GET['genre'])) ? ('%%') : ($_GET['genre']);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="iso-8859-1" />
<meta name="author" content="Thomas Diot" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<title><?php echo $site; ?> - Catalogue des livres</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script type="text/javascript" src="js/sticky.full.js"></script>
</head>
<body id="site-wrapper">
<?php
include('include/no-js.php');
?>
<div id="header">
<?php
include('include/top.inc.php');
include('include/menu.inc.php');
?>
</div>
<div class="main" id="main-two-columns">
<div class="left" id="main-content">
<?php
// On récupère le numéro de la page courante
if(isset($_GET['page']) && is_numeric($_GET['page']) && $_GET['page'] >= 1){$page = $_GET['page'];}
// Si il n'y en a pas, on part de la page 1
else{$page = 1;}
// On définit le nombre de livres par page
$pagination = 10;
// On calcule l'id du premier livre à récupérer
if($page == 1){
$limit_start = 0;
}
else{
$limit_start = ((($page - 1) * $pagination) + $page) -1;
}
$livres = Livre::getByGenre($bdd, $genre, $limit_start, $pagination);
for($i=0;$i<count($livres);$i++)
{
?>
<div id="livre">
<p>
<?php
echo '<a href="livre.php?id='.$livres[$i]->getId().'">';
echo '<img src="'.$livres[$i]->getCover().'" width="200" height="300" class="alignleft" />';
echo '</a>';
?>
<span class="titre">Titre: </span>
<?php echo $livres[$i]->getTitle(); ?>
<br />
<span class="titre">Auteur: </span>
<?php echo $livres[$i]->getAuthor(); ?>
<br />
<?php
$resume = $livres[$i]->getResume();
if(!empty($resume)) { ?>
<span class="titre">Résumé: </span>
<?php echo $resume; ?>
<br />
<?php } ?>
</p>
</div>
<div class="right">
<a href="livre.php?id=<?php echo $livres[$i]->getId(); ?>" class="gras">Afficher le livre</a>
</div>
<br /><br /><br />
<?php
}
$nb_total = count(Livre::getByGenre($bdd, $genre, 0,0));
// Pagination
$nb_pages = ceil($nb_total / $pagination);
echo '<div id="tnt_pagination">';
// Bouton précédent, activé si possible
if($page == 1){echo '<span class="disabled_tnt_pagination">Prec</span>';}
else{$a = $page - 1;echo '<a href="catalogue.php?genre='.$genre.'&page='.$a.'">Prec</a>';}
// Boucle pour chaque page
for ($i = 1 ; $i <= $nb_pages ; $i++){
if ($i == $page){
echo '<span class="active_tnt_link">'.$i.'</span>';
}
else{
echo '<a href="catalogue.php?genre='.$genre.'&page='.$i.'">'.$i.'</a>';
}
}
// Bouton suivant, si possible
if($page == $nb_pages){echo '<span class="disabled_tnt_pagination">Suiv</span>';}
else{$a = $page+1;echo '<a href="catalogue.php?genre='.$genre.'&page='.$a.'">Suiv</a>';}
// Fin de la pagination
echo '</div>';
?>
</div>
<?php include('include/sidebar_right.inc.php'); ?>
</div>
<div id="footer">
<?php include('include/footer.inc.php'); ?>
</div>
</body>
</html>