You are here

function feeds_tamper_ctools_plugin_type in Feeds Tamper 7

Implements hook_ctools_plugin_type().

File

./feeds_tamper.module, line 136
Feeds Tamper - basic API functions and hook implementations.

Code

function feeds_tamper_ctools_plugin_type() {
  return array(
    'plugins' => array(
      'use hooks' => FALSE,
      'defaults' => array(
        'validate' => FALSE,
        'multi' => FALSE,
        'category' => 'Other',
        'single' => FALSE,
        'default description' => '',
        'defaults' => array(),
      ),
    ),
  );
}