You are here

function pmticket_update_dependencies in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 pmticket/pmticket.install \pmticket_update_dependencies()
  2. 7 pmticket/pmticket.install \pmticket_update_dependencies()
  3. 7.2 pmticket/pmticket.install \pmticket_update_dependencies()

Implements hook_update_dependencies().

File

pmticket/pmticket.install, line 126
Installation functions for the Project Management project module.

Code

function pmticket_update_dependencies() {

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