You are here

function chosen_ctools_plugin_type in Chosen 7.3

Implements hook_ctools_plugin_type().

See also

hook_ctools_plugin_type

File

./chosen.module, line 36
General functions and hook implementations.

Code

function chosen_ctools_plugin_type() {
  $plugins['library'] = array(
    'cache' => FALSE,
    'use hooks' => FALSE,
    'classes' => array(
      'class',
    ),
  );
  return $plugins;
}