';
echo $title;
if ($setting['parents'])
{
echo '';
$tmp_str = ' ';
foreach ($setting['parents'] as $tmp_data)
{
echo '
'.$tmp_str.'└ '.$tmp_data['class_name'].'' . ($tmp_data['is_php_class']?' PHP':'');
$tmp_str .= ' ';
}
unset($tmp_str);
echo '';
}
?>