Revision: | 1.12 |
Committed: | Wed Mar 21 16:46:09 2001 UTC (23 years, 8 months ago) by pjm2 |
Branch: | MAIN |
Changes since 1.11: | +4 -2 lines |
Log Message: | Added the "Final Warning" and a colour for it (dark blue). |
# | Content |
---|---|
1 | <? |
2 | |
3 | # Settings for the 'realtime' alert webpages |
4 | |
5 | $alertDirectory = "/home/proj/co600_10/webroot/alert"; |
6 | $formMethod = "GET"; |
7 | $thisPage = "alerts.php"; |
8 | |
9 | $titleHTML = "title.inc.php"; |
10 | $bottomHTML = "bottom.inc"; |
11 | |
12 | $alertLevelNames = Array ( |
13 | "Now okay", |
14 | "Notice", |
15 | "Warning", |
16 | "Caution", |
17 | "Critical!", |
18 | "Final Warning" |
19 | ); |
20 | |
21 | $alertLevelColours = Array ( |
22 | "#009900", |
23 | "#990000", |
24 | "#ff6666", |
25 | "#ff6600", |
26 | "#ff0000", |
27 | "#000099" |
28 | ); |
29 | ?> |