1 block.install block_update_dependencies()

Implements hook_update_dependencies().

File

core/modules/block/block.install, line 10
Install, update and uninstall functions for the block module.

Code

function block_update_dependencies() {
  // Do not drop the block tables until after System module has enabled and
  // migrated blocks into layouts.
  $dependencies['block'][1002] = array(
    'system' => 1025,
  );

  return $dependencies;
}