ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/alerts/alerts_config.inc.php
Revision: 1.8
Committed: Thu Mar 15 17:14:59 2001 UTC (23 years, 8 months ago) by pjm2
Branch: MAIN
Changes since 1.7: +8 -1 lines
Log Message:
Added alert level colours and altered the layout so it makes a bit more
sense for service checks.

File Contents

# User Rev Content
1 pjm2 1.1 <?
2    
3     # Settings for the 'realtime' alert webpages
4    
5     $alertDirectory = "/home/proj/co600_10/webroot/alert";
6 pjm2 1.3 $formMethod = "GET";
7 pjm2 1.4 $thisPage = "alerts.php";
8 pjm2 1.1
9 pjm2 1.5 $titleHTML = "title.inc";
10     $bottomHTML = "bottom.inc";
11    
12 pjm2 1.7 $alertLevelNames = Array (
13 pjm2 1.6 "Okay",
14     "Notice",
15     "Warning",
16     "Caution",
17     "Critical"
18     );
19 pjm2 1.8
20     $alertLevelColours = Array (
21     "#00ff00",
22     "#000000",
23     "#ff6666",
24     "#ff6600",
25     "#ff0000"
26     );
27 pjm2 1.1 ?>