This commit is contained in:
stubbfel
2013-06-20 11:26:10 +02:00
parent 0f21ccfe25
commit 61f8cbbf4f
92 changed files with 33401 additions and 30 deletions

View File

@@ -1,7 +1,32 @@
<?php
/**
* Path to the root
*/
define("PATH_ROOT", dirname(__FILE__));
define("PATH_SERVICES", PATH_ROOT. "/service");
/**
* Path to the services
*/
define("PATH_SERVICES", PATH_ROOT . "/service");
/**
* Path to the thirdparties
*/
define("PATH_3PARTY", PATH_ROOT . "/thirdparty");
/**
* Path to the apis
*/
define("PATH_API", PATH_ROOT . "/api");
define("PATH_DATABASE", PATH_ROOT. "/database");
/**
* Path to the database
*/
define("PATH_DATABASE", PATH_ROOT . "/database");
/**
* Path to the config
*/
define("PATH_CONFIG", PATH_ROOT . "/config");
?>