ComunicAPI/helpers/userData.php

31 lines
984 B
PHP
Raw Normal View History

2017-05-25 13:16:34 +00:00
<?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
2017-05-26 07:50:20 +00:00
* @param Boolean $systemPath Optionnal, defines if system path is required instead of URL
2017-05-25 13:16:34 +00:00
* @return String The full URL to the userdata file
*/
2017-05-26 07:50:20 +00:00
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;
2017-05-25 13:24:41 +00:00
}
/**
* Get and return the URL path to a specified account image
*
* @param String $imageURI Optionnal, defines URI of the image
2017-05-26 07:50:20 +00:00
* @param Boolean $systemPath Optionnal, defines if system path is required instead of URL
2017-05-25 13:24:41 +00:00
* @return String The full URL to the image account file
*/
2017-05-26 07:50:20 +00:00
function path_account_image($imageURI="", $systemPath = false){
return path_user_data(CS::get()->config->get("imageAccountPath").$imageURI, $systemPath);
2017-05-25 13:16:34 +00:00
}