function simplenews_update_dependencies in Simplenews 7
Same name and namespace in other branches
- 7.2 simplenews.install \simplenews_update_dependencies()
 
Implements hook_update_dependencies().
File
- ./
simplenews.install, line 477  - Install, update and uninstall functions for the simplenews module
 
Code
function simplenews_update_dependencies() {
  // Make sure that the taxonomy upgrade is run first.
  $dependencies['simplenews'][7000] = array(
    'taxonomy' => 7010,
  );
  return $dependencies;
}