bootstrap.php 838 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Basic Cake functionality.
  4. *
  5. * Handles loading of core files needed on every request
  6. *
  7. * PHP 5
  8. *
  9. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  10. * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  11. *
  12. * Licensed under The MIT License
  13. * For full copyright and license information, please see the LICENSE.txt
  14. * Redistributions of files must retain the above copyright notice.
  15. *
  16. * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  17. * @link http://cakephp.org CakePHP(tm) Project
  18. * @since CakePHP(tm) v 0.2.9
  19. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  20. */
  21. define('TIME_START', microtime(true));
  22. require CAKE . 'basics.php';
  23. use Cake\Core\App;
  24. use Cake\Core\Configure;
  25. App::init();