You are here

function mvf_field_formatter_info in Measured Value Field 6

Same name and namespace in other branches
  1. 7 mvf.module \mvf_field_formatter_info()

Implementation of hook_field_formatter_info().

File

./mvf.module, line 198
Measured Value Field module.

Code

function mvf_field_formatter_info() {
  return array(
    'default' => array(
      'label' => t('Default'),
      'field types' => array(
        'mvf',
      ),
    ),
    'nozeros' => array(
      'label' => t('Remove redundant zeros'),
      'field types' => array(
        'mvf',
      ),
    ),
    'unformatted' => array(
      'label' => t('Unformatted'),
      'field types' => array(
        'mvf',
      ),
    ),
  );
}