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.6 by pjm2, Thu Mar 15 17:27:34 2001 UTC vs.
Revision 1.8 by pjm2, Fri Mar 16 19:13:59 2001 UTC

# Line 70 | Line 70 | EOT;
70   }
71  
72   function printReports($machine) {
73 <   # Get a list of all files in the machine's directory.
74 <   include("alerts_config.inc.php");
75 <   $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
73 >    # Get a list of all files in the machine's directory.
74 >    include("alerts_config.inc.php");
75 >    $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
76 >  
77 >    echo <<<EOT
78 >        <center>
79 >          <font size="4">
80 >            <b>
81 >              Current alerts for $machine
82 >            </b>
83 >          </font>
84 >          <font size="2">
85 >            <br>Sorted by time, latest first.
86 >          </font>
87 >        </center>
88 >    
89 > EOT;
90 >
91 >    printLine("");
92 >  
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($alertArray as $file_name) {
102 <       $input = file("$alertDirectory/$machine/$file_name");
103 <       $input = $input[0];
104 <       $alerts[] = $input;
105 <   }
106 <      
107 <   foreach ($alerts as $alert) {
84 <       printAlert($machine, $alert);
85 <   }
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines