-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategorie.php
147 lines (115 loc) · 4.8 KB
/
categorie.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
141
142
143
144
145
146
147
<?php
/*
Nom du fichier : categorie.php
Auteur : Florent BENEY
Date de création : 06.06.2018
Description : Cette page permet à l'utilisateur de consulter les tutoriels d'une catégorie
*/
//Intégrer les fonctions PHP
require 'functPHP/functions.php';
//Si l'utilisateur n'est pas connecté
if(!($_SESSION['logged'])){
header('location:index.php');
exit();
}
//Variables
$idCategorie = filter_input(INPUT_GET, 'idCategorie', FILTER_VALIDATE_INT);
$tutoriels = GetTutorielByCategorie($idCategorie);
$nomCategorie = $tutoriels[0]['nom'];
$aucunTuto = (count($tutoriels) == 0) ? true : false;
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Balises meta -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Catégorie <?php echo $nomCategorie; ?> - DevSkills</title>
<meta content="Site de tutoriels informatiques" name="description">
<!-- Début CSS -->
<?php include 'inc/templateCSS.inc.php'; ?>
<!-- Fin CSS -->
<!-- Logo de la page -->
<link rel="shortcut icon" href="img/logoDevSkills.png">
<!-- =======================================================
Theme Name: Folio
Theme URL: https://bootstrapmade.com/folio-bootstrap-portfolio-template/
Author: BootstrapMade.com
Author URL: https://bootstrapmade.com
======================================================= -->
</head>
<body>
<!-- Début barre de navigation -->
<?php include 'inc/navbar.inc.php'; ?>
<!-- Fin barre de navigation -->
<!-- Début section header -->
<?php include 'inc/header.inc.php'; ?>
<!-- Fin section header -->
<!-- Début section explication de la page -->
<div id="about" class="paddsection">
<div class="container">
<div class="row justify-content-between">
<div class="col-lg-12">
<div class="about-descr">
<p class="p-heading">
<?php if($aucunTuto){ ?>
Aucun tutoriel
<?php }else{ ?>
Tutoriels de la catégorie <?php echo $nomCategorie; ?>
<?php } ?>
</p>
<p class="separator">
<?php if($aucunTuto){ ?>
Cette catégorie ne contient aucun tutoriel
<?php }else{ ?>
Cette page regroupe les tutoriels de la catégorie <?php echo $nomCategorie; ?>
<?php } ?>
<br><a href="accueil.php">Retour à l'accueil</a>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Fin section explication de la page -->
<!-- Début section tutoriels -->
<div id="journal" class="text-left paddsection">
<div class="container">
<div class="section-title text-center">
<h2><?php echo ($aucunTuto) ? "Il n'y a aucun tutoriel de cette catégorie" : "Tutoriels de la catégorie $nomCategorie"; ?></h2>
</div>
</div>
<?php if(!($aucunTuto)){ ?>
<div class="container">
<div class="journal-block">
<div class="row">
<?php foreach ($tutoriels as $value) { ?>
<div class="col-lg-4 col-md-6">
<div class="journal-info text-center">
<div class="journal-txt text-center">
<h4>
<a href="tutoriel.php?idTutoriel=<?php echo $value['id']; ?>&retourAbo=0" title="Consulter le tutoriel <?php echo $value['titre']; ?>">
<?php echo $value['titre']; ?>
</a>
</h4>
<p class="separator">
Appuyez sur le tutoriel pour le consulter
</p>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php } ?>
</div>
<!-- Fin section tutoriels -->
<!-- Début pied de page -->
<?php include 'inc/footer.inc.php'; ?>
<!-- Fin pied de page -->
<!-- Début JS -->
<?php include 'inc/templateJS.inc.php'; ?>
<!-- Fin JS -->
</body>
</html>