90 |
|
|
91 |
|
printLine(""); |
92 |
|
|
93 |
< |
foreach($alertArray as $file_name) { |
94 |
< |
$input = file("$alertDirectory/$machine/$file_name"); |
95 |
< |
$input = $input[0]; |
96 |
< |
$alerts[] = $input; |
97 |
< |
} |
93 |
> |
if ($alertArray != FALSE) { |
94 |
> |
|
95 |
> |
foreach($alertArray as $file_name) { |
96 |
> |
$input = file("$alertDirectory/$machine/$file_name"); |
97 |
> |
$input = $input[0]; |
98 |
> |
$alerts[] = $input; |
99 |
> |
} |
100 |
|
|
101 |
< |
foreach ($alerts as $alert) { |
102 |
< |
printAlert($machine, $alert); |
101 |
> |
foreach ($alerts as $alert) { |
102 |
> |
printAlert($machine, $alert); |
103 |
> |
} |
104 |
|
} |
105 |
+ |
else { |
106 |
+ |
echo "There are currently no alerts held about <b>$machine</b>"; |
107 |
+ |
} |
108 |
|
} |
109 |
|
|
110 |
|
|
123 |
|
<option selected value="<? echo $machine ?>"><? echo $machine ?></option> |
124 |
|
<option value="">----------------</option> |
125 |
|
<? } |
126 |
< |
foreach($file_array as $file_name) { |
126 |
> |
foreach ($file_array as $file_name) { |
127 |
|
#if (is_dir($file_name)) { |
128 |
|
print "<option value=\"$file_name\">$file_name</option>"; |
129 |
|
#} |
138 |
|
|
139 |
|
printLine(""); |
140 |
|
|
141 |
< |
printReports($machine); |
141 |
> |
if ($machine == "ALL") { |
142 |
> |
$machine_array = getdirArray($alertDirectory, 'asort'); |
143 |
> |
foreach ($machine_array as $machine) { |
144 |
> |
printReports($machine); |
145 |
> |
} |
146 |
> |
} |
147 |
> |
else { |
148 |
> |
printReports($machine); |
149 |
> |
} |
150 |
|
|
151 |
|
} |
152 |
|
else { |