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