get vocab depth

  1. function taxonomy_vocabulary_get_depth($vid) {
  2.   $tree = taxonomy_get_tree($vid);
  3.   foreach ($tree as $term) {
  4.     if ($term->depth > $depth) {
  5.       $depth = $term->depth;
  6.     }
  7.   }
  8.   return $depth;
  9. }