Add WMTS manager

This commit is contained in:
2019-03-23 14:37:44 +01:00
parent 7695657e4f
commit 842583fcba
4 changed files with 175 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ class ClassManagement extends PhpObject
const INC_FOLDER = 'inc/';
const INC_EXT = '.php';
const SETTINGS_FILE = 'settings.php';
const GLOBAL_SETTINGS_FILE = 'globalsettings.php';
const TOOLBOX_CLASS = 'toolbox';
const MAIN_CLASS_ABS = 'main';
@@ -22,6 +23,7 @@ class ClassManagement extends PhpObject
$this->asIncFiles = array();
//try to include default files
$this->incFile(self::OBJECT_FOLDER.self::GLOBAL_SETTINGS_FILE);
$this->incFile(self::SETTINGS_FILE);
$this->incClass(self::TOOLBOX_CLASS);