function translation_overview_menu_alter in Translation Overview 6.2
Implementation of hook_menu_alter().
File
- ./
translation_overview.module, line 96
Code
function translation_overview_menu_alter(&$callbacks) {
// Replace the translation module's node tab with our own.
$callbacks['node/%node/translate']['module'] = 'translation_overview';
$callbacks['node/%node/translate']['page callback'] = 'translation_overview_node_page';
$callbacks['node/%node/translate']['file'] = 'translation_overview.pages.inc';
}