public function FeedsForenaBlockFetcherResult::getRaw in Forena Reports 7.4
Same name and namespace in other branches
- 7.5 feeds/FeedsForenaBlockFetcher.inc \FeedsForenaBlockFetcherResult::getRaw()
- 7.3 feeds/FeedsForenaBlockFetcher.inc \FeedsForenaBlockFetcherResult::getRaw()
Overrides parent::getRaw().
Overrides FeedsFetcherResult::getRaw
File
- feeds/
FeedsForenaBlockFetcher.inc, line 17
Class
Code
public function getRaw() {
$xml = forena_xml($this->block, $this->data);
$raw = '';
if (is_object($xml) && method_exists($xml, 'asXML')) {
$raw = $xml
->asXML();
}
return $this
->sanitizeRaw($raw);
}