You are here

function og_vocab_field_formatter_info in OG Vocabulary 7

Implement hook_field_formatter_info().

File

./og_vocab.module, line 579
Give each group its own system controlled vocabularies.

Code

function og_vocab_field_formatter_info() {
  return array(
    'og_vocab' => array(
      'label' => t('OG vocabulary'),
      'field types' => array(
        'entityreference',
      ),
      'settings' => array(
        'concatenate' => FALSE,
      ),
    ),
  );
}