Changeset 502 for trunk/owa_metric.php
- Timestamp:
- 08/24/08 02:05:36 (5 months ago)
- Files:
-
- 1 modified
-
trunk/owa_metric.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/owa_metric.php
r501 r502 52 52 */ 53 53 var $params = array(); 54 55 var $db; 54 55 /** 56 * The lables for calculated measures 57 * 58 * @var array 59 */ 60 var $labels = array(); 56 61 57 62 /** … … 63 68 function owa_metric($params = '') { 64 69 65 return $this->__construct($params);70 return owa_metric::__construct($params); 66 71 } 67 72 … … 412 417 413 418 } 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 414 442 } 415 443
