Файл: sys/inc/icons.php
Строк: 24
<?php
// функция ищет иконку сначала в выбранной теме, потом в списке стандартных иконок
function icons($name, $code = 'path')
{
global $set;
$name = preg_replace('#[^a-z0-9 _-.]#i', null, $name);
if (is_file(H . 'style/themes/' . $set['set_them'] . '/icons/' . $name) && $name != null) {
$path = 'style/themes/' . $set['set_them'] . '/icons/' . $name;
} elseif (is_file(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="" />';
}
}