function translation_path_get_translations

Returns the paths of all translations of a node, based on its Drupal path.

Parameters

$path: A Drupal path, for example node/432.

Return value

An array of paths of translations of the node accessible to the current user, keyed with language codes.

File

modules/translation/translation.module, line 527

Code

function translation_path_get_translations($path) {
    $paths = array();
    // Check for a node related path, and for its translations.
    if (preg_match("!^node/(\\d+)(/.+|)\$!", $path, $matches) && ($node = node_load((int) $matches[1])) && !empty($node->tnid)) {
        foreach (translation_node_get_translations($node->tnid) as $language => $translation_node) {
            $paths[$language] = 'node/' . $translation_node->nid . $matches[2];
        }
    }
    return $paths;
}

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