| 1 menu.inc | menu_tail_to_arg($arg, $map, $index) | 
Returns a string containing the path relative to the current index.
Related topics
File
- core/includes/ menu.inc, line 895 
- API for the Backdrop menu system.
Code
function menu_tail_to_arg($arg, $map, $index) {
  return implode('/', array_slice($map, $index));
}
