public function FrxData::setValue in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 FrxData.inc \FrxData::setValue()
- 7.3 FrxData.inc \FrxData::setValue()
- 7.4 FrxData.inc \FrxData::setValue()
* Allows override of a value for the current context. *
Parameters
String $key: * @param String $value
File
- ./
FrxData.inc, line 44
Class
Code
public function setValue($key, $value) {
if (is_array($this->cur_context)) {
$this->cur_context[$key] = $value;
}
elseif (is_object($this->cur_context)) {
if (strpos($key, '@') === 0) {
$this->cur_context[$key] = $value;
}
else {
$this->cur_context->{$key} = $value;
}
}
}