You are here

function hacked_tail_load in Hacked! 6

Same name and namespace in other branches
  1. 6.2 hacked.module \hacked_tail_load()

Helper to load the menu tail properly.

Specifed as %hacked_tail in a menu path, this will return the entirety of the the rest of the menu path.

File

./hacked.module, line 83
The Hacked! module, shows which project have been changed since download.

Code

function hacked_tail_load($arg, $map, $index) {
  return implode('/', array_slice($map, $index));
}