You are here

function forena_xml in Forena Reports 6.2

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

Block XML page Enter description here ...

1 call to forena_xml()
forena_block_xml in ./forena.module
Send report block XML

File

./forena.module, line 482

Code

function forena_xml($block_name, $parms = array()) {
  require_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');
  $xml = FrxReportGenerator::instance()
    ->invoke_data_provider($block_name, $parms);
  return $xml;
}