You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							950 B
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							950 B
						
					
					
				| <?php
 | |
| 
 | |
| /**
 | |
|  * Page importé intégrant le menu de navigation dans la page d'administration centrale.
 | |
|  */
 | |
| 
 | |
| echo <<<_HEREDOC_
 | |
| <div>
 | |
| 	<table>
 | |
| 		<tr>
 | |
| 			<td><span>Courtail</span></td>
 | |
| 			<td><a href="/pages/gestion/administration.php?page=alias">Alias</a></td>
 | |
| _HEREDOC_;
 | |
| if (testPrivileges()=="administrateur") {
 | |
| 	echo <<<_HEREDOC_
 | |
| 			<td><a href="/pages/gestion/administration.php?page=domaines">Domaines</a></td>
 | |
| 			<td><a href="/pages/gestion/administration.php?page=listes_noires">Listes noires</a></td>
 | |
| _HEREDOC_;
 | |
| }
 | |
| echo <<<_HEREDOC_
 | |
| 			<td><a href="/services/fonctions/sessions/deconnexion.php">Déconnexion</a></td>
 | |
| 		</tr>
 | |
| 	</table>
 | |
| </div>
 | |
| _HEREDOC_;
 | |
| 
 | |
| 
 | |
| if (isset($_GET['message']) && !empty($_GET['message'])) {
 | |
| 	switch ($_GET['message']) {
 | |
| 		case "bienvenue":
 | |
| 			echo "<p class=\"messages_retour_ko\">Bienvenue ".$_SESSION['nom_utilisateur'].". Vous êtes authentifié en tant qu'".$_SESSION['privilege_utilisateur'].".</p>";
 | |
| 			break;
 | |
| 	}
 | |
| }
 | |
| 
 | |
| ?>
 |