<?php
/*
*(c) 2003 christoph althammer hide@address.com
* http://www.milpa.de
*
* GNU GENERAL PUBLIC LICENSE
* die deutsche Übersetzung der GPL ist zu finden auf www.suse.org.
*
* auth: c. althammer
* date: 2003-03-03s
* mod : Config File (extend your prefs)
*
*/
class Conf extends Parameters { /* for compatibility only */ }
class Parameters {
var $Working = false; // stops Application during Software-Update
var $Debug = false; // true, false
var $DebugMode = "popup"; // screen, popup
var $HaltOnApplicationError = true; // true, false
var $HaltOnDatabaseError = "yes"; // yes,no,email
var $AdminEmail = "hide@address.com";
var $AdminContact = "Bitte wenden Sie sich an folgende Adresse: hide@address.com";
var $MaxUploadFileSize = ""; // in kByte
/* DATABASE
*/
var $Host = "";
var $DbName = "";
var $DbUser = "";
var $DbPass = "";
/* web site settings */
var $DefaultHeaderFile = "home.header.php";
var $ContactEmail = "hide@address.com";
/* application framework settings */
var $PathTemplates = "../templ/";
var $PathClasses = "../classes/";
var $Classes = array(
"mysql.class.php",
"debug.class.php",
"tool.class.php",
"template.class.php",
"datastructures.class.php",
"dboperations.class.php",
"http.class.php",
"pagespan.class.php",
"core.admin.class.php",
"local.class.php"
);
}
?>