context_ctools_plugin_type

  1. drupal
    1. 7 context.module function
Drupal 7 context_ctools_plugin_type()

Implementation of hook_ctools_plugin_type().

File

sites/all/modules/context/context.module, line 135

Code

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