From: Roland Haeder Date: Mon, 11 May 2015 12:07:34 +0000 (+0200) Subject: Initialized 'core' (framework) + inc/classes.php is no longer used. X-Git-Url: https://git.mxchange.org/?p=qa.git;a=commitdiff_plain;h=837c07fa043624f4bf4d052cbaab521cad1e39ff Initialized 'core' (framework) + inc/classes.php is no longer used. Signed-off-by: Roland Haeder --- diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..7b054c7 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "core"] + path = core + url = git://git.mxchange.org/core.git diff --git a/core b/core new file mode 160000 index 0000000..fd0314e --- /dev/null +++ b/core @@ -0,0 +1 @@ +Subproject commit fd0314ec6209175eff537c5358fc67484618f672 diff --git a/inc b/inc new file mode 120000 index 0000000..1f8dea2 --- /dev/null +++ b/inc @@ -0,0 +1 @@ +core/inc \ No newline at end of file diff --git a/index.php b/index.php index 2f8d830..f4d0706 100644 --- a/index.php +++ b/index.php @@ -197,9 +197,6 @@ final class ApplicationEntryPoint { // Load all include files require($cfg->getConfigEntry('base_path') . 'inc/includes.php'); - // Load all framework classes - require($cfg->getConfigEntry('base_path') . 'inc/classes.php'); - // Include the application selector require($cfg->getConfigEntry('base_path') . 'inc/selector.php'); } // END - main()