Basic release

This commit is contained in:
2023-12-30 14:28:21 +01:00
parent 4869f1ef2f
commit bf2892ab29
125 changed files with 10729 additions and 0 deletions

9
modules/index.php Normal file
View File

@ -0,0 +1,9 @@
<?php
if (!isset($_REQUEST['loadmodule']) ||
!is_file(BDP_LV_PLUGIN_DIR . 'modules/' . $_REQUEST['loadmodule'] . '/internal/index.php')) {
require_once BDP_LV_PLUGIN_DIR . 'modules/about/internal/index.php';
exit;
}
require_once BDP_LV_PLUGIN_DIR . 'modules/' . $_REQUEST['loadmodule'] . '/internal/index.php';