mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-10-31 02:04:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			544 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			544 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * User functions
 | |
|  *
 | |
|  * @author Pierre HUBERT
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * A function that check login information are specified,
 | |
|  * else it quit the scripts because of missing login
 | |
|  *
 | |
|  * @return Boolean True for a success
 | |
|  */
 | |
| function user_login_required(){
 | |
|     if(!defined("userID")){
 | |
|         Rest_fatal_error(401, "This function requires user to be logged in!");
 | |
|     }
 | |
| 
 | |
|     //Check if userID is the number 0
 | |
|     if(userID == 0)
 | |
|         Rest_fatal_error(401, "This function requires user to be logged in!");
 | |
| 
 | |
|     //User logged in
 | |
|     return true;
 | |
| } | 
