Файл: EasyHost v2.0/system/htdocs/manager/files/depth.pl
Строк: 14
<?php
for (my $count = 1; $count < $directory->depth; $count++)
{
if ($status{$count})
{
$html .= '<img src="'.$system->htdocs.'images/blank.gif" border="0" width="22" height="22" />';
}
else
{
$html .= '<img src="'.$system->htdocs.'images/node_behind.gif" border="0" width="22" height="22" />';
}
}
if ($directory->path ne '/')
{
$html .= '<img src="'.$system->htdocs.'images/node';
$html .= '_last' if ($count{$directory->parent->path} == $directory->parent->directories->count);
$html .= '.gif" border="0" width="22" height="22" />';
}
?>