You are here

function term_merge_ctools_plugin_type in Term Merge 7

Implements hook_ctools_plugin_type().

File

./term_merge.module, line 161
Provide functionality for merging taxonomy terms one into another.

Code

function term_merge_ctools_plugin_type() {
  $plugins = array();
  $plugins['duplicate_suggestion'] = array(
    'defaults' => array(
      'title' => NULL,
      'description' => NULL,
      'hash callback' => NULL,
      'weight' => 0,
    ),
  );
  return $plugins;
}