You are here

public function FrxContext::getValue in Forena Reports 7.5

Same name and namespace in other branches
  1. 7.3 FrxContext.inc \FrxContext::getValue()
  2. 7.4 FrxContext.inc \FrxContext::getValue()

File

./FrxContext.inc, line 16

Class

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

Code

public function getValue($key, $context = '') {
  $value = @$this->values[$key];
  return $value;
}