You are here

function pm_field_formatter_info in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 pm.module \pm_field_formatter_info()
  2. 7.2 pm.module \pm_field_formatter_info()

Implements hook_field_formatter_info().

File

./pm.module, line 736
Main module file for the Project Management module.

Code

function pm_field_formatter_info() {
  return array(
    'pm_list_default' => array(
      'label' => t('Project Management Icons'),
      'field types' => array(
        'list_integer',
        'list_float',
        'list_text',
        'list_boolean',
      ),
    ),
  );
}