-
Notifications
You must be signed in to change notification settings - Fork 3
/
init.php
33 lines (24 loc) · 1003 Bytes
/
init.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* Everything needed to run Lulo.
*/
define("LULO_DIR", __DIR__);
define("PARENT_LULO_DIR", __DIR__ . "/..");
define("LULO_DIR__CONTAINERS", LULO_DIR."/containers");
define("LULO_DIR__DB", LULO_DIR."/db");
define("LULO_DIR__DEPENDENCES", LULO_DIR."/dependences");
define("LULO_DIR__DEPENDENCES__VENDOR", LULO_DIR__DEPENDENCES."/vendor");
define("LULO_DIR__MANAGEMENT", LULO_DIR."/management");
define("LULO_DIR__MODELS", LULO_DIR."/models");
define("LULO_DIR__MODELS__TRAITS", LULO_DIR__MODELS."/traits");
define("LULO_DIR__QUERY", LULO_DIR."/query");
define("LULO_DIR__TESTS", LULO_DIR."/tests");
define("LULO_DIR__TWIG", LULO_DIR."/twig");
require_once LULO_DIR . "/configuration.php";
require_once LULO_DIR__DB . "/db.class.php";
require_once LULO_DIR__MANAGEMENT."/manager.class.php";
require_once LULO_DIR__TWIG."/twigtemplate.class.php";
require_once LULO_DIR__MODELS."/init.php";
require_once LULO_DIR__QUERY . "/init.php";
require_once LULO_DIR__CONTAINERS . "/init.php";
?>