_taxonomy_depth
Definition
_taxonomy_depth($depth, $graphic = '--')
modules/taxonomy.module, line 1067
Code
<?php
function _taxonomy_depth($depth, $graphic = '--') {
for ($n = 0; $n < $depth; $n++) {
$result .= $graphic;
}
return $result;
}
?> 