menu_tail_to_arg

  1. drupal
    1. 6 menu.inc function
    2. 7 menu.inc function
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));
}