Same name and namespace in other branches
  1. 7.x-3.x quicktabs.module \quicktabs_ctools_plugin_type() 1 comment

Implements hook_ctools_plugin_type().

File

./quicktabs.module, line 354

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',
            ),
        ),
    );
}