You are here

function spaces_ctools_plugin_type in Spaces 7.3

Same name and namespace in other branches
  1. 7 spaces.module \spaces_ctools_plugin_type()

Implementation of hook_ctools_plugin_type().

File

./spaces.module, line 98

Code

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