You are here

public function FeedsFetcherResult::constructFilePath in Feeds 7.2

Constructs file name for saving the raw data.

1 call to FeedsFetcherResult::constructFilePath()
FeedsFetcherResult::saveRawToFile in plugins/FeedsFetcher.inc
Saves the raw fetcher result to a file.

File

plugins/FeedsFetcher.inc, line 110
Contains the FeedsFetcher and related classes.

Class

FeedsFetcherResult
Base class for all fetcher results.

Code

public function constructFilePath() {
  return $this
    ->getFeedsInProgressDir() . '/' . get_class($this) . REQUEST_TIME;
}