File size: 3.03Kb
<?
/*
=============================================
Движок: SHCMS Engine
=============================================
Название файла: Настройка вывода постов в главном меню
=============================================
Official website: http://shcms.ru
=============================================
*/
define('SHCMS', true);
include_once'../system/inc/system_core.php';
$shcmsengine['title'] = 'Настройка вывода постов в гл. меню';
include_once'../template/head.php';
engine::available();
user::users_admin();
$widget = mysql_fetch_array(mysql_query("SELECT * FROM `menu_widget`"));
switch($act):
default;
echo '<div class="maintitle">Настройка вывода постов</div>';
echo '<div class="maintext">';
echo 'Количество новостей: <b>'.$widget['uncos'].'</b> <a href="?act=edit&id=1">[Изменить]</a><hr/>';
echo 'Количество постов: <b>'.$widget['shouts'].'</b> <a href="?act=edit&id=2">[Изменить]</a><hr/>';
echo 'Количество тем: <b>'.$widget['new_them'].'</b> <a href="?act=edit&id=3">[Изменить]</a><hr/>';
echo '</div>';
break;
case 'edit':
if(isset($_GET['id'])) {$id = $_GET['id'];}
$id = trim($id);
$id = stripslashes($id);
$id = htmlspecialchars($id);
if(isset($_POST['submit'])) {$submit = $_POST['submit'];}
if(isset($submit)) {
if(isset($_POST['name'])) {$name = $_POST['name'];}
$name = trim($name);
$name = stripslashes($name);
$name = htmlspecialchars($name);
if(empty($name)) {
echo engine::errors('Поле не нужно оставлять пустым');
header('Refresh: 1; url=/');
include_once'../template/foot.php';
exit();
}
if($id == 1) {
$mysql = mysql_query('UPDATE `menu_widget` SET `uncos` = '.$name);
echo engine::correct('Успешно изменено');
header('Refresh: 1; url=settings_widget.php');
include_once'../template/foot.php';
exit();
}elseif($id == 2) {
$mysql = mysql_query('UPDATE `menu_widget` SET `shouts` = '.$name);
echo engine::correct('Успешно изменено');
header('Refresh: 1; url=settings_widget.php');
include_once'../template/foot.php';
exit();
}elseif($id == 3) {
$mysql = mysql_query('UPDATE `menu_widget` SET `new_them` = '.$name);
echo engine::correct('Успешно изменено');
header('Refresh: 1; url=settings_widget.php');
include_once'../template/foot.php';
exit();
}
}
$form = new form('?act=edit&id='.$id);
if($id == 1) {
$form->input('Количество новостей:','name','text',$widget['uncos'],true);
}elseif($id == 2) {
$form->input('Количество постов:','name','text',$widget['shouts'],true);
}elseif($id == 3) {
$form->input('Количество тем:','name','text',$widget['new_them'],true);
}
$form->submit('Применить','submit');
$form->finish();
echo '<div class="link_str"><a href="settings_widget.php">Назад</a></div>';
break;
endswitch;
include_once'../template/foot.php';