public function FeedsFetcherResult::getRaw in Feeds 8.2
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 FeedsFetcherResult::getRaw()
- FeedsFetcherResult::getFilePath in lib/
Drupal/ feeds/ FeedsFetcherResult.php - Get a path to a temporary file containing the resource provided by the fetcher.
2 methods override FeedsFetcherResult::getRaw()
- FeedsFileFetcherResult::getRaw in lib/
Drupal/ feeds/ FeedsFileFetcherResult.php - Overrides parent::getRaw().
- FeedsHTTPFetcherResult::getRaw in lib/
Drupal/ feeds/ FeedsHTTPFetcherResult.php - Overrides FeedsFetcherResult::getRaw();
File
- lib/
Drupal/ feeds/ FeedsFetcherResult.php, line 26
Class
- FeedsFetcherResult
- Base class for all fetcher results.
Namespace
Drupal\feedsCode
public function getRaw() {
return $this
->sanitizeRaw($this->raw);
}