Файл: user/private/index.php
Строк: 64
<?php
require_once '../../sys/inc/start.php';
require_once '../../sys/inc/compress.php';
require_once '../../sys/inc/sess.php';
require_once '../../sys/inc/settings.php';
require_once '../../sys/inc/db_connect.php';
require_once '../../sys/inc/ipua.php';
require_once '../../sys/inc/fnc.php';
require_once '../../sys/inc/user.php';
require_once '../../sys/inc/thead.php';
only_reg();
$set['title'] = 'Приватность';
aut();
err();
if (isset($_POST['submited'])) {
if (in_array($_POST['access'], array('all', 'only_me', 'friends', 'pass'))) {
$access = $_POST['access'];
} else {
$access = 'all';
}
if ($access == 'pass') {
if (utf8_strlen($_POST['passwd']) < 1) {
$err[] = 'Введите пароль.';
}
if (utf8_strlen($_POST['passwd']) > 16) {
$err[] = 'Пароль слишком длинный.';
}
$password = $_POST['passwd'];
} else {
$password = NULL;
}
if (!isset($err)) {
mysql_query("UPDATE `user` SET `profile_access` = '$access', `profile_password` = '" . mysql_real_escape_string($password) . "' WHERE `id` = '$user[id]'");
header("Location: /user/private");
exit();
}
}
if (!isset($user)) {
err('Доступ закрыт гостям');
} else {
echo "<div class = 'tabs'>";
echo "<a href = '/user/settings.php'>Общие</a>";
echo "<a href = '/user/private/' class = 'active'>Приватность</a>";
echo "<a href = '/user/password_edit.php'>Безопасность</a>";
echo "</div><div class = 'tabcontent'>";
echo "<form action = '' method = 'POST'>";
echo "Кто может просматривать мой профиль?<br/>";
echo "<input type = 'radio' name = 'access' value = 'all' " . ($user['profile_access'] == 'all' ? " checked = 'checked'" : NULL) . "/>";
echo "<label><img src = '/style/icons/globe-small.png'/>Все</label><br/>";
echo "<input type = 'radio' name = 'access' value = 'only_me' " . ($user['profile_access'] == 'only_me' ? " checked='checked'" : NULL)."/>";
echo "<label><img src = '/style/icons/lock-small.png' />Только я</label><br/>";
echo "<input type='radio' name='access' value='friends' ".($user['profile_access']=='friends'?" checked='checked'":NULL)."/>";
echo "<label><img src='/style/icons/user-small.png' />Мои друзья</label><br/>";
echo "<input type='radio' name='access' value='pass' ".($user['profile_access']=='pass'?" checked='checked'":NULL)." />";
echo "<label><img src='/style/icons/bullet_key.png' /> Только по паролю:</label><br/>";
echo "Пароль:<br/><input name='passwd' size='16' maxlength='16' type='text' value='".htmlspecialchars($user['profile_password'])."' /><br/>";
echo "<div class = 'button_blue'>";
echo "<button name = 'submited'>Сохранить изменения</button>";
echo "</div></form></div>";
}
require_once '../../sys/inc/tfoot.php';