| 70 |
|
} |
| 71 |
|
|
| 72 |
|
function printReports($machine) { |
| 73 |
< |
# Get a list of all files in the machine's directory. |
| 74 |
< |
include("alerts_config.inc.php"); |
| 75 |
< |
$alertArray = getdirArray("$alertDirectory/$machine", 'rsort'); |
| 73 |
> |
# Get a list of all files in the machine's directory. |
| 74 |
> |
include("alerts_config.inc.php"); |
| 75 |
> |
$alertArray = getdirArray("$alertDirectory/$machine", 'rsort'); |
| 76 |
> |
|
| 77 |
> |
echo <<<EOT |
| 78 |
> |
<table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%"> |
| 79 |
> |
<tr> |
| 80 |
> |
<td> |
| 81 |
> |
<font color="white"> |
| 82 |
> |
<b> |
| 83 |
> |
Current alerts for $machine |
| 84 |
> |
</b> |
| 85 |
> |
<font size="2"> |
| 86 |
> |
<br>Sorted by time, latest first. |
| 87 |
> |
</font> |
| 88 |
> |
</font> |
| 89 |
> |
</td> |
| 90 |
> |
</tr> |
| 91 |
> |
<tr> |
| 92 |
> |
<td bgcolor="white"> |
| 93 |
> |
|
| 94 |
> |
EOT; |
| 95 |
> |
|
| 96 |
> |
printLine(""); |
| 97 |
> |
|
| 98 |
> |
if ($alertArray != FALSE) { |
| 99 |
> |
|
| 100 |
> |
foreach($alertArray as $file_name) { |
| 101 |
> |
$input = file("$alertDirectory/$machine/$file_name"); |
| 102 |
> |
$input = $input[0]; |
| 103 |
> |
$alerts[] = $input; |
| 104 |
> |
} |
| 105 |
|
|
| 106 |
< |
foreach($alertArray as $file_name) { |
| 107 |
< |
$input = file("$alertDirectory/$machine/$file_name"); |
| 108 |
< |
$input = $input[0]; |
| 109 |
< |
$alerts[] = $input; |
| 110 |
< |
} |
| 111 |
< |
|
| 112 |
< |
foreach ($alerts as $alert) { |
| 113 |
< |
printAlert($machine, $alert); |
| 114 |
< |
} |
| 106 |
> |
foreach ($alerts as $alert) { |
| 107 |
> |
printAlert($machine, $alert); |
| 108 |
> |
} |
| 109 |
> |
} |
| 110 |
> |
else { |
| 111 |
> |
echo "There are currently no alerts held about <b>$machine</b>"; |
| 112 |
> |
} |
| 113 |
> |
|
| 114 |
> |
echo <<<EOT |
| 115 |
> |
</td> |
| 116 |
> |
</tr> |
| 117 |
> |
</table> |
| 118 |
> |
EOT; |
| 119 |
|
} |
| 120 |
|
|
| 121 |
|
|
| 134 |
|
<option selected value="<? echo $machine ?>"><? echo $machine ?></option> |
| 135 |
|
<option value="">----------------</option> |
| 136 |
|
<? } |
| 137 |
< |
foreach($file_array as $file_name) { |
| 137 |
> |
foreach ($file_array as $file_name) { |
| 138 |
|
#if (is_dir($file_name)) { |
| 139 |
|
print "<option value=\"$file_name\">$file_name</option>"; |
| 140 |
|
#} |
| 149 |
|
|
| 150 |
|
printLine(""); |
| 151 |
|
|
| 152 |
< |
printReports($machine); |
| 152 |
> |
if ($machine == "ALL") { |
| 153 |
> |
$machine_array = getdirArray($alertDirectory, 'asort'); |
| 154 |
> |
foreach ($machine_array as $machine) { |
| 155 |
> |
printReports($machine); |
| 156 |
> |
} |
| 157 |
> |
} |
| 158 |
> |
else { |
| 159 |
> |
printReports($machine); |
| 160 |
> |
} |
| 161 |
|
|
| 162 |
|
} |
| 163 |
|
else { |