You are here

function taxonomy_tools_module_implements_alter in Taxonomy Tools 8

Same name and namespace in other branches
  1. 7 taxonomy_tools.module \taxonomy_tools_module_implements_alter()

Implements hook_module_implements_alter().

File

./taxonomy_tools.module, line 598
Drupal hooks and functions to work with taxonomy terms.

Code

function taxonomy_tools_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'menu_alter' && module_exists('views')) {

    // Implementation of hook_menu_alter() of this module is called last.
    $group = $implementations['taxonomy_tools'];
    unset($implementations['taxonomy_tools']);
    $implementations['taxonomy_tools'] = $group;
  }
}