_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;
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.