tid) == array()) { $menu[] = $term; } } // Build the drawer $output = taxonomy_node_tree_build($menu); return $output; } /** * Drawer rendering. * * @ingroup themeable */ function taxonomy_node_tree_build($menu) { $output = ''; $output .= '
'; $output .= '
'; return $output; } /** * Menu callback. */ function taxonomy_render_tree($tid = 0, $vid) { // First render all nodes whose parent is $term if ($tid != 0) { $output = ''; $nodes = taxonomy_select_nodes(array($tid)); while ($node = db_fetch_object($nodes)) { $link['title'] = $node->title; $link['href'] = 'node/' . $node->nid; $output .= theme('taxonomy_node_tree_link', $link); } } // Render other child nodes $terms = taxonomy_node_tree_taxonomy_get_tree($vid, $tid); foreach ($terms as $term) { $filter[] = $term->tid; } // TODO: continue from here $query = 'SELECT node.nid, node.title, term_node.tid FROM {node} LEFT JOIN {term_node} ON term_node.nid = node.nid WHERE term_node.tid IN (%s) AND node.status = "1"'; $result = db_query(db_rewrite_sql($query), implode(',', $filter)); while ($node = db_fetch_object($result)) { foreach ($terms as $term) { // add nodes into the term if ($node->tid == $term->tid) { $term->nodes[] = $node; } // update an index of terms $tree[$term->tid] = $term; } } // add children relationship just for terms present in the tree foreach ($tree as $term) { if ($term->parents[0] != 0 && isset($tree[$term->parents[0]])) { $tree[$term->parents[0]]->children[] = $term->tid; } } // build menu with hierarchy foreach ($tree as $term) { taxonomy_node_tree_build_tree($tree, $term); } // format output $output .= ''; // Display output echo($output); // We need to exit here to avoid themeable output exit(); } function taxonomy_node_tree_build_tree(&$tree, $term) { if ($term->parents[0] != 0 && isset($tree[$term->parents[0]])) { // is child if (isset($term->children)) { // is also parent, so go down one level foreach($term->children as $child) { taxonomy_node_tree_build_tree($tree, $tree[$child]); } } $tree[$term->parents[0]]->below[] = drupal_clone($term); unset($tree[$term->tid]); } } /** * Recursively build the menu. * * @ingroup themeable */ function taxonomy_node_tree_menu_build($term) { global $taxonomy_node_tree_id; if ($taxonomy_node_tree_id == null) { $taxonomy_node_tree_id = 0; } $taxonomy_node_tree_id++; if (isset($term->tid)) { $output .= '
  • '; $output .= $term->name; if (isset($term->below)) { $output .= ''; } else if (isset($term->nodes)) { $output .= ''; $output .= '
  • '; } $output .= ''; } return $output; } /** * Version of taxonomy_get_tree() without caching. */ function taxonomy_node_tree_taxonomy_get_tree($vid, $parent = 0, $depth = -1, $max_depth = NULL, $cache = FALSE) { static $children, $parents, $terms; $depth++; // We can cache trees, so it's not CPU-intensive to call get_tree() on a term // and its children, too. if (!$cache && !isset($children[$vid])) { $children[$vid] = array(); $result = db_query(db_rewrite_sql('SELECT t.tid, t.*, parent FROM {term_data} t INNER JOIN {term_hierarchy} h ON t.tid = h.tid WHERE t.vid = %d ORDER BY weight, name', 't', 'tid'), $vid); while ($term = db_fetch_object($result)) { $children[$vid][$term->parent][] = $term->tid; $parents[$vid][$term->tid][] = $term->parent; $terms[$vid][$term->tid] = $term; } } $max_depth = (is_null($max_depth)) ? count($children[$vid]) : $max_depth; $tree = array(); if ($max_depth > $depth && !empty($children[$vid][$parent])) { foreach ($children[$vid][$parent] as $child) { $term = drupal_clone($terms[$vid][$child]); $term->depth = $depth; // The "parent" attribute is not useful, as it would show one parent only. unset($term->parent); $term->parents = $parents[$vid][$child]; $tree[] = $term; if (!empty($children[$vid][$child])) { $tree = array_merge($tree, taxonomy_get_tree($vid, $child, $depth, $max_depth)); } } } return $tree; }