blob: f5e04d68f358138b6550c29893d7211d58ff34e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$basePath = dirname(__FILE__);
$frameworkPath = $basePath . '/../lib/prado/framework/prado.php';
$applicationPath = $basePath . '/../app/php/';
require_once($frameworkPath);
Prado::setPathOfAlias('Web', $basePath);
$application = new TApplication($applicationPath);
$application->run();
?>
|