$http_host, 'muc' => 'muc.'.$http_host, 'pubsub' => 'pubsub.'.$http_host, 'vjud' => 'vjud.'.$http_host, 'anonymous' => 'anonymous.'.$http_host, 'bosh' => 'http://'.$http_host.':5280/http-bind', 'bosh_main' => '', 'bosh_mini' => '', 'static' => '', 'upload' => '' ); // Define a default values array $hosts_default = $hosts_conf; // Read the hosts configuration file $hosts_data = readXML('conf', 'hosts'); // Read the hosts configuration file if($hosts_data) { // Initialize the hosts configuration XML data $hosts_xml = new SimpleXMLElement($hosts_data); // Loop the hosts configuration elements foreach($hosts_xml->children() as $hosts_child) { $hosts_value = $hosts_child->getName(); // Only push this to the array if it exists if(isset($hosts_conf[$hosts_value]) && $hosts_child) $hosts_conf[$hosts_value] = str_replace('{PROTOCOL}', $protocol, $hosts_child); } } // Finally, define the hosts configuration globals define('HOST_MAIN', $hosts_conf['main']); define('HOST_MUC', $hosts_conf['muc']); define('HOST_PUBSUB', $hosts_conf['pubsub']); define('HOST_VJUD', $hosts_conf['vjud']); define('HOST_ANONYMOUS', $hosts_conf['anonymous']); define('HOST_BOSH', $hosts_conf['bosh']); define('HOST_BOSH_MAIN', $hosts_conf['bosh_main']); define('HOST_BOSH_MINI', $hosts_conf['bosh_mini']); define('HOST_STATIC', $hosts_conf['static']); define('HOST_UPLOAD', $hosts_conf['upload']); ?>