function tripal_pub_update_dependencies

2.x tripal_pub.install tripal_pub_update_dependencies()
3.x tripal_pub.install tripal_pub_update_dependencies()

Implementation of hook_update_dependencies(). It specifies a list of other modules whose updates must be run prior to this one.

File

legacy/tripal_pub/tripal_pub.install, line 327
Installation of the publication module

Code

function tripal_pub_update_dependencies() {
  $dependencies = array();

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

  return $dependencies;
}