1 taxonomy.install taxonomy_update_dependencies()

Implements hook_update_dependencies().

File

core/modules/taxonomy/taxonomy.install, line 200
Install, update and uninstall functions for the taxonomy module.

Code

function taxonomy_update_dependencies() {
  // Do not allow user module to convert user roles to configuration until after
  // we have renamed our permissions in taxonomy_update_1001().
  $dependencies['user'][1007] = array(
    'taxonomy' => 1001,
  );

  return $dependencies;
}