function tripal_library_update_dependencies

2.x tripal_library.install tripal_library_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_library/tripal_library.install, line 399
Installation of the library module

Code

function tripal_library_update_dependencies() {

  $dependencies = array();

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

  return $dependencies;
}