function block_update_dependencies

7.x block.install block_update_dependencies()

Implements hook_update_dependencies().

File

drupal-7.x/modules/block/block.install, line 192
Install, update and uninstall functions for the block module.

Code

function block_update_dependencies() {
  // block_update_7005() needs to query the {filter_format} table to get a list
  // of existing text formats, so it must run after filter_update_7000(), which
  // creates that table.
  $dependencies['block'][7005] = array(
    'filter' => 7000,
  );

  return $dependencies;
}