function tripal_analysis_update_dependencies
2.x tripal_analysis.install | tripal_analysis_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_analysis/
tripal_analysis.install, line 364 - Implements hooks from the Schema API.
Code
function tripal_analysis_update_dependencies() {
$dependencies = array();
$dependencies['tripal_analysis'][7200] = array(
'tripal_cv' => 7200
);
return $dependencies;
}