예제 #1
0
파일: index.php 프로젝트: VasylTech/gogo
<?php

use Application\Core;
//global constants
define('ROOT_BASE', __DIR__ . '/..');
define('APPLICATION_BASE', realpath(ROOT_BASE . '/Application'));
define('MEDIA_BASE', realpath(__DIR__ . '/media'));
//define HTTP response codes
define('HTTP_BAD_REQUEST', 400);
define('HTTP_FORBIDDED', 403);
define('HTTP_NOT_FOUND', 404);
define('HTTP_SERVER_ERROR', 500);
//init core
require realpath(APPLICATION_BASE . '/Core/bootstrap.php');
//run application
echo Core\Router::run();