public function FeedsHTTPCacheItem::setFilePath in Feeds 7.2
Sets file path.
Parameters
string $file_path: The file path to set.
2 calls to FeedsHTTPCacheItem::setFilePath()
- FeedsHTTPCacheItem::saveResponseData in includes/
FeedsHTTPCacheItem.inc - Writes data to a file.
- FeedsHTTPCacheItem::__construct in includes/
FeedsHTTPCacheItem.inc - FeedsHTTPCacheItem object constructor.
File
- includes/
FeedsHTTPCacheItem.inc, line 93 - Contains FeedsHTTPCacheItem class.
Class
- FeedsHTTPCacheItem
- Class of a cached item.
Code
public function setFilePath($file_path) {
$this->file_path = $file_path;
}