24 lines
606 B
PHP
24 lines
606 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @file
|
|
* Functions needed for Thelia bootstrap
|
|
*/
|
|
define('THELIA_ROOT' , rtrim(realpath(__DIR__ .'/../'),'/') . "/");
|
|
define('THELIA_LOCAL_DIR' , THELIA_ROOT . '/local/');
|
|
define('THELIA_CONF_DIR' , THELIA_LOCAL_DIR . 'config/');
|
|
define('THELIA_MODULE_DIR' , THELIA_LOCAL_DIR . 'modules/');
|
|
define('THELIA_TEMPLATE_DIR' , THELIA_ROOT . '/web/templates/');
|
|
|
|
$loader = require __DIR__ . "/vendor/autoload.php";
|
|
|
|
|
|
|
|
if (!file_exists(THELIA_ROOT . '/local/config/database.yml')) {
|
|
define('THELIA_INSTALL_MODE',true);
|
|
}
|
|
/*else {
|
|
define('THELIA_INSTALL_MODE',true);
|
|
}*/
|