wefra/modules/InterfaceConfig.php

11 lines
312 B
PHP
Raw Normal View History

<?php
interface InterfaceConfig {
//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/";
// 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
}