On this page
function taxonomy_update_dependencies
taxonomy_update_dependencies()
Implements hook_update_dependencies().
File
- modules/taxonomy/taxonomy.install, line 253
- Install, update and uninstall functions for the taxonomy module.
Code
function taxonomy_update_dependencies() {
// taxonomy_update_7004() migrates taxonomy term data to fields and therefore
// must run after all Field modules have been enabled, which happens in
// system_update_7027().
$dependencies['taxonomy'][7004] = array(
'system' => 7027,
);
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!taxonomy!taxonomy.install/function/taxonomy_update_dependencies/7.x