15 lines
		
	
	
		
			269 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			269 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
$notificationLevel = ALERT;
 | 
						|
$logLevel = DEBUG | INFO | NOTICE | WARNING | ERROR | ALERT;
 | 
						|
 | 
						|
// le premier utilisateur est l'utilisateur par défaut
 | 
						|
$defaultUser = array(
 | 
						|
"rdc" => "Daniel",
 | 
						|
"garage" => "Daniel",
 | 
						|
"entree" => "Daniel",
 | 
						|
"etage" => "Maryclaire"
 | 
						|
);
 | 
						|
 | 
						|
?>
 |