function hs_content_taxonomy_widget_info in Hierarchical Select 6.3
Same name and namespace in other branches
- 5.3 modules/hs_content_taxonomy.module \hs_content_taxonomy_widget_info()
Implementation of hook_widget_info().
File
- modules/
hs_content_taxonomy.module, line 97 - 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',
),
// Set multiple settings to be handled by widget rather than by CCK itself
'multiple values' => CONTENT_HANDLE_MODULE,
'callbacks' => array(
'default value' => CONTENT_CALLBACK_DEFAULT,
),
),
);
}