blob: 73cab4e838693a03f678aa0da7a522861573c8f0 (
plain)
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
|
<?php
//include config
require_once('../includes/config.php');
//Si pas connecté OU si le membre n'est pas admin, pas de connexion à l'espace d'admin --> retour sur la page login
if(!$user->is_logged_in()) {
header('Location: login.php');
}
if(isset($_SESSION['userid'])) {
if($_SESSION['userid'] != 1) {
header('Location: '.SITEURL);
}
}
//show message from add / edit page
if(isset($_GET['dellicence'])){
$stmt = $db->prepare('DELETE FROM blog_licences WHERE licenceID = :licenceID') ;
$stmt->execute(array(':licenceID' => $_GET['dellicence']));
header('Location: licences.php?action=supprime');
exit;
}
// titre de la page
$pagetitle= 'Admin : gestion des licences';
require('../includes/header.php');
?>
<body>
<div id="container">
<?php
require('../includes/header-logo.php');
require('../includes/nav.php');
?>
<div id="body">
<div id="content">
<?php include('menu.php');?>
<?php
//show message from add / edit page
if(isset($_GET['action']) && $_GET['action'] == 'supprime'){
echo '<h3>La licence a été supprimée avec succès.</h3>';
}
if(isset($_GET['action']) && $_GET['action'] == 'ajoute'){
echo '<h3>La licence a été ajoutée avec succès.</h3>';
}
?>
<table>
<tr>
<th>Titre</th>
<th>Action</th>
</tr>
<?php
try {
$pages = new Paginator('10','p');
$stmt = $db->query('SELECT licenceID FROM blog_licences');
//pass number of records to
$pages->set_total($stmt->rowCount());
$stmt = $db->query('SELECT licenceID, licenceTitle, licenceSlug FROM blog_licences ORDER BY licenceTitle ASC '.$pages->get_limit());
while($row = $stmt->fetch()){
echo '<tr>';
echo '<td style="width: 80%;">'.html($row['licenceTitle']).'</td>';
?>
<td>
<a style="text-decoration: none;" href="edit-licence.php?id=<?php echo html($row['licenceID']);?>"><input type="button" class="button" value="Edit."</a> |
<a style="text-decoration: none;" href="javascript:dellicence('<?php echo html($row['licenceID']);?>','<?php echo html($row['licenceSlug']);?>')"><input type="button" class="button" value="Suppr."</a>
</td>
<?php
echo '</tr>';
}
} catch(PDOException $e) {
echo $e->getMessage();
}
?>
</table>
<br />
<p style="text-align: right;"><a href="add-licence.php" style="text-decoration: none;"><input type="button" class="button" value="Ajouter une licence" /></a></p>
<?php
echo $pages->page_links();
?>
</div>
<?php require('../sidebar.php'); ?>
<div class="clear"></div>
</div>
</div>
<div id="footer">
<?php require('../includes/footer.php'); ?>
</div>
</body>
</html>
|