You are here

private function FrxReport::get_data in Forena Reports 7

Same name and namespace in other branches
  1. 6.2 FrxReport.inc \FrxReport::get_data()
  2. 6 FrxReport.inc \FrxReport::get_data()
  3. 7.2 FrxReport.inc \FrxReport::get_data()
  4. 7.3 FrxReport.inc \FrxReport::get_data()

Get the data block

Parameters

$block:

Return value

unknown_type

1 call to FrxReport::get_data()
FrxReport::render_section in ./FrxReport.inc
Recursive report renderer Walks the nodes rendering the report.

File

./FrxReport.inc, line 94
Basic report provider. Controls the rendering of the report.

Class

FrxReport

Code

private function get_data($block, $clause = '', $id = '') {

  //@TODO: Merge xml data parameters into the report paramters
  $this->cur_data = forena_invoke_data_provider($block, $this->cur_data, $clause);
  $this->teng
    ->push_data($this->cur_data, $id);
  if ($this->cur_data) {
    $this->blocks_loaded = TRUE;
  }
}