On this page
function block_update_dependencies
block_update_dependencies()
Implements hook_update_dependencies().
File
- 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;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!block!block.install/function/block_update_dependencies/7.x