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.14 by pjm2, Wed Mar 21 12:07:59 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 "small";
45      }
46      else {
47          echo <<<EOT
# Line 73 | Line 73 | EOT;
73  
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 <         <p>&nbsp;</p>
83 <         <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
84 <          <tr>
85 <           <td>
86 <            <font color="white">
87 <             <b>
88 <              Current alerts for $machine
89 <             </b>
90 <             <font size="2">
91 <              <br>Sorted by time, latest first.
92 <             </font>
93 <            </font>
94 <           </td>
95 <          </tr>
96 <          <tr>
97 <           <td bgcolor="white">
81 >    if ($small == "true") {
82 >        
83 >    }
84 >    else {
85 >        echo <<<EOT
86 >             <p>&nbsp;</p>
87 >             <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
88 >               <tr>
89 >               <td>
90 >                <font color="white">
91 >                 <b>
92 >                  Current alerts for $machine
93 >                 </b>
94 >                 <font size="2">
95 >                  <br>Sorted by time, latest first.
96 >                 </font>
97 >                </font>
98 >               </td>
99 >              </tr>
100 >              <tr>
101 >               <td bgcolor="white">
102      
103   EOT;
104  
105 <    printLine("");
105 >        printLine("");
106 >    }
107    
108      if ($alertArray != FALSE) {
109  
# Line 109 | Line 114 | EOT;
114          }
115        
116          foreach ($alerts as $alert) {
117 <            printAlert($machine, $alert);
117 >            printAlert($machine, $alert, $small);
118          }
119      }
120      else {
# Line 117 | Line 122 | EOT;
122          printLine("");
123      }
124  
125 <    echo <<<EOT
126 <         </td>
127 <        </tr>
128 <       </table>
125 >    if ($small == "true") {
126 >        
127 >    }
128 >    else {
129 >        echo <<<EOT
130 >             </td>
131 >            </tr>
132 >           </table>
133   EOT;
134 +    }
135   }
136  
137  
# Line 148 | Line 158 | EOT;
158      print "</select>";
159  
160   ?>
161 + <input type="hidden" name="small" value="<?=$small?>">
162   <input type="submit" name="submit" value="Display">
163   </form>
164  
# Line 159 | Line 170 | EOT;
170             $machine_array = getdirArray($alertDirectory, 'asort');
171             if ($machine_array != FALSE) {
172                 foreach ($machine_array as $machine) {
173 <                   printReports($machine);
173 >                   printReports($machine, $small);
174                 }
175             }
176         }
177         else {
178 <           printReports($machine);
178 >           printReports($machine, $small);
179         }
180        
181     }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines