summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php52
1 files changed, 1 insertions, 51 deletions
diff --git a/index.php b/index.php
index 4880d5c..e32df84 100644
--- a/index.php
+++ b/index.php
@@ -13,39 +13,7 @@ if (file_exists($xss_file)) {
}
unset($xss_file);
-// Decide where to look for things. ////////////////////////////////////////////
-$app_path = glob(BASEPATH.'/apps/*');
-array_unshift($app_path, BASEPATH.'/lpf');
-
-$libpath = array();
-$modelpath = array();
-$viewpath = array();
-$controllerpath = array();
-$pluginpath = array();
-
-foreach ($app_path as $dir) {
- if (is_dir($dir.'/lib' )) { $libpath[] = $dir.'/lib'; }
- if (is_dir($dir.'/ext' )) { $libpath[] = $dir.'/ext'; }
- if (is_dir($dir.'/models' )) { $modelpath[] = $dir.'/models'; }
- if (is_dir($dir.'/views' )) { $viewpath[] = $dir.'/views'; }
- if (is_dir($dir.'/controllers')) { $controllerpath[] = $dir.'/controllers'; }
- if (is_dir($dir.'/plugins' )) { $controllerpath[] = $dir.'/plugins'; }
-}
-unset($app_path);
-
-define('LIBPATH', implode(PATH_SEPARATOR, $libpath )); unset($libpath);
-define('MODELPATH', implode(PATH_SEPARATOR, $modelpath )); unset($modelpath);
-/*define('VIEWPATH', implode(PATH_SEPARATOR, $viewpath ));*/ unset($viewpath);
-define('VIEWPATH', BASEPATH.'/apps/um/views');
-define('CONTROLLERPATH',implode(PATH_SEPARATOR, $controllerpath)); unset($controllerpath);
-define('PLUGINPATH', implode(PATH_SEPARATOR, $pluginpath )); unset($pluginpath);
-
-set_include_path(get_include_path()
- .PATH_SEPARATOR.LIBPATH
- .PATH_SEPARATOR.MODELPATH
- .PATH_SEPARATOR.CONTROLLERPATH
- .PATH_SEPARATOR.PLUGINPATH
- );
+require_once(BASEPATH.'/stub.php');
// Figure what page is trying to be loaded. ////////////////////////////////////
// We don't have to do any check if it's a real file being looked for, if the
@@ -68,24 +36,6 @@ if ($PAGE=='') $PAGE = 'index';
define('PAGE', $PAGE); unset($PAGE);
define('PAGE_EXT', $EXT); unset($EXT);
-// Include base MVC classes ////////////////////////////////////////////////////
-require_once('Model.class.php');
-require_once('View.class.php');
-require_once('Controller.class.php');
-
-// Check if we have a database configuration ///////////////////////////////////
-$conf_file = BASEPATH.'/conf.php';
-if (file_exists($conf_file)) {
- require_once('Database.class.php');
- new Database($conf_file);
- session_start();
-} else {
- $view = new View('no-conf');
- $view->show(array());
- exit();
-}
-unset($conf_file);
-
// Kludgy ugly hacky hack //////////////////////////////////////////////////////
require_once('ContactMethod.class.php');
require(BASEPATH.'/conf-contacts.php');