Código PHP:
$indent = '';
$separator = '';
if ($box_categories_array[$i]['top'] == 'true'){
$content .= '<span>';
$content .= '<h3 class="menuheader expandable">' .
$indent.$separator. $box_categories_array[$i]['name'] . $count .
'</h3><ul class="categoryitems"><li>';
$content .= '</span>';
} else {
$content .= '<span class="'. $div_class .'">'.
$indent.$separator.'<a class="'. $a_class .'" href="'. $link .'">'. $box_categories_array[$i]['name'] .'</a>'. $count .
'</span>';
}
}