Plugin API in Feeds 6
Same name and namespace in other branches
- 8.2 feeds.api.php \pluginapi
- 7.2 feeds.api.php \pluginapi
- 7 feeds.api.php \pluginapi
Feeds offers a CTools based plugin API. Fetchers, parsers and processors are declared to Feeds as plugins.
See also
File
- ./
feeds.api.php, line 8 - Documentation of Feeds hooks.
Functions
Name | Location | Description |
---|---|---|
hook_ctools_plugin_api |
./ |
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 |
./ |
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. |