You are here

function tamper_ctools_plugin_type in Tamper 7

Implements hook_ctools_plugin_type().

File

./tamper.module, line 11
A generic framework for modifying data.

Code

function tamper_ctools_plugin_type() {
  return array(
    'plugins' => array(
      'use hooks' => FALSE,
      'cache' => TRUE,
      'defaults' => array(
        'compatible' => array(),
      ),
      'classes' => array(
        'class',
      ),
      'process' => '_tamper_process_plugin_definition',
    ),
  );
}