[08/06/2024] Initial commit

This commit is contained in:
2024-06-08 11:07:49 +02:00
commit b32b05464d
420 changed files with 11740 additions and 0 deletions

16
domokits/bootstrap.php Normal file
View 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;