You are here

function tft_output_tree in Taxonomy File Tree 7.2

Same name and namespace in other branches
  1. 7 tft.module \tft_output_tree()

Output the tree as an HTML unordered list.

Parameters

array $tree: The folder tree.

Return value

string

See also

tft_output_children().

Related topics

4 calls to tft_output_tree()
tft_block_view in ./tft.module
Implements hook_block_view().
tft_form_alter in ./tft.module
Implements hook_form_alter()
tft_og_block_view_alter in modules/tft_og/tft_og.module
Implements hook_block_view_alter().
tft_og_form_alter in modules/tft_og/tft_og.module
Implements hook_form_alter()

File

./tft.module, line 389
Hook implementations and module logic for TFT.

Code

function tft_output_tree($tree) {
  return tft_output_children($tree, TRUE);
}