You are here

function text_noderef_field_formatter_info in Text or Nodereference 7

Same name and namespace in other branches
  1. 6 text_noderef.module \text_noderef_field_formatter_info()

Implements hook_field_formatter_info().

File

./text_noderef.module, line 242
Text or nodereference field formatter for a text field and autocomplete widget.

Code

function text_noderef_field_formatter_info() {
  return array(
    'text_noderef_default' => array(
      'label' => t('Text or nodereference'),
      'field types' => array(
        'text',
      ),
    ),
  );
}