1 menu.inc menu_tail_load($arg, &$map, $index)

Loads the path as one string relative to the current index.

To use this load function, you must specify the load arguments in the router item as:

$item['load arguments'] = array('%map', '%index');

See also

search_menu().

Related topics

File

core/includes/menu.inc, line 907
API for the Backdrop menu system.

Code

function menu_tail_load($arg, &$map, $index) {
  $arg = implode('/', array_slice($map, $index));
  $map = array_slice($map, 0, $index);
  return $arg;
}