Размер файла: 617B
<?
// функция ищет иконку сначала в выбранной теме, потом в списке стандартных иконок
function icons($name,$code='path')
{
global $set;
$name=eregi_replace('[^a-z0-9 _\-\.]', null, $name);
if (file_exists(H."style/themes/$set[set_them]/icons/$name") && $name!=null)
{
$path= "/style/themes/$set[set_them]/icons/$name";
}
elseif (file_exists(H."style/icons/$name") && $name!=null)
{
$path= "/style/icons/$name";
}
else
{
$path= "/style/icons/default.png";
}
if ($code=='path')
return $path;
else
return "<img src=\"$path\" alt=\"\" />\n";
}
?>