f23f876f6a
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@18 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
33 lines
974 B
PHP
33 lines
974 B
PHP
<?php
|
|
|
|
//Note: this file is not used any more
|
|
|
|
// 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';
|
|
$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);
|
|
?>
|