index.php 4.1 KB

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