You are here

public function FrxData::pop in Forena Reports 7.4

Same name and namespace in other branches
  1. 6.2 FrxData.inc \FrxData::pop()
  2. 7.2 FrxData.inc \FrxData::pop()
  3. 7.3 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 287

Class

FrxData

Code

public function pop() {
  $this->id = array_pop($this->id_stack);
  $this->cur_context = array_pop($this->data_stack);
  $this->cur_context_xml = '';
}