Размер файла: 1.77Kb
<?php
#-----------------------------------------------------#
# ********* ROTORCMS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
# для его дальнейшего распространения #
#-----------------------------------------------------#
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/header.php');
show_title('site.png', 'Популярные скины');
$config['newtitle'] = 'Популярные скины';
if (is_user()){
if (empty($udata['users_themes'])) {
$udata['users_themes'] = 'Автоматически';
}
echo 'Вы используете скин: <b>'.$udata['users_themes'].'</b><br /><br />';
}
$querythemes = DB::run()->query("SELECT COUNT(`users_themes`) AS `cnt`, `users_themes` FROM `users` GROUP BY `users_themes` ORDER BY `cnt` DESC;");
$themes = $querythemes->fetchAll();
if (count($themes)>0){
foreach ($themes as $val){
if (file_exists(BASEDIR.'themes/'.$val['users_themes'].'/index.php')){
echo '<img src="../images/img/act.gif" alt="image" /> <b><a href="skin.php?skins='.$val['users_themes'].'&'.SID.'">'.$val['users_themes'].'</a></b> - <b>'.$val['cnt'].'</b> чел.<br />';
}
}
echo '<br />';
} else {show_error('Темы еще не загружены!');}
include_once ('../themes/footer.php');
?>