function hacked_tail_load in Hacked! 6.2
Same name and namespace in other branches
- 6 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 90 - 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));
}