xcat-core/xCAT-web/lib/config.php
2007-10-30 13:05:36 +00:00

29 lines
429 B
PHP

<?php
//Note: this file is not used any more
class Config {
var $configMap;
function Config() {
$configMap = array();
}
function &getInstance() {
static $instance;
if(NULL == $instance) {
$instance = new Config();
}
return $instance;
}
function getValue($key) {
return $this->configMap[$key];
}
function setValue($key, $value) {
$this->configMap[$key] = $value;
}
}
?>