_forum_depth
Definition
_forum_depth($depth, $graphic = '--')
modules/forum.module, line 259
Description
Helper function used to generate indentation for forum list
Parameters
$depth Depth of the indentation
$graphic HTML text to be repeated for each stage of depth
Code
<?php
function _forum_depth($depth, $graphic = '--') {
for ($n = 0; $n < $depth; $n++) {
$result .= $graphic;
}
return $result;
}
?> 