You are here

function facetapi_ctools_plugin_type in Facet API 7.2

Same name and namespace in other branches
  1. 7 facetapi.module \facetapi_ctools_plugin_type()

Implements hook_ctools_plugin_type().

File

./facetapi.module, line 222
An abstracted facet API that can be used by various search backends.

Code

function facetapi_ctools_plugin_type() {
  return array(
    'adapters' => array(
      'use hooks' => TRUE,
    ),
    'dependencies' => array(
      'use hooks' => TRUE,
    ),
    'empty_behaviors' => array(
      'use hooks' => TRUE,
    ),
    'filters' => array(
      'use hooks' => TRUE,
    ),
    'query_types' => array(
      'use hooks' => TRUE,
    ),
    'url_processors' => array(
      'use hooks' => TRUE,
    ),
    'widgets' => array(
      'use hooks' => TRUE,
    ),
  );
}