| 6 menu.inc | _menu_tree_cid($menu_name, $data) |
Helper function - compute the real cache ID for menu tree data.
Related topics
2 calls to _menu_tree_cid()
File
- includes/
menu.inc, line 967 - API for the Drupal menu system.
Code
function _menu_tree_cid($menu_name, $data) {
return 'links:' . $menu_name . ':tree-data:' . md5(serialize($data));
}
Login or register to post comments