bootstrap.inc.php 322 B

1234567891011
  1. <?php
  2. define('WEB_PATH', realpath(dirname(__FILE__)));
  3. define('ROOT_PATH', realpath(WEB_PATH.'/..'));
  4. //define('APP_PATH', ROOT_PATH.'/app'); // Inutile ?
  5. define('SRC_PATH', ROOT_PATH.'/src');
  6. define('CFG_PATH', ROOT_PATH.'/config');
  7. require_once CFG_PATH.'/config.inc.php';
  8. require_once SRC_PATH.'/bootstrap.inc.php';