You are here

function pmnote_update_dependencies in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 pmnote/pmnote.install \pmnote_update_dependencies()
  2. 7.2 pmnote/pmnote.install \pmnote_update_dependencies()

Implements hook_update_dependencies().

File

pmnote/pmnote.install, line 92
Functions for the PM Note module.

Code

function pmnote_update_dependencies() {

  // pmperson_update_7104() migrates pmperson data to drupal user.
  // pmnote migration depends on its completion.
  $dependencies['pmnote'][7103] = array(
    'pmperson' => 7104,
  );
  return $dependencies;
}