You are here

function relation_feeds_ctools_plugin_type in Relation 7

Implements hook_ctools_plugin_type().

File

relation_feeds/relation_feeds.module, line 20
Relation feeds integration module.

Code

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