You are here

function taxonomy_manager_elements in Taxonomy Manager 5

Same name and namespace in other branches
  1. 6.2 taxonomy_manager.module \taxonomy_manager_elements()
  2. 6 taxonomy_manager.module \taxonomy_manager_elements()

Implementation of hook_elements

File

./taxonomy_manager.module, line 1607
Taxonomy Manager

Code

function taxonomy_manager_elements() {
  $type['taxonomy_manager_tree'] = array(
    '#input' => TRUE,
    '#process' => array(
      'taxonomy_manager_tree_process_elements' => array(),
    ),
    '#tree' => TRUE,
  );
  return $type;
}