function tripal_project_update_dependencies

2.x tripal_project.install tripal_project_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_project/tripal_project.install, line 224
Install the tripal project

Code

function tripal_project_update_dependencies() {

  $dependencies = array();

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

  return $dependencies;
}