1234567891011 |
- <?php
- define('WEB_PATH', realpath(dirname(__FILE__)));
- define('ROOT_PATH', realpath(WEB_PATH.'/..'));
- //define('APP_PATH', ROOT_PATH.'/app'); // Inutile ?
- define('SRC_PATH', ROOT_PATH.'/src');
- define('CFG_PATH', ROOT_PATH.'/config');
- require_once CFG_PATH.'/config.inc.php';
- require_once SRC_PATH.'/bootstrap.inc.php';
|