You are here

function term_merge_action_info in Term Merge 7

Implements hook_action_info().

File

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

Code

function term_merge_action_info() {
  return array(
    'term_merge_action' => array(
      'type' => 'taxonomy_term',
      'label' => t('Merge term'),
      'configurable' => TRUE,
      'behavior' => array(
        'view_property',
      ),
      'pass rows' => TRUE,
    ),
  );
}