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

View File

@@ -18,6 +18,11 @@ foreach(glob(PROJECT_PATH."functions/*.php") as $funcFile){
require_once $funcFile;
}
//Include helpers
foreach(glob(PROJECT_PATH."helpers/*.php") as $funcFile){
require_once $funcFile;
}
//Create root object
$cs = new CS();