You are here

public function FeedImportReader::formatPath in Feed Import 7.3

Override this to preprocess your paths before they are used in map().

Parameters

string $path Path to format:

Return value

mixed Formatted path

2 methods override FeedImportReader::formatPath()
FeedImportUniVectorReader::formatPath in feed_import_base/inc/feed_import_abstract.inc
Override this to preprocess your paths before they are used in map().
FeedImportVectorReader::formatPath in feed_import_base/inc/feed_import_abstract.inc
Override this to preprocess your paths before they are used in map().

File

feed_import_base/inc/feed_import_abstract.inc, line 104
This file contains abstract classes and interfaces for feed import.

Class

FeedImportReader
Abstract implementation of reader.

Code

public function formatPath($path) {
  return $path;
}