function feeds_tamper_get_plugins in Feeds Tamper 6
Same name and namespace in other branches
- 7 feeds_tamper.inc \feeds_tamper_get_plugins()
Get all available plugins.
Return value
array An associative array where the keys are the plugin keys and the values are the plugin info arrays as defined in a plugin include file.
Related topics
2 calls to feeds_tamper_get_plugins()
- feeds_tamper_feeds_after_parse in ./
feeds_tamper.module - Implementation of hook_feeds_after_parse().
- feeds_tamper_ui_add_plugin_form in feeds_tamper_ui/
feeds_tamper_ui.admin.inc
File
- ./
feeds_tamper.inc, line 170 - Version agnostic parts of feeds_tamper.module.
Code
function feeds_tamper_get_plugins() {
ctools_include('plugins');
return ctools_get_plugins('feeds_tamper', 'plugins');
}