PHP Code:
$childArr = $wAdmin->getChildren($node);
if (count($childArr)) {
foreach ($childArr as $type => $arr) {
echo "<div style=\"font-family: verdana; font-size: 11px; float: left; padding: 5px; margin: 5px; border: 1px dashed black; text-align: left;\"><b>" . $wAdmin->nodeTypes[$type]['desc'] . "</b><br>";
foreach ($arr as $id) {
echo $wAdmin->displayNodeInfo($id);
}
echo "</div>";
}
}
echo "</div>";