function _menu_tree_cid
Helper function - compute the real cache ID for menu tree data.
Related topics
2 calls to _menu_tree_cid()
- menu_tree_all_data in drupal-6.x/
includes/ menu.inc - Get the data structure representing a named menu tree.
- menu_tree_page_data in drupal-6.x/
includes/ menu.inc - Get the data structure representing a named menu tree, based on the current page.
Archivo
- drupal-6.x/
includes/ menu.inc, line 967 - API for the Drupal menu system.
Código
function _menu_tree_cid($menu_name, $data) {
return 'links:' . $menu_name . ':tree-data:' . md5(serialize($data));
}