Created helpers directory

This commit is contained in:
Pierre
2017-05-25 15:16:34 +02:00
parent e000e59374
commit 83b0982068
3 changed files with 25 additions and 1 deletions

16
helpers/userData.php Normal file
View File

@ -0,0 +1,16 @@
<?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
* @return String The full URL to the userdata file
*/
function path_user_data($fileURI = ""){
return CS::get()->config->get("storage_url").$fileURI;
}