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.7 by pjm2, Thu Mar 15 17:37:59 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  
# Line 40 | Line 40 | function printAlert($machine, $alert) {
40      $alertLevel = $alertLevelNames[$alertLevel];
41      $initialAlertTime = strftime("%x %X", intval($initialAlertTime / 1000));
42  
43 <    echo <<<EOT
44 <    
45 <    <table border="0" cellspacing="5">
46 <      <tr>
47 <        <td><b>$attributeName</b></td>
48 <        <td>&nbsp;</td>
49 <        <td><font color="$alertColour" size="2"><b>$alertLevel</b></font></td>
50 <        <td>&nbsp;</td>
51 <      </tr>
52 <      <tr>
53 <        <td><font size="2">Threshold:</font></td>
54 <        <td>$thresholdValue</td>
55 <        <td><font size="2">Initially raised:</font></td>
56 <        <td>$initialAlertTime</td>
57 <      </tr>
58 <      <tr>
59 <        <td><font size="2">Alert value:</font></td>
60 <        <td><b>$value</b></td>
61 <        <td><!--Next alert time:--> </td>
62 <        <td><!--$timeTillNextAlert--> </td>
63 <      </tr>
64 <    </table>
65 <    
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  
68    printLine("");
69
74   }
75  
76 < function printReports($machine) {
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 <    echo <<<EOT
82 <        <center>
83 <          <font size="4">
84 <            <b>
85 <              Current alerts for $machine
86 <            </b>
87 <          </font>
88 <          <font size="2">
89 <            <br>Sorted by time, latest first.
90 <          </font>
91 <        </center>
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("");
92 <  
93 <    foreach($alertArray as $file_name) {
94 <        $input = file("$alertDirectory/$machine/$file_name");
95 <        $input = $input[0];
96 <        $alerts[] = $input;
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);
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  
# Line 117 | Line 157 | EOT;
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 125 | Line 165 | EOT;
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 132 | Line 173 | EOT;
173  
174         printLine("");
175  
176 <       printReports($machine);
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 >       else {
185 >           printReports($machine, $small);
186 >       }
187        
188     }
189     else {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines