function hosting_deploy_module_implements_alter in Aegir Deploy 7.3
Implements hook_module_implements_alter().
File
- ./
hosting_deploy.module, line 20 - Drupal hooks for the hosting_deploy module.
Code
function hosting_deploy_module_implements_alter(&$implementations, $hook) {
if ($hook == 'form_alter') {
// Ensure that hosting_deploy_form_alter() runs last.
$group = $implementations['hosting_deploy'];
unset($implementations['hosting_deploy']);
$implementations['hosting_deploy'] = $group;
}
}