You are here

function calendar_systems_module_implements_alter in Calendar Systems 7.2

Same name and namespace in other branches
  1. 8 calendar_systems.module \calendar_systems_module_implements_alter()
  2. 7 calendar_systems.module \calendar_systems_module_implements_alter()

hook_module_implements_alter

Parameters

$implementations:

$hook:

File

./calendar_systems.module, line 238
Contains Calendar Systems hook implementations and helpers.

Code

function calendar_systems_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'form_alter') {
    $var = $implementations['calendar_systems'];
    unset($implementations['calendar_systems']);
    $implementations['calendar_systems'] = $var;
  }
}