Files
espocrm/index.php
2014-03-03 13:10:53 +02:00

15 lines
205 B
PHP

<?php
include "bootstrap.php";
$app = new \Espo\Core\Application();
$app->isInstalled();
if (empty($_GET['entryPoint'])) {
include "main.html";
} else {
$app->runEntryPoint($_GET['entryPoint']);
}