index.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?php
  2. /**
  3. * Laravel - A clean and classy framework for PHP web development.
  4. *
  5. * @package Laravel
  6. * @version 1.3.0
  7. * @author Taylor Otwell
  8. * @license MIT License
  9. * @link http://laravel.com
  10. */
  11. // --------------------------------------------------------------
  12. // Define the framework paths.
  13. // --------------------------------------------------------------
  14. define('BASE_PATH', realpath('../').'/');
  15. define('APP_PATH', realpath('../application').'/');
  16. define('SYS_PATH', realpath('../system').'/');
  17. define('CONFIG_PATH', APP_PATH.'config/');
  18. define('PACKAGE_PATH', APP_PATH.'packages/');
  19. define('PUBLIC_PATH', realpath(__DIR__.'/'));
  20. // --------------------------------------------------------------
  21. // Define the PHP file extension.
  22. // --------------------------------------------------------------
  23. define('EXT', '.php');
  24. // --------------------------------------------------------------
  25. // Load the classes used by the auto-loader.
  26. // --------------------------------------------------------------
  27. require SYS_PATH.'config'.EXT;
  28. require SYS_PATH.'arr'.EXT;
  29. // --------------------------------------------------------------
  30. // Register the auto-loader.
  31. // --------------------------------------------------------------
  32. spl_autoload_register(require SYS_PATH.'loader'.EXT);
  33. // --------------------------------------------------------------
  34. // Set the error reporting and display levels.
  35. // --------------------------------------------------------------
  36. error_reporting(E_ALL | E_STRICT);
  37. ini_set('display_errors', 'Off');
  38. // --------------------------------------------------------------
  39. // Register the error handlers.
  40. // --------------------------------------------------------------
  41. set_exception_handler(function($e)
  42. {
  43. require_once SYS_PATH.'error'.EXT;
  44. System\Error::handle($e);
  45. });
  46. set_error_handler(function($number, $error, $file, $line)
  47. {
  48. require_once SYS_PATH.'error'.EXT;
  49. System\Error::handle(new ErrorException($error, $number, 0, $file, $line));
  50. });
  51. register_shutdown_function(function()
  52. {
  53. if ( ! is_null($error = error_get_last()))
  54. {
  55. require_once SYS_PATH.'error'.EXT;
  56. System\Error::handle(new ErrorException($error['message'], $error['type'], 0, $error['file'], $error['line']));
  57. }
  58. });
  59. // --------------------------------------------------------------
  60. // Set the default timezone.
  61. // --------------------------------------------------------------
  62. date_default_timezone_set(System\Config::get('application.timezone'));
  63. // --------------------------------------------------------------
  64. // Load the session.
  65. // --------------------------------------------------------------
  66. if (System\Config::get('session.driver') != '')
  67. {
  68. System\Session::load(System\Cookie::get('laravel_session'));
  69. }
  70. // --------------------------------------------------------------
  71. // Execute the global "before" filter.
  72. // --------------------------------------------------------------
  73. $response = System\Route\Filter::call('before', array(), true);
  74. // ----------------------------------------------------------
  75. // Execute the route function.
  76. // ----------------------------------------------------------
  77. if (is_null($response))
  78. {
  79. $route = System\Router::route(Request::method(), Request::uri());
  80. $response = (is_null($route)) ? System\Response::make(View::make('error/404'), 404) : $route->call();
  81. }
  82. else
  83. {
  84. $response = System\Response::prepare($response);
  85. }
  86. // ----------------------------------------------------------
  87. // Execute the global "after" filter.
  88. // ----------------------------------------------------------
  89. System\Route\Filter::call('after', array($response));
  90. // ----------------------------------------------------------
  91. // Stringify the response.
  92. // ----------------------------------------------------------
  93. $response->content = (string) $response->content;
  94. // --------------------------------------------------------------
  95. // Close the session.
  96. // --------------------------------------------------------------
  97. if (System\Config::get('session.driver') != '')
  98. {
  99. System\Session::close();
  100. }
  101. // --------------------------------------------------------------
  102. // Send the response to the browser.
  103. // --------------------------------------------------------------
  104. $response->send();