You are here

function panopoly_core_module_implements_alter in Panopoly Core 7

Implements hook_module_implements_alter().

File

./panopoly_core.module, line 121

Code

function panopoly_core_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'css_alter' || $hook == 'modules_enabled') {
    $group = $implementations['panopoly_core'];
    unset($implementations['panopoly_core']);
    $implementations['panopoly_core'] = $group;
  }
}