You are here

function quicktabs_ctools_plugin_type in Quick Tabs 7.3

Implements hook_ctools_plugin_type().

File

./quicktabs.module, line 417

Code

function quicktabs_ctools_plugin_type() {
  return array(
    // Renderer plugins control the display of sets of items, e.g. as tabs.
    'renderers' => array(
      'cache' => TRUE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
    // Content plugins control the display of individual items.
    'contents' => array(
      'cache' => TRUE,
      'use hooks' => TRUE,
      'classes' => array(
        'handler',
      ),
    ),
  );
}