You are here

function hs_content_taxonomy_widget_info in Hierarchical Select 5.3

Same name and namespace in other branches
  1. 6.3 modules/hs_content_taxonomy.module \hs_content_taxonomy_widget_info()

Implementation of hook_widget_info().

File

modules/hs_content_taxonomy.module, line 203
Implementation of the Hierarchical Select API for the Content Taxonomy module.

Code

function hs_content_taxonomy_widget_info() {
  return array(
    'content_taxonomy_hs' => array(
      // 'content_taxonomy_hs' instead of 'content_taxonomy_hierarchical_select' due to CCK limitations.
      'label' => 'Hierarchical Select',
      'field types' => array(
        'content_taxonomy',
      ),
    ),
  );
}