-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
194 lines (179 loc) · 6.22 KB
/
index.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?php
/*****************************************************************************************************
* Page d'index
* Authentification de l'utilisateur et redirection vers la bonne page en fonction de la variable 'page'
*****************************************************************************************************/
require_once dirname(__FILE__) . '/commun/php/base.inc.php';
inclure_fichier('commun', 'authentification.class', 'php');
/* * *********************************** AUTHENTIFICATION ********************************** */
$authentification = new Authentification();
$utilisateur = null;
/* Si on reçoit une demande pour le CAS */
if (@isset($_REQUEST['action'])) {
if ($_POST['action'] == "login_cas") {
$authentification->authentificationCAS();
} else if ($_GET['action'] == "logout") {
$authentification->forcerDeconnexion();
header( 'location: index.php' );
}
}
/* On regarde si l'utilisateur est authentifié */
if ($authentification->isAuthentifie()) {
/* On récupère l'objet utilisateur associé */
$utilisateur = $authentification->getUtilisateur();
if ($utilisateur == null) {
$authentification->forcerDeconnexion();
}
}
/*******************************************************************************/
/* Accueil */
if ( !isset($_GET['page']) || strlen( $_GET['page'] ) == 0 || $_GET['page'] == 'Accueil') {
$titre_page = 'Accueil';
$nom_module = '';
$titre_module = '';
$nom_page = 'accueil';
/* CV Etudiant */
} elseif ($_GET['page'] == 'CV_Etudiant') {
$titre_page = 'Accueil CV';
$nom_module = 'cvtheque';
$nom_page = 'presentationTemp';
$titre_module = 'Etudiants';
/* Edition CV */
// } elseif ($_GET['page'] == 'edit_cv') {
// $titre_page = 'Edition CV';
// $nom_module = 'cvtheque';
// $nom_page = 'edit_cv';
// $titre_module = 'Etudiants';
/* CV Entreprise - Consultation */
// } elseif ($_GET['page'] == 'CV_Entreprise') {
// $titre_page = 'CVthèque - Consultation';
// $nom_module = 'cvtheque';
// $nom_page = 'cvtheque';
// $titre_module = 'Entreprises';
/* CV Entreprise - Présentation */
} elseif ($_GET['page'] == 'CV_Info') {
$titre_page = 'CVthèque - Présentation';
$nom_module = 'cvtheque';
$nom_page = 'presentationTemp';
$titre_module = 'Entreprises';
/* Administration CV */
} elseif ($_GET['page'] == 'Administration_CV') {
$titre_page = 'Administration CV';
$nom_module = 'cvtheque';
$nom_page = 'admin';
$titre_module = 'Administration';
/* Administration Annuaire */
} elseif ($_GET['page'] == 'Administration_Annuaire') {
$titre_page = 'Annuaire';
$nom_module = 'annuaire';
$nom_page = 'annuaire';
$titre_module = 'AEDI';
/* Simulation Entreprise - Présentation */
} elseif ($_GET['page'] == 'Entretiens_Entreprise') {
$titre_page = 'Simulations d\'Entretiens - Présentation';
$nom_module = 'entretien';
$nom_page = 'presentation';
$titre_module = 'Entreprises';
/* Simulation Entreprise - Inscription */
} elseif ($_GET['page'] == 'Entretiens_Entreprise_Inscription') {
$titre_page = 'Simulations d\'Entretiens - Inscription';
$nom_module = 'entretien';
$nom_page = 'inscription';
$titre_module = 'Entreprises';
/* Simulation Etudiant */
} elseif ($_GET['page'] == 'Entretiens_Etudiant') {
$titre_page = 'Entretien';
$nom_module = 'entretien';
$nom_page = 'entretienEtudiant';
$titre_module = 'Etudiants';
/* Administration Entretiens */
} elseif ($_GET['page'] == 'Administration_Entretiens') {
$titre_page = 'Administration Entretien';
$nom_module = 'entretien';
$nom_page = 'admin_entretien';
$titre_module = 'Administration';
/* RIFs Entreprise */
} elseif ($_GET['page'] == 'RIFs_Entreprise') {
$titre_page = 'Rencontres IF';
$nom_module = 'rifs';
$nom_page = 'rifs';
$titre_module = 'Entreprises';
/* RIFs Inscription */
} elseif ($_GET['page'] == 'RIFs_Inscription') {
$titre_page = 'Inscription aux Rencontres IF';
$nom_module = 'rifs';
$nom_page = 'inscription';
$titre_module = 'Entreprises';
/* RIFs Administration */
} elseif ($_GET['page'] == 'Administration_RIFs') {
$titre_page = 'Administration des Rencontres IF';
$nom_module = 'rifs';
$nom_page = 'admin';
$titre_module = 'Administration';
/* Stages Etudiant */
} elseif ($_GET['page'] == 'Stages_Etudiant') {
$titre_page = "Recherche de Stages";
$nom_module = 'stages';
$nom_page = 'stages';
$titre_module = 'Etudiants';
/* Administration Utilisateurs */
} elseif ($_GET['page'] == 'Administration_Utilisateurs') {
$titre_page = 'Administration des Utilisateurs';
$nom_module = 'commun';
$nom_page = 'admin_utilisateurs';
$titre_module = 'Administration';
/* Administration Journal */
} elseif ($_GET['page'] == 'Administration_Journal') {
$titre_page = 'Journal d\'activité';
$lien_module = 'index.php?page=Administration_Journal';
$nom_module = 'commun';
$nom_page = 'admin_journal';
$titre_module = 'Administration';
/* Conférences */
} elseif ($_GET['page'] == 'Conferences') {
$titre_page = 'Conférences';
$nom_module = 'conferences';
$nom_page = 'presentation';
$titre_module = 'Entreprises';
}
/* Parrainage */
elseif( $_GET['page'] == 'Evenements_Etudiant' ) {
$titre_page= 'Evénements - Présentation';
$lien_module = 'index.php?page=Evenements_Etudiant';
$nom_module = 'evenements';
$titre_module = 'Etudiants';
$nom_page = 'presentation';
}
/* Evénements Etudiants */
elseif( $_GET['page'] == 'Parrainage' ) {
$titre_page= 'Parrainage - Présentation';
$lien_module = 'index.php?page=Parrainage';
$nom_module = 'parrainage';
$titre_module = 'Entreprises';
$nom_page = 'presentation';
}
/* Contact */
elseif( $_GET['page'] == 'Contact' ) {
$titre_page= 'Contact';
$lien_module = 'index.php?page=Accueil';
$nom_module = 'accueil';
$titre_module = '';
$nom_page = 'contact';
}
/* A Propos */
elseif( $_GET['page'] == 'A_Propos' ) {
$titre_page= 'A Propos';
$lien_module = 'index.php?page=Accueil';
$nom_module = 'accueil';
$titre_module = '';
$nom_page = 'a_propos';
}
else {
$titre_page = '404';
$lien_module = '';
$nom_module = '';
$nom_page = '404';
$titre_module = '';
}
inclure_fichier('', 'layout', 'php');
?>