You are here

function money_field_info in Money field 5

Same name and namespace in other branches
  1. 6 money.module \money_field_info()
  2. 7 money.module \money_field_info()

Implementation of hook_field_info().

File

./money.module, line 20
This module defines the "money" CCK field. It uses the Currency API, which is included in the Currency module, to get a list of valid currencies.

Code

function money_field_info() {
  return array(
    'money' => array(
      'label' => t('Money'),
    ),
  );
}