You are here

function ga_push_module_implements_alter in GA Push 8

Same name and namespace in other branches
  1. 7 ga_push.module \ga_push_module_implements_alter()

Implements hook_module_implements_alter().

File

./ga_push.module, line 58
Drupal Module: GA Push.

Code

function ga_push_module_implements_alter(&$implementations, $hook) {

  // Ensure GA Push runs after Google Analytics.
  if ($hook == 'page_alter' && isset($implementations['ga_push'])) {
    $group = $implementations['ga_push'];
    unset($implementations['ga_push']);
    $implementations['ga_push'] = $group;
  }
}