function forena_xml in Forena Reports 7.3
Same name and namespace in other branches
- 6.2 forena.module \forena_xml()
- 6 forena.module \forena_xml()
- 7.5 forena.module \forena_xml()
- 7.2 forena.module \forena_xml()
- 7.4 forena.module \forena_xml()
1 call to forena_xml()
- FeedsForenaBlockFetcherResult::getRaw in feeds/
FeedsForenaBlockFetcher.inc - Overrides parent::getRaw().
File
- ./
forena.module, line 403
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
Frx::Data()
->push($parms, 'parm');
return Frx::RepoMan()
->data($block_name);
}