You are here

function domain_config_hook_test_module_implements_alter in Domain Access 8

Implements hook_module_implements_alter().

File

domain_config/tests/modules/domain_config_hook_test/domain_config_hook_test.module, line 18
Hook implementations for this module.

Code

function domain_config_hook_test_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'user_login') {

    // Turn off the domain_config_hook_test's hook_user_login (above).
    unset($implementations['domain_config_hook_test']);
  }
}