function content_taxonomy_tree_widget_info in Content Taxonomy 6
Same name and namespace in other branches
- 6.2 content_taxonomy_tree.module \content_taxonomy_tree_widget_info()
Implementation of hook_widget_info().
File
- ./
content_taxonomy_tree.module, line 20
Code
function content_taxonomy_tree_widget_info() {
return array(
'content_taxonomy_tree' => array(
'label' => t('Tree'),
'field types' => array(
'content_taxonomy',
),
'multiple values' => CONTENT_HANDLE_MODULE,
'callbacks' => array(
'default value' => CONTENT_CALLBACK_DEFAULT,
),
),
);
return $items;
}