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.13 by pjm2, Wed Mar 21 11:58:26 2001 UTC vs.
Revision 1.19 by pjm2, Wed Mar 21 16:48:57 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 <    if ($small) {
44 <    
43 >    if ($small == "true") {
44 >        echo <<<EOT
45 >            <tr>
46 >             <td width="50">
47 >              &nbsp;
48 >             </td>
49 >             <td align="left">
50 >              <font size="3" color="$alertColour"><b>$alertLevel</b></font>
51 >             </td>
52 >             <td align="left">
53 >              <font size="3">$attributeName</font>
54 >             </td>
55 >             <td>
56 >              &nbsp;
57 >             </td>
58 >            </tr>
59 > EOT;
60      }
61      else {
62          echo <<<EOT
# Line 73 | Line 88 | EOT;
88  
89   }
90  
91 < function printReports($machine) {
91 > function printReports($machine, $small="") {
92      # Get a list of all files in the machine's directory.
93      include("alerts_config.inc.php");
94      $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
95    
96 <    echo <<<EOT
97 <         <p>&nbsp;</p>
98 <         <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
99 <          <tr>
100 <           <td>
101 <            <font color="white">
102 <             <b>
103 <              Current alerts for $machine
104 <             </b>
105 <             <font size="2">
106 <              <br>Sorted by time, latest first.
107 <             </font>
108 <            </font>
109 <           </td>
110 <          </tr>
111 <          <tr>
112 <           <td bgcolor="white">
96 >    if ($small == "true") {
97 >        echo <<<EOT
98 >           <table border="0" cellpadding="2" cellspacing="0">
99 >            <tr>
100 >             <td colspan="4">
101 >              <font size="+1"><b>$machine</b></font>
102 >             </td>
103 >            </tr>
104 > EOT;
105 >    }
106 >    else {
107 >        echo <<<EOT
108 >             <p>&nbsp;</p>
109 >             <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
110 >               <tr>
111 >               <td>
112 >                <font color="white">
113 >                 <b>
114 >                  Current alerts for $machine
115 >                 </b>
116 >                 <font size="2">
117 >                  <br>Sorted by time, latest first.
118 >                 </font>
119 >                </font>
120 >               </td>
121 >              </tr>
122 >              <tr>
123 >               <td bgcolor="white">
124      
125   EOT;
126  
127 <    printLine("");
127 >        printLine("");
128 >    }
129    
130      if ($alertArray != FALSE) {
131  
# Line 109 | Line 136 | EOT;
136          }
137        
138          foreach ($alerts as $alert) {
139 <            printAlert($machine, $alert);
139 >            printAlert($machine, $alert, $small);
140          }
141      }
142      else {
# Line 117 | Line 144 | EOT;
144          printLine("");
145      }
146  
147 <    echo <<<EOT
148 <         </td>
149 <        </tr>
150 <       </table>
147 >    if ($small == "true") {
148 >        echo "</table>";
149 >    }
150 >    else {
151 >        echo <<<EOT
152 >             </td>
153 >            </tr>
154 >           </table>
155   EOT;
156 +    }
157   }
158  
159  
# Line 129 | Line 161 | EOT;
161  
162   <? include($titleHTML); ?>
163  
164 < <? printLine("Display the latest alerts for a host"); ?>
164 > <? if (!$hideform) { ?>
165  
166 + <? printLine("Latest alerts for hosts"); ?>
167 +
168   <form method="<? echo $formMethod ?>" action="<? echo $thisPage ?>">
169   <?
170  
# Line 148 | Line 182 | EOT;
182      print "</select>";
183  
184   ?>
185 + <input type="hidden" name="small" value="<?=$small?>">
186   <input type="submit" name="submit" value="Display">
187   </form>
188  
189 + <? } ?>
190 +
191   <? if ($machine) {
192  
193         printLine("");
# Line 159 | Line 196 | EOT;
196             $machine_array = getdirArray($alertDirectory, 'asort');
197             if ($machine_array != FALSE) {
198                 foreach ($machine_array as $machine) {
199 <                   printReports($machine);
199 >                   printReports($machine, $small);
200                 }
201             }
202         }
203         else {
204 <           printReports($machine);
204 >           printReports($machine, $small);
205         }
206        
207     }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines