function tripal_organism_update_dependencies

2.x tripal_organism.install tripal_organism_update_dependencies()

Implementation of hook_update_dependencies().

It specifies a list of other modules whose updates must be run prior to this one. It also ensures the the Tripal API is in scope for site upgrades when tripal_core is disabled.

File

tripal_organism/tripal_organism.install, line 225
Functions pertaining to the install/uninstall of this module

Code

function tripal_organism_update_dependencies() {

  $dependencies = array();

  // the tripal_cv update 7200 must run prior to update 7200 of this module
  $dependencies['tripal_organism'][7200] = array(
    'tripal_cv' => 7200
  );

  return $dependencies;
}