| Versionen | |
|---|---|
| drupal6 – drupal7 | _menu_tree_cid($menu_name, $data) |
Helper function - compute the real cache ID for menu tree data.
includes/
<?php
function _menu_tree_cid($menu_name, $data) {
return 'links:' . $menu_name . ':tree-data:' . md5(serialize($data));
}
?>
Kommentare
Kommentar hinzufügen