_taxonomy_depth
- Versions
- 4.6 – 4.7
_taxonomy_depth($depth, $graphic = '--')
Code
modules/taxonomy.module, line 773
<?php
function _taxonomy_depth($depth, $graphic = '--') {
for ($n = 0; $n < $depth; $n++) {
$result .= $graphic;
}
return $result;
}
?>Login or register to post comments 