You are here

function term_merge_admin_paths in Term Merge 7

Implements hook_admin_paths().

File

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

Code

function term_merge_admin_paths() {
  return array(
    'taxonomy/term/*/merge' => TRUE,
    'taxonomy/term/*/merge/*' => TRUE,
  );
}