Changeset 502 for trunk/owa_metric.php

Show
Ignore:
Timestamp:
08/24/08 02:05:36 (5 months ago)
Author:
padams
Message:

addng open flash cahrt wdget rework

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/owa_metric.php

    r501 r502  
    5252         */ 
    5353        var $params = array(); 
    54          
    55         var $db; 
     54                 
     55        /** 
     56         * The lables for calculated measures 
     57         * 
     58         * @var array 
     59         */ 
     60        var $labels = array(); 
    5661 
    5762        /** 
     
    6368        function owa_metric($params = '') { 
    6469 
    65                 return $this->__construct($params); 
     70                return owa_metric::__construct($params); 
    6671        } 
    6772         
     
    412417         
    413418        } 
     419         
     420         
     421        /** 
     422         * Set the labels of the measures 
     423         * 
     424         */ 
     425        function setLabels($array) { 
     426         
     427                $this->labels = $array; 
     428                return; 
     429        } 
     430         
     431        /** 
     432         * Retrieve the labels of the measures 
     433         * 
     434         */ 
     435        function getLabels() { 
     436         
     437                return $this->labels; 
     438         
     439        } 
     440         
     441         
    414442} 
    415443