You are here

function hook_feeds_after_import in Feeds 8.2

Same name and namespace in other branches
  1. 6 feeds.api.php \hook_feeds_after_import()
  2. 7.2 feeds.api.php \hook_feeds_after_import()
  3. 7 feeds.api.php \hook_feeds_after_import()

Invoked after a feed source has been imported.

Parameters

FeedsSource $source: FeedsSource object that describes the source that has been imported.

Related topics

1 invocation of hook_feeds_after_import()
FeedsSource::import in lib/Drupal/feeds/FeedsSource.php
Import a source: execute fetching, parsing and processing stage.

File

./feeds.api.php, line 189
Documentation of Feeds hooks.

Code

function hook_feeds_after_import(FeedsSource $source) {

  // See geotaxonomy module's implementation for an example.
}