38 lines
557 B
PHP
38 lines
557 B
PHP
<?php
|
|
|
|
/**
|
|
* Path to the root
|
|
*/
|
|
define("PATH_ROOT", dirname(__FILE__));
|
|
|
|
/**
|
|
* 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");
|
|
|
|
/**
|
|
* Path to the database
|
|
*/
|
|
define("PATH_DATABASE", PATH_ROOT . "/database");
|
|
|
|
/**
|
|
* Path to the config
|
|
*/
|
|
define("PATH_CONFIG", PATH_ROOT . "/config");
|
|
|
|
/**
|
|
* Path to the utility
|
|
*/
|
|
define("PATH_UTILITTY", PATH_ROOT . "/utility");
|
|
?>
|