Skip to content
Snippets Groups Projects
Commit 0619a600 authored by Alex Barth's avatar Alex Barth
Browse files

#711664 neclimdul: guarantee compatibility with CTools 1.4 by declaring that...

#711664 neclimdul: guarantee compatibility with CTools 1.4  by declaring that Feeds uses hooks to define plugins via hook_ctools_plugin_plugins().
parent ba3ae650
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,8 @@
Feeds 6.x 1.0 xxxxx xx, 2010-xx-xx
----------------------------------
- #711664 neclimdul: guarantee compatibility with CTools 1.4 by declaring that
Feeds uses hooks to define plugins via hook_ctools_plugin_plugins().
- #718460 jerdavis: In FeedsNodeProcessor, clear items only for the current
importer id.
- #718474 jerdavis: In FeedsNodeProcessor, check for duplicate items within
......
......@@ -219,6 +219,18 @@ function feeds_ctools_plugin_api($owner, $api) {
}
}
/**
* Implementation of hook_ctools_plugin_plugins().
*
* Psuedo hook defintion plugin system options and defaults.
*/
function feeds_ctools_plugin_plugins() {
return array(
'cache' => TRUE,
'use hooks' => TRUE,
);
}
/**
* Implementation of hook_feeds_plugins().
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment