| # | Line 1 | Line 1 | |
|---|---|---|
| 1 | < | <? |
| 1 | > | <?php |
| 2 | ||
| 3 | # Settings for the 'realtime' alert webpages | |
| 4 | ||
| # | Line 6 | Line 6 | $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 OK", |
| 14 | + | "Notice", |
| 15 | + | "Warning", |
| 16 | + | "Caution", |
| 17 | + | "Critical!", |
| 18 | + | "Final Warning" |
| 19 | + | ); |
| 20 | + | |
| 21 | + | $alertLevelColours = Array ( |
| 22 | + | "#009900", |
| 23 | + | "#9999ff", |
| 24 | + | "#990000", |
| 25 | + | "#ff9900", |
| 26 | + | "#ff0000", |
| 27 | + | "#000099" |
| 28 | + | ); |
| 29 | ?> | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |