You are here

function currency_hook_info in Currency 7.2

Implements hook_hook_info().

File

currency/currency.module, line 32
Provides currency information and allows users to add custom currencies.

Code

function currency_hook_info() {
  $hooks['currency_exchanger_info'] = array(
    'group' => 'currency',
  );
  $hooks['currency_info'] = array(
    'group' => 'currency',
  );
  $hooks['currency_info_alter'] = array(
    'group' => 'currency',
  );
  $hooks['currency_locale_pattern_info'] = array(
    'group' => 'currency',
  );
  $hooks['currency_locale_pattern_info_alter'] = array(
    'group' => 'currency',
  );
  return $hooks;
}