[08/06/2024] Initial commit
This commit is contained in:
16
domokits/bootstrap.php
Normal file
16
domokits/bootstrap.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
// Here you can override thelia directories constants.
|
||||
// Please see vendor/thelia/core/bootstrap.php
|
||||
|
||||
define('DS', DIRECTORY_SEPARATOR);
|
||||
define ("THELIA_ROOT", __DIR__ . DS);
|
||||
define ('THELIA_VENDOR', __DIR__ . DS . 'vendor' . DS);
|
||||
define ('THELIA_LIB', THELIA_VENDOR . 'thelia' . DS . 'core' . DS . 'lib' . DS . 'Thelia' . DS);
|
||||
define ("THELIA_SETUP_DIRECTORY", __DIR__ . DS . "local" . DS . "setup" . DS);
|
||||
|
||||
// --------------------------------------------------
|
||||
|
||||
$loader = require "vendor/autoload.php";
|
||||
|
||||
return $loader;
|
||||
Reference in New Issue
Block a user