File: /www/exchange0old/exchange/Bin/Configuration.php
<?php
//***************** Do not Edit / Change anything in this file ********************//
class Bin_Configuration extends Bin_Security {
public $config = array();
function Bin_Configuration() {
$this->config["HOST"] = Bin_Config::get('database.hostname');
$this->config["USER"] = Bin_Config::get('database.username');
$this->config["PASSWORD"] = Bin_Config::get('database.password');
$this->config["DB"] = Bin_Config::get('database.database');
$this->config["PREFIX"] = Bin_Config::get('database.prefix');
$this->config["api_login"] = Bin_Config::get('api.login');
$this->config["api_password"] = Bin_Config::get('api.password');
$this->config["login_url"] = Bin_Config::get('url.login');
$this->config["receive_certificate_url"] = Bin_Config::get('url.receive_certificate_url');
$this->config["sfws_api_key"] = Bin_Config::get('sfws_api_key');
$this->config["salesforce_login"] = Bin_Config::get('url.salesforce_login');
$this->config["sfws_create_debtor_url"] = Bin_Config::get('sfws_create_debtor_url');
$this->config["hijack_email_messages"] = Bin_Config::get('hijack_email_messages');
$this->config["hijack_email_messages_to"] = Bin_Config::get('hijack_email_messages_to');
} }
?>