You are here

function panopoly_magic_module_implements_alter in Panopoly 7

Implements hook_module_implements_alter()

File

modules/panopoly/panopoly_magic/panopoly_magic.module, line 257

Code

function panopoly_magic_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'form_alter') {
    $group = $implementations['panopoly_magic'];
    unset($implementations['panopoly_magic']);
    $implementations['panopoly_magic'] = $group;
  }
}