function taxonomy_update_dependencies

Implements hook_update_dependencies().

File

modules/taxonomy/taxonomy.install, line 253

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.