You are here

function taxonomy_manager_elements in Taxonomy Manager 6

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

Implementation of hook_elements

File

./taxonomy_manager.module, line 299
Taxonomy Manager

Code

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