public function FrxData::pop in Forena Reports 7.2
Same name and namespace in other branches
- 6.2 FrxData.inc \FrxData::pop()
- 7.3 FrxData.inc \FrxData::pop()
- 7.4 FrxData.inc \FrxData::pop()
Remove data from the data stack. This will make data unavaiable when we leave the context of the current nested reports.
Parameters
$id:
Return value
mixed
File
- ./
FrxData.inc, line 88
Class
Code
public function pop() {
$this->id = array_pop($this->id_stack);
$this->cur_context = array_pop($this->data_stack);
}