function _menu_link_map_translate in Drupal 6
Same name and namespace in other branches
- 7 includes/menu.inc \_menu_link_map_translate()
This function translates the path elements in the map using any to_arg helper function. These functions take an argument and return an object. See http://drupal.org/node/109153 for more information.
Parameters
map: An array of path arguments (ex: array('node', '5'))
$to_arg_functions: An array of helper function (ex: array(2 => 'menu_tail_to_arg'))
Related topics
2 calls to _menu_link_map_translate()
- _menu_link_translate in includes/
menu.inc - This function is similar to _menu_translate() but does link-specific preparation such as always calling to_arg functions.
- _menu_translate in includes/
menu.inc - Handles dynamic path translation and menu access control.
File
- includes/
menu.inc, line 603 - API for the Drupal menu system.
Code
function _menu_link_map_translate(&$map, $to_arg_functions) {
if ($to_arg_functions) {
$to_arg_functions = unserialize($to_arg_functions);
foreach ($to_arg_functions as $index => $function) {
// Translate place-holders into real values.
$arg = $function(!empty($map[$index]) ? $map[$index] : '', $map, $index);
if (!empty($map[$index]) || isset($arg)) {
$map[$index] = $arg;
}
else {
unset($map[$index]);
}
}
}
}