xcat-core/xCAT-web/globalconfig.php
jbjohnso c99d72a179 Initial xCAT 2.0 import
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2007-10-26 22:44:33 +00:00

32 lines
1008 B
PHP

<?php
//Todo: get rid of the include path
// Set the include path
$APP_ROOT = dirname(__FILE__);
// Switch : to ; on Windows
ini_set('include_path', ini_get('include_path') . ":$APP_ROOT:$APP_ROOT/lib");
// The settings below display error on the screen, instead of giving blank pages.
error_reporting(E_ALL ^ E_NOTICE);
ini_set('display_errors', true);
require_once("lib/config.php");
// define global variables
$XCATROOT = getenv("XCATROOT") ? getenv("XCATROOT").'/bin' : '/opt/xcat/bin';
$SYSTEMROOT = '/bin';
$TOPDIR = '.';
$CURRDIR = '/opt/xcat/web'; //Todo: eliminate the need for this
$IMAGEDIR = "$TOPDIR/images";
// Put any configuration global variables here
// e.g. $config = &Config::getInstance();
// $config->setValue("settingName", "settingValue");
$config = &Config::getInstance();
$config->setValue("XCATROOT", $XCATROOT);
$config->setValue("TOPDIR", $TOPDIR);
$config->setValue("CURRDIR", $CURRDIR);
$config->setValue("IMAGEDIR", $IMAGEDIR);
?>