function pmticket_update_dependencies in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmticket/pmticket.install \pmticket_update_dependencies()
- 7.3 pmticket/pmticket.install \pmticket_update_dependencies()
- 7 pmticket/pmticket.install \pmticket_update_dependencies()
Implements hook_update_dependencies().
File
- pmticket/
pmticket.install, line 78 - 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;
}