translation_path_get_translations
- Versions
- 6 – 7
translation_path_get_translations($path)
Return 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.
Code
modules/translation/translation.module, line 320
<?php
function translation_path_get_translations($path) {
$paths = array();
// Check for a node related path, and for its translations.
if ((preg_match("!^node/([0-9]+)(/.+|)$!", $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;
}
?>Login or register to post comments 