9 lines
		
	
	
		
			215 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			215 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php 
 | |
| use controller\UserSession;
 | |
| if(UserSession::isUserSignedIn()){
 | |
| 	include(ROOT_DIR.'/view/webcontent/header/header_signedin.php');
 | |
| }
 | |
| else{
 | |
| 	include(ROOT_DIR.'/view/webcontent/header/header_signedout.php');
 | |
| }
 | |
| ?>
 |