You are here

function ttext_field_formatter_info in Internationalization 5

Implementation of hook_field_formatter_info().

File

experimental/ttext.module, line 68
Defines simple ttext field types.

Code

function ttext_field_formatter_info() {
  return array(
    'default' => array(
      'label' => 'Default',
      'field types' => array(
        'ttext',
      ),
    ),
    'plain' => array(
      'label' => 'Plain text',
      'field types' => array(
        'ttext',
      ),
    ),
    'trimmed' => array(
      'label' => 'Trimmed',
      'field types' => array(
        'ttext',
      ),
    ),
  );
}