ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/alerts/alerts.php
(Generate patch)

Comparing projects/cms/source/reports/php/alerts/alerts.php (file contents):
Revision 1.3 by pjm2, Thu Mar 15 16:32:04 2001 UTC vs.
Revision 1.15 by pjm2, Wed Mar 21 12:13:15 2001 UTC

# Line 22 | Line 22 | function getValue($value, $alert) {
22      return $matches[1];
23   }
24  
25 < function printAlert($machine, $alert) {
25 > function printAlert($machine, $alert, $small="") {
26 >
27 >    include("alerts_config.inc.php");
28 >
29      $alertLevel = getValue("alertLevel", $alert);
30      $lastAlert = getValue("lastAlert", $alert);
31      $thresholdLevel = getValue("thresholdLevel", $alert);
# Line 32 | Line 35 | function printAlert($machine, $alert) {
35      $attributeName = getValue("attributeName", $alert);
36      $timeTillNextAlert = getValue("timeTillNextAlert", $alert);
37      $initialAlertTime = getValue("initialAlertTime", $alert);
38 <    echo "<b>$alertLevel</b>$alert<br>";
38 >
39 >    $alertColour = $alertLevelColours[$alertLevel];
40 >    $alertLevel = $alertLevelNames[$alertLevel];
41 >    $initialAlertTime = strftime("%x %X", intval($initialAlertTime / 1000));
42 >
43 >    if ($small == "true") {
44 >        echo "small";
45 >    }
46 >    else {
47 >        echo <<<EOT
48 >        
49 >        <table border="0" cellspacing="5">
50 >          <tr>
51 >            <td><b>$attributeName</b></td>
52 >            <td>&nbsp;</td>
53 >            <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td>
54 >            <td>&nbsp;</td>
55 >          </tr>
56 >          <tr>
57 >            <td><font size="2">Threshold:</font></td>
58 >            <td>$thresholdValue</td>
59 >            <td><font size="2">Initially raised:</font></td>
60 >            <td>$initialAlertTime</td>
61 >          </tr>
62 >          <tr>
63 >            <td><font size="2">Alert value:</font></td>
64 >            <td><b>$value</b></td>
65 >            <td><!--Next alert time:--> </td>
66 >            <td><!--$timeTillNextAlert--> </td>
67 >          </tr>
68 >        </table>
69 >            
70 > EOT;
71 >        printLine("");
72 >    }
73 >
74   }
75  
76 + function printReports($machine, $small="") {
77 +    # Get a list of all files in the machine's directory.
78 +    include("alerts_config.inc.php");
79 +    $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
80 +  
81 +    if ($small == "true") {
82 +        echo <<<EOT
83 +           <table border="0" cellpadding="2" cellspacing="2" bgcolor="#ffffff" width="100%">
84 +            <tr>
85 +             <td bgcolor="#000066">
86 +              <font color="white"><b>$machine</b></font>
87 +             </td>
88 +            </tr>
89 + EOT;
90 +    }
91 +    else {
92 +        echo <<<EOT
93 +             <p>&nbsp;</p>
94 +             <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
95 +               <tr>
96 +               <td>
97 +                <font color="white">
98 +                 <b>
99 +                  Current alerts for $machine
100 +                 </b>
101 +                 <font size="2">
102 +                  <br>Sorted by time, latest first.
103 +                 </font>
104 +                </font>
105 +               </td>
106 +              </tr>
107 +              <tr>
108 +               <td bgcolor="white">
109 +    
110 + EOT;
111 +
112 +        printLine("");
113 +    }
114 +  
115 +    if ($alertArray != FALSE) {
116 +
117 +        foreach($alertArray as $file_name) {
118 +            $input = file("$alertDirectory/$machine/$file_name");
119 +            $input = $input[0];
120 +            $alerts[] = $input;
121 +        }
122 +      
123 +        foreach ($alerts as $alert) {
124 +            printAlert($machine, $alert, $small);
125 +        }
126 +    }
127 +    else {
128 +        echo "There are currently no alerts held about <b>$machine</b>";
129 +        printLine("");
130 +    }
131 +
132 +    if ($small == "true") {
133 +        echo "</table>";
134 +    }
135 +    else {
136 +        echo <<<EOT
137 +             </td>
138 +            </tr>
139 +           </table>
140 + EOT;
141 +    }
142 + }
143 +
144 +
145   ?>
146  
147   <? include($titleHTML); ?>
# Line 50 | Line 157 | function printAlert($machine, $alert) {
157          <option selected value="<? echo $machine ?>"><? echo $machine ?></option>
158          <option value="">----------------</option>
159      <? }
160 <    foreach($file_array as $file_name) {
160 >    foreach ($file_array as $file_name) {
161          #if (is_dir($file_name)) {
162              print "<option value=\"$file_name\">$file_name</option>";
163          #}
# Line 58 | Line 165 | function printAlert($machine, $alert) {
165      print "</select>";
166  
167   ?>
168 + <input type="hidden" name="small" value="<?=$small?>">
169   <input type="submit" name="submit" value="Display">
170   </form>
171  
# Line 65 | Line 173 | function printAlert($machine, $alert) {
173  
174         printLine("");
175  
176 <       # Get a list of all files in the machine's directory.
177 <       $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
178 <      
179 <       foreach($alertArray as $file_name) {
180 <           $input = file("$alertDirectory/$machine/$file_name");
181 <           $input = $input[0];
182 <           $alerts[] = $input;
176 >       if ($machine == "ALL") {
177 >           $machine_array = getdirArray($alertDirectory, 'asort');
178 >           if ($machine_array != FALSE) {
179 >               foreach ($machine_array as $machine) {
180 >                   printReports($machine, $small);
181 >               }
182 >           }
183         }
184 <      
185 <       foreach ($alerts as $alert) {
78 <           printAlert($machine, $alert);
184 >       else {
185 >           printReports($machine, $small);
186         }
187 <
187 >      
188     }
189 +   else {
190 +       printLine("");
191 +   }
192  
193   ?>
84
85 <? printLine(""); ?>
194  
195   <? include($bottomHTML); ?>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines