|
<?php
/*
#Бесплатный WAP движок StrongCMS
#Официальный сайт поддержки: http://strongcms.ru
*/
# Заголовок>Функции>Шапка
$title = 'X-статус';
require ('../system/core.php');
require ('../system/head.php');
# закрываем от гостей
login();
echo '<div class="title"><a href="'.HOME.'/user/cab.php">Личный кабинет</a> | X-статус</div>';
if (isset($_REQUEST['standart']))
{
$db->query('UPDATE `users` SET `xstatus` = "0" WHERE `id` = "'.$user['id'].'"');
echo msg('Х-Статус убран!');
echo '<a href="'.HOME.'/user/x-status.php" class="menudiv">» В Х-статус</a>';
require_once ('../system/footer.php');
exit;
}
if (isset($_REQUEST['ok']))
{
$xstatus = abs(intval($_POST['xstatus']));
if ($xstatus > 17)
err('У вас не достаточно прав для просмотра данной страницы!');
$db->query('UPDATE `users` SET `xstatus` = "'.$xstatus.'" WHERE `id` = "'.$user['id'].'"');
echo msg('Вы успешно изменили Х-статус на <img src="'.HOME.'/images/x-status/'.$xstatus.'.png" alt="*" />');
echo '<a href="'.HOME.'/user/x-status.php" class="menudiv">» В Х-статус</a>';
require_once ('../system/footer.php');
exit();
}
echo '<a href="'.HOME.'/user/x-status.php?standart" class="menudiv">Убрать статус</a>
<div class="podmenu"><form action="" method="post">
<input type="radio" name="xstatus" value="5" /><img src="'.HOME.'/images/x-status/5.png" alt="8" /> Готов болтать
<input type="radio" name="xstatus" value="17" /><img src="'.HOME.'/images/x-status/17.png" alt="8" /> Не беспокоить
<input type="radio" name="xstatus" value="2" /><img src="'.HOME.'/images/x-status/2.png" alt="8" /> Болею
<input type="radio" name="xstatus" value="3" /><img src="'.HOME.'/images/x-status/3.png" alt="8" /> Депрессия
<input type="radio" name="xstatus" value="4" /><img src="'.HOME.'/images/x-status/4.png" alt="8" /> Думаю
<input type="radio" name="xstatus" value="7" /><img src="'.HOME.'/images/x-status/7.png" alt="8" /> Курю
<input type="radio" name="xstatus" value="8" /><img src="'.HOME.'/images/x-status/8.png" alt="8" /> Кушаю
<input type="radio" name="xstatus" value="9" /><img src="'.HOME.'/images/x-status/9.png" alt="8" /> Люблю
<input type="radio" name="xstatus" value="15" /><img src="'.HOME.'/images/x-status/15.png" alt="8" /> Смотрю тв
<input type="radio" name="xstatus" value="10" /><img src="'.HOME.'/images/x-status/10.png" alt="8" /> Слушаю музыку
<input type="radio" name="xstatus" value="16" /><img src="'.HOME.'/images/x-status/16.png" alt="8" /> В ванной
<input type="radio" name="xstatus" value="14" /><img src="'.HOME.'/images/x-status/14.png" alt="8" /> В туалете
<input type="radio" name="xstatus" value="12" /><img src="'.HOME.'/images/x-status/12.png" alt="8" /> Занимаюсь сексом
<input type="radio" name="xstatus" value="6" /><img src="'.HOME.'/images/x-status/6.png" alt="8" /> Играю
<input type="radio" name="xstatus" value="11" /><img src="'.HOME.'/images/x-status/11.png" alt="8" /> Пью пиво
<input type="radio" name="xstatus" value="13" /><img src="'.HOME.'/images/x-status/13.png" alt="8" /> Сонный
<input type="radio" name="xstatus" value="1" /><img src="'.HOME.'/images/x-status/1.png" alt="8" /> Безумный
<input type="submit" value="Изменить" name="ok"/></form>
</div>';
//для админов
if (isset($_REQUEST['oks']))
{
if ($user['level'] < 2)
err('У вас не достаточно прав для просмотра данной страницы!');
$xstatus = strong($_POST['xstatus']);
$db->query('UPDATE `users` SET `xstatus` = "'.$xstatus.'" WHERE `id` = "'.$user['id'].'"');
echo msg('Вы успешно изменили Х-статус на <img src="'.HOME.'/images/x-status/'.$xstatus.'.png" alt="8" />');
echo '<a href="'.HOME.'/user/x-status.php" class="menudiv">» В Х-статус</a>';
require_once ('../system/footer.php');
exit;
}
if ($user['level'] >= 2)
{
if ($user['sex'] == 1)
{
echo '<div class="podmenu"><form action="" method="post">';
echo '<b>Для Администратора:</b></br>
<input type="radio" name="xstatus" value="18" /><img src="'.HOME.'/images/x-status/18.png" alt="8" /> 1
<input type="radio" name="xstatus" value="19" /><img src="'.HOME.'/images/x-status/19.png" alt="8" /> 2
<input type="radio" name="xstatus" value="20" /><img src="'.HOME.'/images/x-status/20.png" alt="8" /> 3
<input type="submit" value="Изменить" name="oks"/></form>';
} else
{
echo '<div class="podmenu"><form action="" method="post">';
echo '<b>Для Администраторши:</b></br>
<input type="radio" name="xstatus" value="21" /><img src="'.HOME.'/images/x-status/21.png" alt="8" /> 1
<input type="radio" name="xstatus" value="22" /><img src="'.HOME.'/images/x-status/22.png" alt="8" /> 2
<input type="radio" name="xstatus" value="23" /><img src="'.HOME.'/images/x-status/23.png" alt="8" /> 3
<input type="submit" value="Изменить" name="oks"/></form>';
}
echo '<b>Данный раздел предназначен только для администраторов сайта</b></div>';
}
echo '<a href="'.HOME.'/user/cab.php" class="menudiv">» В кабинет</a>';
require_once ('../system/footer.php');
?>