function feeds_tamper_get_plugins in Feeds Tamper 7
Same name and namespace in other branches
- 6 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
3 calls to feeds_tamper_get_plugins()
- feeds_tamper_feeds_after_parse in ./
feeds_tamper.module - Implements hook_feeds_after_parse().
- feeds_tamper_load_by_importer in ./
feeds_tamper.inc - Load plugin instances by importer id.
- feeds_tamper_ui_add_plugin_form in feeds_tamper_ui/
feeds_tamper_ui.admin.inc - Add plugin form.
File
- ./
feeds_tamper.inc, line 236 - Version agnostic parts of feeds_tamper.module.
Code
function feeds_tamper_get_plugins() {
ctools_include('plugins');
return ctools_get_plugins('feeds_tamper', 'plugins');
}