Файл: mpanel/adv.php
Строк: 91
<?php
include('../core/core.php');
include(MAINDIR.'style/head.php');
if (is_admin(array(101))) {
$id = abs(intval($_GET['id']));
title('Управление рекламой');
echo'<div class="title">Управление сайтом</div>';
$act = '<img src="/imgages/act.png">';
switch ($mode):
case 'index':
echo'<div class="menu_2"> Список ссылок: (<a href="?mode=add">Добавить</a>)</div>';
$fo = DB::run()->query("SELECT * FROM `adv`");
$fo = $fo -> fetchAll();
foreach($fo AS $u){
echo'<div class="menu"><a href="'.$u['link'].'">'.$u['name'].'</a> ['.$u['gde'].'/'.$u['count'].'] [<a href="?mode=del&id='.$u['id'].'" onclick="return confirm('Вы подтверждаете удаление?')">удл</a>][<a href="?mode=edit&id='.$u['id'].'">изм</a>]</div>';
}
break;
case 'del':
echo'<div class="menu">';
if($id == !NULL){
DB::run()->query("DELETE FROM `adv` WHERE `id_chat` = ?",array($id));
header ('location: ?mode=index');
}
echo'</div>';
break;
case 'add':
echo'<div class="menu">';
$name = check($_POST['name']);
$link = check($_POST['link']);
$status = check($_POST['status']);
if($name == NULL){
echo'<form action="?mode=add" method="post">';
echo'Название ссылки:<br />
<input name="name" type="text" value="" size="30" maxlength="50" /><br />
URL:<br />
<input name="link" type="text" value="http://" size="30" maxlength="150" /><br />';
echo'Размещение:<br />
<select name="status">
<option value="head">Вверху</option>
<option value="foot">Внизу</option>
</select><br />';
echo'<input type="submit" name="submit_1" id="submit" value="Добавить!">
</form>';
echo'</div>';
} else {
DB::run()->query("INSERT INTO `chat`(`name`,`link`,`gde`,count) VALUES (?,?,?,?)",array($name,$link,$status,0));
header("Location: ?mode=index");
}
echo'</div>';
break;
case 'edit':
echo'<div class="menu">';
$name = check($_POST['name']);
$link = check($_POST['link']);
$status = check($_POST['status']);
$z = DB::run() -> queryFetch("SELECT * FROM `adv` WHERE `id`=? LIMIT 1",array($id));
if($name == NULL){
echo'<form action="?mode=edit" method="post">';
echo'Название ссылки:<br />
<input name="name" type="text" value="'.$z['name'].'" size="30" maxlength="50" /><br />
URL:<br />
<input name="link" type="text" value="'.$z['link'].'" size="30" maxlength="150" /><br />';
echo'Размещение:<br />
<select name="status">
<option value="head">Вверху</option>
<option value="foot">Внизу</option>
</select><br />';
echo'<input type="submit" name="submit_1" id="submit" value="Добавить!">
</form>';
echo'</div>';
} else {
DB::run()->query("UPDATE `adv` SET `name`=?,`status`=?,`link`=? WHERE `id` =?",array($name,$status,$link,$id));
header("Location: ?mode=index");
}
echo'</div>';
break;
default:
header ('location: ?mode=index');
endswitch;
echo'<div class="menu"><a href="/mpanel/">В админку</a></div>';
} else {header ('location: /index.php?mode=index'); }
include(MAINDIR.'style/foot.php');
?>