You are here

function og_vocab_field_widget_info in OG Vocabulary 7

Implements hook_field_widget_info().

File

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

Code

function og_vocab_field_widget_info() {
  $widgets['og_vocab_complex'] = array(
    'label' => t('OG vocab'),
    'description' => t('Complex widget to reference taxonomy terms related to accessible groups.'),
    'field types' => array(
      'entityreference',
    ),
  );
  return $widgets;
}