function feeds_tamper_ctools_plugin_plugins in Feeds Tamper 6
Implementation of hook_ctools_plugin_TYPE().
Psuedo hook defintion plugin system options and defaults.
File
- ./
feeds_tamper.module, line 151 - Feeds Tamper - basic API functions and hook implementations.
Code
function feeds_tamper_ctools_plugin_plugins() {
return array(
'use hooks' => FALSE,
'defaults' => array(
'validate' => FALSE,
'multi' => FALSE,
'category' => 'Other',
'single' => FALSE,
'default description' => '',
),
);
}