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