You are here

function textformatter_field_formatter_info in Text list formatter 6

Same name and namespace in other branches
  1. 7 textformatter.module \textformatter_field_formatter_info()

Implementation of hook_field_formatter_info().

File

./textformatter.module, line 6

Code

function textformatter_field_formatter_info() {
  return array(
    'text_comma' => array(
      'label' => t('Commas'),
      'multiple values' => CONTENT_HANDLE_MODULE,
      'field types' => array(
        'text',
      ),
    ),
    'text_comma_and' => array(
      'label' => t('Commas-And'),
      'multiple values' => CONTENT_HANDLE_MODULE,
      'field types' => array(
        'text',
      ),
    ),
    'text_comma_and_period' => array(
      'label' => t('Commas-And-Period'),
      'multiple values' => CONTENT_HANDLE_MODULE,
      'field types' => array(
        'text',
      ),
    ),
    'text_unordered_list' => array(
      'label' => t('Unordered List'),
      'multiple values' => CONTENT_HANDLE_MODULE,
      'field types' => array(
        'text',
      ),
    ),
    'text_ordered_list' => array(
      'label' => t('Ordered List'),
      'multiple values' => CONTENT_HANDLE_MODULE,
      'field types' => array(
        'text',
      ),
    ),
  );
}