You are here

function feeds_ctools_plugin_type in Feeds 7

Same name and namespace in other branches
  1. 7.2 feeds.module \feeds_ctools_plugin_type()

Implements hook_ctools_plugin_type().

Related topics

File

./feeds.module, line 307
Feeds - basic API functions and hook implementations.

Code

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