1 node.install node_update_dependencies()

Implements hook_update_dependencies().

File

core/modules/node/node.install, line 352
Install, update and uninstall functions for the node module.

Code

function node_update_dependencies() {
  // Ensure that Entity module is enabled before running any of our updates.
  $dependencies['node'][1000] = array(
    'system' => 1000,
  );
  // Do not drop the block tables until after System module has enabled and
  // migrated blocks into layouts.
  $dependencies['node'][1004] = array(
    'system' => 1025,
  );
  return $dependencies;
}