Файл: DARK WARS/dark_war/clans/set_index.php
Строк: 61
<?php
include_once '../start.php';
$doc = new document();
$doc->title('Настройки главной');
if (!isset($_GET['id']) || !is_numeric($_GET['id'])) {
$doc->err('Ошибка, не выбран клан');
exit();
}
$id = (int)$_GET['id'];
$ar = mysql_fetch_array(mysql_query("SELECT * FROM `dark_war_clans` WHERE id='$id' LIMIT 1"));
if (!isset($ar['id'])) {
$doc->err('Ошибка, нет такого клана');
exit();
}
$admin = mysql_fetch_assoc(mysql_query("SELECT * FROM `dark_war_clans_us` WHERE id_player='{$player->id}' AND `id_clan` = '$id' LIMIT 1"));
if ($admin['admin'] < 2 && $player->admin < 2) {
$doc->err('Вы не являетесь админом клана');
exit();
}
if (isset($_POST['save'])) {
$set_logo = (int)$_POST['set_logo'];
$set_wall = (int)$_POST['set_wall'];
$set_access_wall = (int)$_POST['set_access_wall'];
$name = text::for_name($_POST['name']);
$description = my_esc($_POST['description']);
if (!$name) {
$doc->err('Не коректное название клана');
} else {
mysql_query("UPDATE `dark_war_clans` SET `set_logo` = '$set_logo',
`set_wall` = '$set_wall', `set_access_wall` = '$set_access_wall',
`name` = '$name', `description` = '$description' WHERE `id` = '$id'");
$doc->msg('Изменения успешно приняты');
}
}
$doc->assign('method', 'post');
$doc->assign('action', null);
$dispatch[] = array('type' => 'textarea', 'name' => 'description', 'title' => 'Описание', 'br' => 1, 'value' => $ar['description']);
$dispatch[] = array('type' => 'text', 'name' => 'name', 'title' => 'Название', 'br' => 1, 'value' => $ar['name']);
$options[] = array(0, 'Все участники', $ar['set_access_wall'] === '0');
$options[] = array(1, 'Только админы', $ar['set_access_wall'] === '1');
$dispatch[] = array('type' => 'select', 'name' => 'set_access_wall', 'title' => 'Доступ к стене', 'br' => 1, 'options' => $options);
$options = array();
$options[] = array(0, 'Отображать', $ar['set_wall'] === '0');
$options[] = array(1, 'Скрытвать', $ar['set_wall'] === '1');
$dispatch[] = array('type' => 'select', 'name' => 'set_wall', 'title' => 'Отображение стены', 'br' => 1, 'options' => $options);
$options = array();
$options[] = array(0, 'Отображать', $ar['set_logo'] === '0');
$options[] = array(1, 'Скрытвать', $ar['set_logo'] === '1');
$dispatch[] = array('type' => 'select', 'name' => 'set_logo', 'title' => 'Отображение лого', 'br' => 1, 'options' => $options);
$dispatch[] = array('type' => 'submit', 'name' => 'save', 'value' => 'Сохранить', 'br' => 0);
$doc->assign('dis', $dispatch);
$doc->display('form.tpl');
$doc->ret("/dark_war/clans/admin.php?id=$id", 'Админка');
$doc->ret("/dark_war/clans/clan.php?id=$id", 'В клан');
?>