FrxContext.inc in Forena Reports 7.4
File
FrxContext.inc
View source
<?php
class FrxContext {
private $values;
public function __construct() {
$this->values = array();
}
public function getValue($key, $context = '') {
$value = @$this->values[$key];
return $value;
}
public function setValue($key, $value, $context = '') {
$this->values[$key] = $value;
}
}
Classes
Name |
Description |
FrxContext |
Interface class for Data contexts. The basic methods are implemented as below. This is too simple for real use in
Forena, but serves as a model for implementation.
@author davidmetzler |