1 translation.install | translation_update_dependencies() |
Implements hook_update_dependencies().
File
- core/
modules/ translation/ translation.install, line 10 - Install, update and uninstall functions for the Translation module.
Code
function translation_update_dependencies() {
// Do not fix language fields until after Views are converted to config.
$dependencies['translation'][1001] = array(
'views' => 1001,
);
return $dependencies;
}