You are here

function currency_webform_select_options_info in Currency 7.2

Implements hook_webform_select_options_info().

File

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

Code

function currency_webform_select_options_info() {
  $options['currency'] = array(
    'title' => t('Currencies'),
    'options callback' => 'currency_options',
  );
  return $options;
}