| Revision: | 1.11 |
| Committed: | Sat Mar 17 17:34:40 2001 UTC (24 years, 7 months ago) by pjm2 |
| Branch: | MAIN |
| Changes since 1.10: | +1 -1 lines |
| Log Message: | Altered the config to use the php title incluse, rather than the static one. |
| # | 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 | ); |
| 19 | |
| 20 | $alertLevelColours = Array ( |
| 21 | "#009900", |
| 22 | "#990000", |
| 23 | "#ff6666", |
| 24 | "#ff6600", |
| 25 | "#ff0000" |
| 26 | ); |
| 27 | ?> |