-
Notifications
You must be signed in to change notification settings - Fork 0
/
borrows.php
102 lines (95 loc) · 3.18 KB
/
borrows.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
<?php require('sharedFiles/pageStart.inc.php'); ?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="author" content="Martin Desharnais">
<title><?php echo Application::APPLICATION_NAME; ?> - Emprunts</title>
<?php include('sharedFiles/style.inc.php'); ?>
<?php include('sharedFiles/javascript.inc.php'); ?>
<script src="javascript/jquery/jquery.tablesorter.min.js"></script>
<script>
$(document).ready(function() {
$('table').tablesorter();
});
</script>
</head>
<body>
<?php require('sharedFiles/header.inc.php'); ?>
<div id="content">
<div>
<?php
if(!$application->currentUser->haveRights('borrows.php', $application->rights['read']))
{
echo '<h1>Erreur</h1>';
echo '<p>Vous vous n\'avez pas les droits nécessaires pour accéder à cette page.<p>';
}
else
{
echo '<form method="GET" class="right">';
echo ' <select id="t" name="t">';
echo ' <option value="1"'.(isset($_GET['t']) && $_GET['t'] == 1 ? ' selected' : '').'>Emprunts en cours</option>';
echo ' <option value="2"'.(isset($_GET['t']) && $_GET['t'] == 2 ? ' selected' : '').'>Historique des emprunts</option>';
echo ' </select>';
echo ' <button type="submit">Envoyer</button>';
echo '</form>';
$sql = '
SELECT medias.ID,
medias.titre,
emprunts.date_reservation,
emprunts.date_voulue,
emprunts.duree,
emprunts.date_emprunt,
emprunts.date_retour,
utilisateurs.ID AS userID,
utilisateurs.nom,
utilisateurs.prenom
FROM medias
INNER JOIN emprunts ON medias.ID = emprunts.mediaID
INNER JOIN utilisateurs ON emprunts.utilisateurID = utilisateurs.ID';
if(isset($_GET['t']) && $_GET['t'] == 1)
{
echo '<h1>Emprunts en cours</h1>';
$sql .= ' WHERE emprunts.date_retour IS NULL AND emprunts.date_emprunt IS NOT NULL';
}
else
{
echo '<h1>Historique des emprunts</h1>';
$sql .= ' WHERE emprunts.date_retour IS NOT NULL AND emprunts.date_emprunt IS NOT NULL';
}
$query = $application->database->prepare($sql);
$query->execute();
echo '<table>';
echo ' <thead>';
echo ' <tr>';
echo ' <th>Média</th>';
echo ' <th>Utilisateur</th>';
echo ' <th>Date de réservation</th>';
echo ' <th>Date voulue</th>';
echo ' <th>Durée voulue (jours)</th>';
echo ' <th>Date d\'emprunt</th>';
echo ' <th>Date de retour</th>';
echo ' </tr>';
echo ' </thead>';
echo ' <tbody>';
foreach($query as $row)
{
echo ' <tr>';
echo ' <td><a href="media.php?id='.$row['ID'].'">'.$row['titre'].'</a></td>';
echo ' <td><a href="user.php?id='.$row['userID'].'">'.$row['prenom'].' '.$row['nom'].'</a></td>';
echo ' <td>'.$row['date_reservation'].'</td>';
echo ' <td>'.$row['date_voulue'].'</td>';
echo ' <td>'.$row['duree'].'</td>';
echo ' <td>'.$row['date_emprunt'].'</td>';
echo ' <td>'.$row['date_retour'].'</td>';
echo ' </tr>';
}
echo ' </tbody>';
echo '</table>';
}
?>
</div>
</div>
<?php require('sharedFiles/footer.inc.php'); ?>
</body>
</html>