1.20.x menu.install menu_update_dependencies()

Implements hook_update_dependencies().

File

modules/menu/menu.install, line 39
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;
}