function commerce_license_field_formatter_info in Commerce License 7
Implements hook_field_formatter_info().
File
- ./
commerce_license.module, line 1146 - Provides a framework for selling access to local or remote resources.
Code
function commerce_license_field_formatter_info() {
return array(
'commerce_license_duration' => array(
'label' => t('License duration'),
'field types' => array(
'number_integer',
),
),
);
}