You are here

function forena_xml in Forena Reports 7.2

Same name and namespace in other branches
  1. 6.2 forena.module \forena_xml()
  2. 6 forena.module \forena_xml()
  3. 7.5 forena.module \forena_xml()
  4. 7.3 forena.module \forena_xml()
  5. 7.4 forena.module \forena_xml()

File

./forena.module, line 387

Code

function forena_xml($block_name, $parms = array()) {
  include_once 'forena.common.inc';
  drupal_alter('forena_parameters', $block_name, $parms);

  //now invoke the data provider with the correct params
  FrxData::instance()
    ->push($parms, 'parm');
  return FrxReportGenerator::instance()
    ->block_xml($block_name, $parms);
}