Example #1
0
 private static function getBoardTreeText(GWF_ForumBoard $board)
 {
     $tree = $board->getBoardTree();
     $back = '';
     foreach ($tree as $b) {
         list($reserved, $bid, $title) = $b;
         $back .= sprintf('->%s', GWF_HTML::display($title));
     }
     return substr($back, 2);
 }