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