public function FeedsImportBatch::getRaw in Feeds 6
Same name and namespace in other branches
- 7 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
2 methods override FeedsImportBatch::getRaw()
- FeedsFileBatch::getRaw in plugins/
FeedsFileFetcher.inc - Implementation of FeedsImportBatch::getRaw();
- FeedsHTTPBatch::getRaw in plugins/
FeedsHTTPFetcher.inc - Implementation of FeedsImportBatch::getRaw();
File
- includes/
FeedsBatch.inc, line 182
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;
}