You are here

function boxes_ctools_plugin_type in Boxes 7

Same name and namespace in other branches
  1. 7.2 boxes.module \boxes_ctools_plugin_type()

Implements hook_ctools_plugin_plugins().

File

./boxes.module, line 639
Core functionality for boxes module.

Code

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