You are here

Plugin API in Feeds 7

Same name and namespace in other branches
  1. 8.2 feeds.api.php \pluginapi
  2. 6 feeds.api.php \pluginapi
  3. 7.2 feeds.api.php \pluginapi

Feeds offers a CTools based plugin API. Fetchers, parsers and processors are declared to Feeds as plugins.

See also

feeds_feeds_plugins()

FeedsFetcher

FeedsParser

FeedsProcessor

File

./feeds.api.php, line 9

Functions

Namesort descending Location Description
hook_ctools_plugin_api ./feeds.api.php Example of a CTools plugin hook that needs to be implemented to make hook_feeds_plugins() discoverable by CTools and Feeds. The hook specifies that the hook_feeds_plugins() returns Feeds Plugin API version 1 style plugins.
hook_feeds_plugins ./feeds.api.php A hook_feeds_plugins() declares available Fetcher, Parser or Processor plugins to Feeds. For an example look at feeds_feeds_plugin(). For exposing this hook hook_ctools_plugin_api() MUST be implemented, too.