<?function title()
{
global $user; if (isset($user))
{
global $set;
if ($set['web']==false)
{ echo "<table class='menushka' style='width:100%' cellspacing='0' cellpadding='0'><tr><center> <tr>";
$k_new=mysql_result(mysql_query("SELECT COUNT(`mail`.`id`) FROM `mail`
LEFT JOIN `users_konts` ON `mail`.`id_user` = `users_konts`.`id_kont` AND `users_konts`.`id_user` = '$user[id]'
WHERE `mail`.`id_kont` = '$user[id]' AND (`users_konts`.`type` IS NULL OR `users_konts`.`type` = 'common' OR `users_konts`.`type` = 'favorite') AND `mail`.`read` = '0'"),0);
$k_new_fav=mysql_result(mysql_query("SELECT COUNT(`mail`.`id`) FROM `mail`
LEFT JOIN `users_konts` ON `mail`.`id_user` = `users_konts`.`id_kont` AND `users_konts`.`id_user` = '$user[id]'
WHERE `mail`.`id_kont` = '$user[id]' AND (`users_konts`.`type` = 'favorite') AND `mail`.`read` = '0'"),0); // Почта
$lenta = mysql_result(mysql_query("SELECT COUNT(`read`) FROM `tape` WHERE `id_user` = '$user[id]' AND `read` = '0' "),0); // Лента
$discuss = mysql_result(mysql_query("SELECT COUNT(`count`) FROM `discussions` WHERE `id_user` = '$user[id]' AND `count` > '0' "),0); // Обсуждения
$k_frend = mysql_result(mysql_query("SELECT COUNT(id) FROM `frends_new` WHERE `to` = '$user[id]'"), 0); // Друзья
$k_notif = mysql_result(mysql_query("SELECT COUNT(`read`) FROM `notification` WHERE `id_user` = '$user[id]' AND `read` = '0'"), 0); // Уведомления
/*
=================================
Страничка
=================================
*/
echo "<td style='width:25%' class='go123'>";
echo "<a href=\"/info.php?id=$user[id]\"><center><img src='/style/user/my.png' alt='S'/></center></a>";
echo "</td>";
/*
=================================
Почта
=================================
*/
echo "<td style='width:25%' class='go123'>";
if ($k_new!=0 && $k_new_fav==0)
{
echo "<a href='/new_mess.php'><center><img src='/style/user/mail.png' alt='$k_new' />";
echo "<font color=\"#ff0000\">($k_new)</font></center></a>";
}else{
echo "<a href='/konts.php'><center><img src='/style/user/mail.png' alt='S'/></center></a>";
}
echo "</td>";
/*
=================================
Лента
=================================
*/
if ($lenta > 0)
{
$j2 = 'tape';
}
elseif ($discuss > 0)
{
$j2 = 'discussions';
}
elseif ($k_notif > 0)
{
$j2 = 'notification';
}else{
$j2 = 'tape';
}
echo "<td style='width:25%' class='go123'>";
echo "<a href='/user/$j2/index.php'><center><img src='/style/user/lenta.png' alt='S'/>";
$k_l = $lenta+$k_notif+$discuss;
if($k_l>0)echo "<font color=\"#ff0000\">($k_l)</font>";
echo "</center></a>";
echo "</td>";
/*
=================================
Друзья
=================================
*/
if ($k_frend > 0)
{
echo "<td style='width:25%' class='go123'>";
echo "<a href='/user/frends/new.php'><center><img src='/style/user/reset.png' alt='S'/><font color='red'>($k_frend)</font></center></a>";
echo "</td>";
}
/*
=================================
Обновить
=================================
*/
echo "<td style='width:25%' class='go123'>";
echo '<a href="'.htmlspecialchars($_SERVER['REQUEST_URI']).'"><center><img src="/style/user/reset.png" alt="S"></center></a>';
echo "</td>";
echo "</tr></table>";
}
}
else{
echo "<table align='center' style='text-align:center; width:100%' cellspacing='0' cellpadding='0'><tr>
<td class='go4' style='width: 50%'><a href='/aut.php'><img src='/style/user/login.png' alt='S'/> Авторизация</a></td>
<td class='go44' style='width: 50%'><a href='/reg.php'><img src='/style/user/rega.png' alt='S'/> Регистрация</a></td>
</tr></table>";
}
}
?>