You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
437 B
13 lines
437 B
<?php
|
|
define('HTTPDOCS', realpath(rtrim(__DIR__, '/')) . '/');
|
|
define('ROOT_DIR', realpath(HTTPDOCS . '../httpdocs-includes') . '/');
|
|
|
|
define('LIB_DIR', ROOT_DIR . 'lib/');
|
|
define('VENDOR_DIR', ROOT_DIR . 'vendor/');
|
|
define('PLUGINS_DIR', ROOT_DIR . 'plugins/');
|
|
define('THEMES_DIR', HTTPDOCS . 'themes/');
|
|
define('CONFIG_DIR', ROOT_DIR . 'config/');
|
|
define('CACHE_DIR', LIB_DIR . 'cache/');
|
|
|
|
require_once(VENDOR_DIR . 'autoload.php');
|
|
|
|
|