Last change
on this file since 7631 was 7631, checked in by Pieter Naber, 15 years ago |
Fixed a lot of bugs, introduced KMLFile::parseFile for parsing the node status file
|
File size:
825 bytes
|
Rev | Line | |
---|
[7629] | 1 | <?
|
---|
| 2 | /*
|
---|
| 3 | * Project: NodeMap2.0
|
---|
| 4 | * File: config.php
|
---|
| 5 | * Purpose: All config settings are stored in this file
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | $config = array();
|
---|
| 9 |
|
---|
| 10 | $config['node_status_file'] = 'http://watch.wirelessleiden.nl/nagios/export/node-status.csv';
|
---|
| 11 |
|
---|
| 12 | /*
|
---|
| 13 | * Global settings
|
---|
| 14 | * Don't change anything below this line if you don't know what you are doing
|
---|
| 15 | */
|
---|
[7631] | 16 | $config['folder_class'] = 'inc/';
|
---|
[7629] | 17 | $config['file_init'] = 'init.php';
|
---|
| 18 |
|
---|
| 19 | $config['require'] = array();
|
---|
[7631] | 20 | $config['require'][] = $config['folder_class'] . 'ErrorHandler.php';
|
---|
[7629] | 21 | $config['require'][] = $config['folder_class'] . 'LogHandler.class.php';
|
---|
| 22 | $config['require'][] = $config['folder_class'] . 'FileHandler.class.php';
|
---|
| 23 | $config['require'][] = $config['folder_class'] . 'KMLFile.class.php';
|
---|
| 24 | $config['require'][] = $config['folder_class'] . 'KMLPlacemark.class.php';
|
---|
| 25 | ?>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.