function _tft_output_tree in Taxonomy File Tree 8
Same name and namespace in other branches
- 3.x tft.module \_tft_output_tree()
Output the tree as an HTML unordered list.
Parameters
array $tree: The folder tree.
Return value
array The HTML
1 call to _tft_output_tree()
- tft_form_alter in ./
tft.module - Implements hook_form_alter().
File
- ./
tft.module, line 464 - Contains tft.module.
Code
function _tft_output_tree(array $tree) {
return _tft_output_children($tree, TRUE);
}