You are here

function content_taxonomy_activeselect_widget_info in Content Taxonomy 5

Implementation of hook_widget_info().

File

./content_taxonomy_activeselect.module, line 22
Defines a widget type for content_taxonomy with activeselects

Code

function content_taxonomy_activeselect_widget_info() {
  return array(
    'content_taxonomy_activeselect' => array(
      'label' => 'ActiveSelect',
      'field types' => array(
        'content_taxonomy',
      ),
    ),
  );
  return $items;
}