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

Comparing projects/cms/source/reports/php/latest/latest.php (file contents):
Revision 1.25 by pjm2, Fri Mar 16 18:53:02 2001 UTC vs.
Revision 1.27 by pjm2, Sat Mar 17 22:03:33 2001 UTC

# Line 54 | Line 54 | EOT;
54  
55  
56   # show a bar-represented value.
57 < function showBar($title, $value, $max, $units, $input) {
57 > function showBar($title, $value, $max, $units, $input, $arrange='normal') {
58  
59      include("latest_config.inc.php");
60  
# Line 68 | Line 68 | function showBar($title, $value, $max, $units, $input)
68      }
69      if (empty($value) || empty($max)) {
70          return;
71 +    }
72 +
73 +    if ($arrange == 'swap') {
74 +        $value = $max - $value;
75      }
76  
77      $width = intval($max_width * $value / $max);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines