11 lines
312 B
PHP
11 lines
312 B
PHP
<?php
|
|
interface InterfaceConfig {
|
|
//URLs & paths kernel
|
|
const PATH_ROOT = "/var/www/html/wefra/";
|
|
const URL_ROOT = "/wefra/";
|
|
const URL_SCRIPT = "/wefra/scripts/";
|
|
|
|
// URLs & paths customs
|
|
const PATH_CUSTOM = "/var/www/html/customs/wefra-custom/"; // <== CONFIG the path to your custom directory
|
|
}
|