function _menu_link_parents_set
Same name and namespace in other branches
- 6.x drupal-6.x/includes/menu.inc \_menu_link_parents_set()
Sets the p1 through p9 values for a menu link being saved.
Related topics
1 call to _menu_link_parents_set()
- menu_link_save in drupal-7.x/
includes/ menu.inc - Saves a menu link.
Archivo
- drupal-7.x/
includes/ menu.inc, line 3519 - API for the Drupal menu system.
Código
function _menu_link_parents_set(&$item, $parent) {
$i = 1;
while ($i < $item['depth']) {
$p = 'p' . $i++;
$item[$p] = $parent[$p];
}
$p = 'p' . $i++;
// The parent (p1 - p9) corresponding to the depth always equals the mlid.
$item[$p] = $item['mlid'];
while ($i <= MENU_MAX_DEPTH) {
$p = 'p' . $i++;
$item[$p] = 0;
}
}