function translation_menu

Implements hook_menu().

File

modules/translation/translation.module, line 57

Code

function translation_menu() {
    $items = array();
    $items['node/%node/translate'] = array(
        'title' => 'Translate',
        'page callback' => 'translation_node_overview',
        'page arguments' => array(
            1,
        ),
        'access callback' => '_translation_tab_access',
        'access arguments' => array(
            1,
        ),
        'type' => MENU_LOCAL_TASK,
        'weight' => 2,
        'file' => 'translation.pages.inc',
    );
    return $items;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.