1 menu.install menu_update_dependencies()

Implements hook_update_dependencies().

File

core/modules/menu/menu.install, line 38
Install, update and uninstall functions for the menu module.

Code

function menu_update_dependencies() {
  // menu_update_1001() updates menu variables to save into the node type config
  // files, which are created in node_update_1005().
  $dependencies['menu'][1001] = array(
    'node' => 1005,
  );
  return $dependencies;
}