function apps_module_implements_alter in Apps 7
Implements hook_module_implements_alter().
File
- ./
apps.module, line 681 - Module file for Apps
Code
function apps_module_implements_alter(&$implementations, $hook) {
if ($hook == 'modules_enabled') {
// Make apps run last for this just be to careful.
$group = $implementations['apps'];
unset($implementations['apps']);
$implementations['apps'] = $group;
}
}