function tft_output_tree in Taxonomy File Tree 7
Same name and namespace in other branches
- 7.2 tft.module \tft_output_tree()
Output the tree as an HTML unordered list
Parameters
array $tree: The folder tree.
Return value
string The HTML
2 calls to tft_output_tree()
- tft_block_view in ./
tft.module - tft_form_alter in ./
tft.module - Implementation of hook_form_alter()
File
- ./
tft.module, line 1543 - Module hooks.
Code
function tft_output_tree($tree) {
return tft_output_children($tree, TRUE);
}