function gdpr_tasks_module_implements_alter in General Data Protection Regulation 7
Implements hook_module_implements_alter().
File
- modules/
gdpr_tasks/ gdpr_tasks.module, line 11 - Module file for the GDPR Tasks module.
Code
function gdpr_tasks_module_implements_alter(&$implementations, $hook) {
if ($hook == 'menu_alter') {
$group = $implementations['gdpr_tasks'];
unset($implementations['gdpr_tasks']);
$implementations['gdpr_tasks'] = $group;
}
}