You are here

function token_tweaks_module_implements_alter in Token tweaks 7

File

./token_tweaks.module, line 23

Code

function token_tweaks_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'token_info_alter') {

    // Ensure our hook_token_info_alter() hook gets run last.
    unset($implementations['token_tweaks']);
    $implementations['token_tweaks'] = FALSE;
  }
}