1.20.x image.install | image_update_dependencies() |
Implements hook_update_dependencies().
File
- modules/
image/ image.install, line 112 - Install, update and uninstall functions for the image module.
Code
function image_update_dependencies() {
// Ensure that field module has updated fields to config before updating image
// fields to use default image URIs.
$dependencies['image'][1004] = array(
'field' => 1000,
);
return $dependencies;
}