Вход Регистрация
Файл: 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('style/themes/' $set['set_them'] . '/icons/' $name) && $name != null) {
        
$path =  'style/themes/' $set['set_them'] . '/icons/' $name;
    } elseif (
is_file('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="" />';
    }
}
Онлайн: 2
Реклама