summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php35
1 files changed, 29 insertions, 6 deletions
diff --git a/index.php b/index.php
index 6c17d47..4880d5c 100644
--- a/index.php
+++ b/index.php
@@ -11,13 +11,34 @@ if (file_exists($xss_file)) {
exit();
}
}
+unset($xss_file);
// Decide where to look for things. ////////////////////////////////////////////
-define('LIBPATH', BASEPATH.'/src/lib'.PATH_SEPARATOR.BASEPATH.'/src/ext');
-define('MODELPATH', BASEPATH.'/src/models');
-define('VIEWPATH', BASEPATH.'/src/views');// views are not objects
-define('CONTROLLERPATH',BASEPATH.'/src/controllers');
-define('PLUGINPATH', BASEPATH.'/src/plugins');
+$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
@@ -29,7 +50,6 @@ set_include_path(get_include_path()
// 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
// requested page exists as a real file, .htaccess won't even let us load
-// thisfile.
@$PAGE_RAW = $_GET['p'];
$PAGE_PARTS = explode('/', $PAGE_RAW);
$FILE = array_pop($PAGE_PARTS);
@@ -42,6 +62,8 @@ if (preg_match($regex, $FILE, $matches)) {
} else {
$PAGE = $PAGE_RAW;
}
+unset($PAGE_RAW); unset($PAGE_PARTS); unset($FILE); unset($regex);
+
if ($PAGE=='') $PAGE = 'index';
define('PAGE', $PAGE); unset($PAGE);
define('PAGE_EXT', $EXT); unset($EXT);
@@ -62,6 +84,7 @@ if (file_exists($conf_file)) {
$view->show(array());
exit();
}
+unset($conf_file);
// Kludgy ugly hacky hack //////////////////////////////////////////////////////
require_once('ContactMethod.class.php');