You are here

function field_count_formatter_field_formatter_info in Field Count Formatter 7

Implements hook_field_formatter_info().

File

./field_count_formatter.module, line 14
Simple module to provide a formatter for all field types to show the number of items entered into the field. This is most useful for multiple value fields.

Code

function field_count_formatter_field_formatter_info() {
  $types = field_info_field_types();
  return array(
    'count' => array(
      'label' => t('Count'),
      'field types' => array_keys($types),
    ),
  );
}