93 lines
2.8 KiB
PHP
93 lines
2.8 KiB
PHP
<?php
|
|
$sub_menu = '500300';
|
|
include_once('./_common.php');
|
|
|
|
if ($w == "u" || $w == "d")
|
|
check_demo();
|
|
|
|
if ($w == 'd')
|
|
auth_check($auth[$sub_menu], "d");
|
|
else
|
|
auth_check($auth[$sub_menu], "w");
|
|
|
|
@mkdir(G5_DATA_PATH."/event", G5_DIR_PERMISSION);
|
|
@chmod(G5_DATA_PATH."/event", G5_DIR_PERMISSION);
|
|
|
|
if ($ev_mimg_del) @unlink(G5_DATA_PATH."/event/{$ev_id}_m");
|
|
if ($ev_himg_del) @unlink(G5_DATA_PATH."/event/{$ev_id}_h");
|
|
if ($ev_timg_del) @unlink(G5_DATA_PATH."/event/{$ev_id}_t");
|
|
|
|
$sql_common = " set ev_skin = '$ev_skin',
|
|
ev_img_width = '$ev_img_width',
|
|
ev_img_height = '$ev_img_height',
|
|
ev_list_mod = '$ev_list_mod',
|
|
ev_list_row = '$ev_list_row',
|
|
ev_subject = '$ev_subject',
|
|
ev_head_html = '$ev_head_html',
|
|
ev_tail_html = '$ev_tail_html',
|
|
ev_use = '$ev_use',
|
|
ev_subject_strong = '$ev_subject_strong'
|
|
";
|
|
|
|
if ($w == "")
|
|
{
|
|
$ev_id = G5_SERVER_TIME;
|
|
|
|
$sql = " insert {$g5['shop_event_table']}
|
|
$sql_common
|
|
, ev_id = '$ev_id' ";
|
|
sql_query($sql);
|
|
}
|
|
else if ($w == "u")
|
|
{
|
|
$sql = " update {$g5['shop_event_table']}
|
|
$sql_common
|
|
where ev_id = '$ev_id' ";
|
|
sql_query($sql);
|
|
}
|
|
else if ($w == "d")
|
|
{
|
|
@unlink(G5_DATA_PATH."/event/{$ev_id}_m");
|
|
@unlink(G5_DATA_PATH."/event/{$ev_id}_h");
|
|
@unlink(G5_DATA_PATH."/event/{$ev_id}_t");
|
|
|
|
// 이벤트상품삭제
|
|
$sql = " delete from {$g5['shop_event_item_table']} where ev_id = '$ev_id' ";
|
|
sql_query($sql);
|
|
|
|
$sql = " delete from {$g5['shop_event_table']} where ev_id = '$ev_id' ";
|
|
sql_query($sql);
|
|
}
|
|
|
|
if ($w == "" || $w == "u")
|
|
{
|
|
if ($_FILES['ev_mimg']['name']) upload_file($_FILES['ev_mimg']['tmp_name'], $ev_id."_m", G5_DATA_PATH."/event");
|
|
if ($_FILES['ev_himg']['name']) upload_file($_FILES['ev_himg']['tmp_name'], $ev_id."_h", G5_DATA_PATH."/event");
|
|
if ($_FILES['ev_timg']['name']) upload_file($_FILES['ev_timg']['tmp_name'], $ev_id."_t", G5_DATA_PATH."/event");
|
|
|
|
// 등록된 이벤트 상품 먼저 삭제
|
|
$sql = " delete from {$g5['shop_event_item_table']} where ev_id = '$ev_id' ";
|
|
sql_query($sql);
|
|
|
|
// 이벤트 상품등록
|
|
$item = explode(',', $ev_item);
|
|
$count = count($item);
|
|
|
|
for($i=0; $i<$count; $i++) {
|
|
$it_id = $item[$i];
|
|
if($it_id) {
|
|
$sql = " insert into {$g5['shop_event_item_table']}
|
|
set ev_id = '$ev_id',
|
|
it_id = '$it_id' ";
|
|
sql_query($sql);
|
|
}
|
|
}
|
|
|
|
goto_url("./itemeventform.php?w=u&ev_id=$ev_id");
|
|
}
|
|
else
|
|
{
|
|
goto_url("./itemevent.php");
|
|
}
|
|
?>
|