public function FeedsImportBatch::getRaw in Feeds 7
Same name and namespace in other branches
- 6 includes/FeedsBatch.inc \FeedsImportBatch::getRaw()
Return value
The raw content from the source as a string.
Throws
Exception Extending classes MAY throw an exception if a problem occurred.
1 call to FeedsImportBatch::getRaw()
- FeedsImportBatch::getFilePath in includes/
FeedsBatch.inc - Get a path to a temporary file containing the resource provided by the fetcher.
2 methods override FeedsImportBatch::getRaw()
- FeedsFileBatch::getRaw in plugins/
FeedsFileFetcher.inc - Implements FeedsImportBatch::getRaw();
- FeedsHTTPBatch::getRaw in plugins/
FeedsHTTPFetcher.inc - Implements FeedsImportBatch::getRaw();
File
- includes/
FeedsBatch.inc, line 180
Class
- FeedsImportBatch
- A FeedsImportBatch wraps the actual content retrieved from a FeedsSource. On import, it is created on the fetching stage and passed through the parsing and processing stage where it is normalized and consumed.
Code
public function getRaw() {
return $this->raw;
}