You are here

function tmgmt_ui_module_implements_alter in Translation Management Tool 7

Implements hook_module_implements_alter().

File

ui/tmgmt_ui.module, line 81
Common Translation managment UI.

Code

function tmgmt_ui_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'menu_alter') {

    // Move tmgmt_ui_menu_alter() to the end to be able to see views-defined
    // source overviews.
    $group = $implementations['tmgmt_ui'];
    unset($implementations['tmgmt_ui']);
    $implementations['tmgmt_ui'] = $group;
  }
}