2019-11-03 18:23:06 +00:00
|
|
|
<?php
|
|
|
|
interface InterfaceConfig {
|
2020-11-26 13:14:58 +00:00
|
|
|
//URLs & paths kernel
|
2020-11-27 13:10:57 +00:00
|
|
|
const PATH_ROOT = "/var/www/html/wefra/";
|
|
|
|
const URL_ROOT = "/wefra/";
|
|
|
|
const URL_SCRIPT = "/wefra/scripts/";
|
2020-11-27 07:44:04 +00:00
|
|
|
|
2020-11-26 13:14:58 +00:00
|
|
|
// URLs & paths customs
|
2020-11-27 13:10:57 +00:00
|
|
|
const PATH_CUSTOM = "/var/www/html/customs/wefra-custom/"; // <== CONFIG the path to your custom directory
|
2019-11-03 18:23:06 +00:00
|
|
|
}
|