You are here

function synonyms_ctools_plugin_type in Synonyms 7

Implements hook_ctools_plugin_type().

File

./synonyms.module, line 73
Provide synonyms feature for Drupal entities.

Code

function synonyms_ctools_plugin_type() {
  $plugins = array();
  $plugins['behavior'] = array(
    'defaults' => array(
      'title' => NULL,
      'description' => NULL,
      'settings form callback' => NULL,
      'interface' => NULL,
      'enabled callback' => NULL,
      'disabled callback' => NULL,
    ),
  );
  return $plugins;
}