You are here

function hook_commerce_vat_country_info_alter in Commerce VAT 7

Allows modules to alter vat countries defined by other modules.

See also

hook_commerce_vat_country_info()

1 invocation of hook_commerce_vat_country_info_alter()
commerce_vat_countries in ./commerce_vat.module
Returns an array of vat country objects keyed by name.

File

./commerce_vat.api.php, line 49
Documents hooks provided by the vat module.

Code

function hook_commerce_vat_country_info_alter(&$vat_countries) {
  $vat_countries['GB']['title'] = 'United Kingdom';
}