You are here

private function FeedsExcelParser::initFilePath in Feeds Excel 7.2

Init file path.

1 call to FeedsExcelParser::initFilePath()
FeedsExcelParser::parse in ./FeedsExcelParser.inc

File

./FeedsExcelParser.inc, line 20
Contains FeedsExcelParser.

Class

FeedsExcelParser
Provides feeds parser class for Excel files.

Code

private function initFilePath(FeedsFetcherResult $fetcher_result) {
  if (!isset($this->file_path)) {
    $this->file_path = drupal_realpath($fetcher_result
      ->getFilePath());
  }
}