You are here

function country_module_implements_alter in Country 8

Implements hook_module_implements_alter().

File

./country.module, line 68
Defines simple country field type.

Code

function country_module_implements_alter(&$implementations, $hook) {
  if ($hook == 'tokens') {
    $group = $implementations['country'];
    unset($implementations['country']);
    $implementations['country'] = $group;
  }
}