menu_tail_to_arg
Drupal 7 menu_tail_to_arg($arg, $map, $index)
Returns path as one string from the argument we are currently at.
Related topics
File
- includes/
menu.inc, line 825 - API for the Drupal menu system.
Code
function menu_tail_to_arg($arg, $map, $index) {
return implode('/', array_slice($map, $index));
}

