You are here

function commerce_mollie_init in Commerce Mollie 7

Implements hook_init().

File

./commerce_mollie.module, line 19

Code

function commerce_mollie_init() {
  if (strtolower(commerce_default_currency()) != 'eur') {
    drupal_set_message(t('The Commerce Mollie payment module only supports the Euro as the default currency'), 'error');
  }
}