You are here

function feeds_entity_processor_ctools_plugin_type in Feeds entity processor 7

Implements hook_ctools_plugin_type().

File

./feeds_entity_processor.module, line 31
Provides a generic entity processor for Feeds.

Code

function feeds_entity_processor_ctools_plugin_type() {
  return array(
    'properties' => array(
      'cache' => TRUE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
  );
}