function properties_field_formatter_info in Dynamic properties 7
Implements hook_field_formatter_info().
File
- ./properties.module, line 316 
- This module provides a dynamic property field that can contain an unlimited number of attribute value pairs.
Code
function properties_field_formatter_info() {
  return array(
    'properties_formatter_list' => array(
      'label' => t('Definition list'),
      'field types' => array(
        'properties',
      ),
    ),
    'properties_formatter_table' => array(
      'label' => t('Table'),
      'field types' => array(
        'properties',
      ),
    ),
  );
}