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.15
Committed: Sat Jun 30 11:24:37 2007 UTC (17 years, 4 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.14: +1 -1 lines
Log Message:
Tidy up PHP short tags.

File Contents

# User Rev Content
1 tdb 1.15 <?php
2 pjm2 1.1
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.11 $titleHTML = "title.inc.php";
10 pjm2 1.5 $bottomHTML = "bottom.inc";
11    
12 pjm2 1.7 $alertLevelNames = Array (
13 tdb 1.14 "Now OK",
14 pjm2 1.6 "Notice",
15     "Warning",
16     "Caution",
17 pjm2 1.12 "Critical!",
18     "Final Warning"
19 pjm2 1.6 );
20 pjm2 1.8
21     $alertLevelColours = Array (
22 pjm2 1.10 "#009900",
23 pjm2 1.13 "#9999ff",
24 pjm2 1.9 "#990000",
25 pjm2 1.13 "#ff9900",
26 pjm2 1.12 "#ff0000",
27     "#000099"
28 pjm2 1.8 );
29 pjm2 1.1 ?>