Файл: world-faces.ru/world-faces.ru/forum/set.php
Строк: 118
<?
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/dbPDO.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
$set['title']='Мои сообщения';
include_once '../sys/inc/thead.php';
title();
aut(); // форма авторизации
echo "<div class='menu'>n";
echo "• <a href='index.php'>Форум</a> / Настройкиn";
echo "</div>n";
if(isset($_POST['submit'])){
$bbp = abs((int)$_POST['set_for_bb']);
$sip = abs((int)$_POST['set_for_size']);
$for = abs((int)$_POST['set_for_form']);
$W = abs((int)$_POST['set_for_w']);
$H = abs((int)$_POST['set_for_h']);
$edp = abs((int)$_POST['set_for_edit']);
$say = abs((int)$_POST['set_for_say']);
$upl = abs((int)$_POST['set_for_upl']);
$pgs = abs((int)$_POST['set_for_page']);
if(DB::$dbs->query("UPDATE user SET set_for_bb =?,
set_for_size =?,
set_for_form =?,
set_for_w =?,
set_for_h =?,
set_for_edit =?,
set_for_say =?,
set_for_upl =?,
set_for_page =? WHERE id=? LIMIT 1",array($bbp,$sip,$for,$W,$H,$edp,$say,$upl,$pgs,$user['id'])))
msg('Настройки форума успешно сохранены!');
else msg('Ошибка, настройки не сохранены!');
}
echo "<form method='post' action='?' name='auth'>";
echo "<b>Кол-во сообшений на стр:</b><br/>";
echo "<input name='set_for_page' size='3' maxlength='3' value='$user[set_for_page]' title='set_for_page' emptyok='true'/><br/>";
echo "<b>Поле ввода:</b><br/>Ширина:";
echo "<input name='set_for_w' size='3' maxlength='3' value='$user[set_for_w]' title='set_for_w' emptyok='true'/> n";
echo "Длина:<input name='set_for_h' size='3' maxlength='3' value='$user[set_for_h]' title='set_for_h' emptyok='true'/><br/>n";
echo "<b>Символов в посте*:</b><br/>";
echo "<input name='set_for_size' size='3' maxlength='3' value='$user[set_for_size]' title='set_for_size' emptyok='true'/><br/>n";
echo "<b>Отображать форму быстрого ответа в темах:</b><br/>";
if ($user['set_for_form']==1)
echo "<input type='radio' name='set_for_form' value='1' checked/>Да <input type='radio' name='set_for_form' value='0'/>Нет<br />n";
else
echo "<input type='radio' name='set_for_form' value='1'/>Да <input type='radio' name='set_for_form' value='0' checked/>Нет<br />n";
echo "<b>Показывать время последнего редактирования сообщений в темах:</b><br/>n";
if ($user['set_for_edit']==1)
echo "<input type='radio' name='set_for_edit' value='1' checked/>Да <input type='radio' name='set_for_edit' value='0'/>Нет<br />n";
else
echo "<input type='radio' name='set_for_edit' value='1'/>Да <input type='radio' name='set_for_edit' value='0' checked/>Нет<br />n";
echo "<b>Показывать поля для выгрузки файлов:</b><br/>";
if ($user['set_for_upl']==1)
echo "<input type='radio' name='set_for_upl' value='1' checked/>Да <input type='radio' name='set_for_upl' value='0'/>Нет<br />n";
else
echo "<input type='radio' name='set_for_upl' value='1'/>Да <input type='radio' name='set_for_upl' value='0' checked/>Нет<br />n";
echo "<b>BB-Панель:</b><br/>";
if ($user['set_for_bb']==1)
echo "<input type='radio' name='set_for_bb' value='1' checked/>Да <input type='radio' name='set_for_bb' value='0'/>Нет<br />n";
else
echo "<input type='radio' name='set_for_bb' value='1'/>Да <input type='radio' name='set_for_bb' value='0' checked/>Нет<br />n";
echo "<br /><input type='submit' value='Сохранить' name='submit'/></form><br/>n";
echo "<div class='menu'><b>*</b> по сколько символов показывать сообщения.Если в сообщении больше символов, чем указано в этом параметре, то появится ссылка 'Читать все >>'.Если установить 0, то снимается ограничение, но увеличивается размер страницы.</div>n";
include_once '../sys/inc/tfoot.php';
?>