You are here

function pmticket_update_dependencies in Drupal PM (Project Management) 7

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

Implements hook_update_dependencies().

File

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

Code

function pmticket_update_dependencies() {

  // Ensure that date field is created before instance.
  $dependencies['pmticket'][7103] = array(
    'pm' => 7102,
  );

  // Ensure that billing status field is created before instance.
  $dependencies['pmticket'][7104] = array(
    'pm' => 7101,
  );
  return $dependencies;
}