This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/index.php
T
Taras Machyshyn 34c6aed886 install changes
2014-03-07 13:36:13 +02:00

14 lines
204 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']);
}