You are here

function context_ctools_plugin_type in Context 7.3

Implementation of hook_ctools_plugin_type().

File

./context.module, line 135

Code

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