function hook_feeds_after_import in Feeds 6
Same name and namespace in other branches
- 8.2 feeds.api.php \hook_feeds_after_import()
- 7.2 feeds.api.php \hook_feeds_after_import()
- 7 feeds.api.php \hook_feeds_after_import()
Invoked after a feed source has been imported.
Parameters
$importer: FeedsImporter object that has been used for importing the feed.
$source: FeedsSource object that describes the source that has been imported.
Related topics
1 invocation of hook_feeds_after_import()
- FeedsSource::import in includes/
FeedsSource.inc - Import a feed: execute fetching, parsing and processing stage.
File
- ./
feeds.api.php, line 108 - Documentation of Feeds hooks.
Code
function hook_feeds_after_import(FeedsImporter $importer, FeedsSource $source) {
// See geotaxonomy module's implementation for an example.
}