bootstrap.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Basic Cake functionality.
  4. *
  5. * Handles loading of core files needed on every request
  6. *
  7. * PHP versions 4 and 5
  8. *
  9. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  10. * Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
  11. *
  12. * Licensed under The MIT License
  13. * Redistributions of files must retain the above copyright notice.
  14. *
  15. * @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
  16. * @link http://cakephp.org
  17. * @package cake
  18. * @subpackage cake.cake
  19. * @since CakePHP(tm) v 0.2.9
  20. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  21. */
  22. if (!defined('PHP5')) {
  23. define('PHP5', (PHP_VERSION >= 5));
  24. }
  25. if (!defined('E_DEPRECATED')) {
  26. define('E_DEPRECATED', 8192);
  27. }
  28. error_reporting(E_ALL & ~E_DEPRECATED);
  29. require CORE_PATH . 'cake' . DS . 'basics.php';
  30. $TIME_START = getMicrotime();
  31. require CORE_PATH . 'cake' . DS . 'config' . DS . 'paths.php';
  32. require LIBS . 'object.php';
  33. require LIBS . 'inflector.php';
  34. require LIBS . 'configure.php';
  35. require LIBS . 'set.php';
  36. require LIBS . 'cache.php';
  37. Configure::getInstance();
  38. require CAKE . 'dispatcher.php';
  39. ?>