bootstrap.php 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // --------------------------------------------------------------
  3. // Define the framework paths.
  4. // --------------------------------------------------------------
  5. define('BASE_PATH', realpath('../').'/');
  6. define('APP_PATH', realpath('../application').'/');
  7. define('SYS_PATH', realpath('../system').'/');
  8. define('PUBLIC_PATH', realpath('../public').'/');
  9. define('PACKAGE_PATH', APP_PATH.'packages/');
  10. // --------------------------------------------------------------
  11. // Define the PHP file extension.
  12. // --------------------------------------------------------------
  13. define('EXT', '.php');
  14. // --------------------------------------------------------------
  15. // Load the classes used by the auto-loader.
  16. // --------------------------------------------------------------
  17. require SYS_PATH.'config'.EXT;
  18. require SYS_PATH.'arr'.EXT;
  19. // --------------------------------------------------------------
  20. // Load the test utilities.
  21. // --------------------------------------------------------------
  22. require 'utils'.EXT;
  23. // --------------------------------------------------------------
  24. // Register the auto-loader.
  25. // --------------------------------------------------------------
  26. spl_autoload_register(require SYS_PATH.'loader'.EXT);