development

This commit is contained in:
yuri
2016-01-05 18:04:15 +02:00
parent e4d6b13d27
commit db7e33fa61
23 changed files with 302 additions and 78 deletions
+3 -1
View File
@@ -30,13 +30,15 @@
include "bootstrap.php";
$app = new \Espo\Core\Application();
if (!$app->isInstalled()) {
header("Location: install/");
exit;
}
if (!empty($_GET['entryPoint'])) {
if (!empty($_GET['portalId'])) {
$app = new \Espo\Core\ApplicationPortal($_GET['portalId']);
}
$app->runEntryPoint($_GET['entryPoint']);
exit;
}