args[0]); print $taxonomy_term->description; echo "

 

"; $sql = "SELECT term_data.tid AS tid, term_data.name AS term_data_name, term_data.description AS term_data_description FROM term_data term_data LEFT JOIN term_hierarchy term_hierarchy ON term_data.tid = term_hierarchy.tid WHERE term_hierarchy.parent = " . $view->args[0] . " ORDER BY term_data.name"; $results = db_query($sql); if (!empty($results)) { $marker= 1; $thead = false; $counter = 0; while ($fields = db_fetch_array($results)) { if (!empty($fields) && $thead == false) { echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; $thead = true; }; if ($marker == 1) { echo ""; $marker = 0; } else { echo ""; $marker = 1; }; echo ""; echo ""; echo ""; $counter++; }; echo "
BereichBeschreibung
" . $fields['term_data_name'] . "" . $fields['term_data_description'] . "
"; }; if ($counter == 0) { print 'Neues Dokument erstellen'; }; ?>