You are here

public function FrxContext::setValue in Forena Reports 7.4

Same name and namespace in other branches
  1. 7.5 FrxContext.inc \FrxContext::setValue()
  2. 7.3 FrxContext.inc \FrxContext::setValue()
1 method overrides FrxContext::setValue()
FrxData::setValue in ./FrxData.inc
Allows override of a value for the current context.

File

./FrxContext.inc, line 21

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 setValue($key, $value, $context = '') {
  $this->values[$key] = $value;
}