function menu_tail_to_arg
Same name and namespace in other branches
- 6.x drupal-6.x/includes/menu.inc \menu_tail_to_arg()
Returns a string containing the path relative to the current index.
Related topics
Archivo
- drupal-7.x/
includes/ menu.inc, line 827 - API for the Drupal menu system.
Código
function menu_tail_to_arg($arg, $map, $index) {
return implode('/', array_slice($map, $index));
}