You are here

function content_taxonomy_tree_elements in Content Taxonomy 6

Same name and namespace in other branches
  1. 6.2 content_taxonomy_tree.module \content_taxonomy_tree_elements()

Implementation of hook_elements().

File

./content_taxonomy_tree.module, line 62

Code

function content_taxonomy_tree_elements() {
  return array(
    'content_taxonomy_tree' => array(
      '#input' => TRUE,
      '#columns' => array(
        'value',
      ),
      '#delta' => 0,
      '#process' => array(
        'content_taxonomy_tree_process',
      ),
      '#element_validate' => array(
        'content_taxonomy_tree_validate',
      ),
      '#autocomplete_path' => FALSE,
    ),
  );
}