mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-10-31 10:14:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			544 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			544 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * User data helper
 | |
|  *
 | |
|  * @author Pierre HUBERT
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Get and returns the URL path to an userdata file
 | |
|  *
 | |
|  * @param String $fileURI Optionnal, defines the URI pointing on the file
 | |
|  * @param Boolean $systemPath Optionnal, defines if system path is required instead of URL
 | |
|  * @return String The full URL to the userdata file
 | |
|  */
 | |
| function path_user_data($fileURI = "", $systemPath = false){
 | |
| 	if(!$systemPath)
 | |
| 		return CS::get()->config->get("storage_url").$fileURI;
 | |
| 	else
 | |
| 		return CS::get()->config->get("storage_path").$fileURI;
 | |
| } | 
