<?
/*
 * Project: NodeMap2.0
 * File: config.php
 * Purpose: All config settings are stored in this file
 */

$config = array();

$config['node_status_file']		=	'http://watch.wirelessleiden.nl/nagios/export/node-status.csv';
$config['node_location_file']	=	'http://watch.wirelessleiden.nl/nagios/export/genesis-nodes.conf';

/*
 * Global settings
 * Don't change anything below this line if you don't know what you are doing
 */
$config['folder_class']		= 'inc/';
$config['file_init']		= 'init.php';

/*
 * This files we require for our application
 * We include the files in init.php
 */
$config['require']			= array();
$config['require'][]		= $config['folder_class'] . 'ErrorHandler.php';
$config['require'][]		= $config['folder_class'] . 'LogHandler.class.php';
$config['require'][]		= $config['folder_class'] . 'FileHandler.class.php';
$config['require'][]		= $config['folder_class'] . 'KMLFile.class.php';
$config['require'][]		= $config['folder_class'] . 'KMLPlacemark.class.php';
?>