|
Last change
on this file since 7638 was 7638, checked in by Pieter Naber, 16 years ago |
|
Added location of the file with the latitudes and longitudes of the nodes in config.php
|
|
File size:
1018 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 |
|
|---|
| [7638] | 10 | $config['node_status_file'] = 'http://watch.wirelessleiden.nl/nagios/export/node-status.csv';
|
|---|
| 11 | $config['node_location_file'] = 'http://watch.wirelessleiden.nl/nagios/export/genesis-nodes.conf';
|
|---|
| [7629] | 12 |
|
|---|
| 13 | /*
|
|---|
| 14 | * Global settings
|
|---|
| 15 | * Don't change anything below this line if you don't know what you are doing
|
|---|
| 16 | */
|
|---|
| [7631] | 17 | $config['folder_class'] = 'inc/';
|
|---|
| [7629] | 18 | $config['file_init'] = 'init.php';
|
|---|
| 19 |
|
|---|
| [7633] | 20 | /*
|
|---|
| [7637] | 21 | * This files we require for our application
|
|---|
| 22 | * We include the files in init.php
|
|---|
| [7633] | 23 | */
|
|---|
| [7629] | 24 | $config['require'] = array();
|
|---|
| [7631] | 25 | $config['require'][] = $config['folder_class'] . 'ErrorHandler.php';
|
|---|
| [7629] | 26 | $config['require'][] = $config['folder_class'] . 'LogHandler.class.php';
|
|---|
| 27 | $config['require'][] = $config['folder_class'] . 'FileHandler.class.php';
|
|---|
| 28 | $config['require'][] = $config['folder_class'] . 'KMLFile.class.php';
|
|---|
| 29 | $config['require'][] = $config['folder_class'] . 'KMLPlacemark.class.php';
|
|---|
| 30 | ?>
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.