Files
espocrm/index.php
2014-01-27 15:03:06 +02:00

12 lines
184 B
PHP

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