팝업 레이어 접속기기 설정할 수 있도록 수정

This commit is contained in:
chicpro
2013-12-06 10:21:23 +09:00
parent e5cc941e0c
commit 9ab109aca6
8 changed files with 92 additions and 5 deletions

View File

@ -16,6 +16,7 @@ if ($w == "u")
else
{
$html_title .= " 입력";
$nw['nw_device'] = 'both';
$nw['nw_disable_hours'] = 24;
$nw['nw_left'] = 10;
$nw['nw_top'] = 10;
@ -44,6 +45,17 @@ include_once (G5_ADMIN_PATH.'/admin.head.php');
<col>
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="nw_device">접속기기</label></th>
<td>
<?php echo help("팝업레이어가 표시될 접속기기를 설정합니다."); ?>
<select name="nw_device" id="nw_device">
<option value="both"<?php echo get_selected($nw['nw_device'], 'both', true); ?>>PC와 모바일</option>
<option value="pc"<?php echo get_selected($nw['nw_device'], 'pc'); ?>>PC</option>
<option value="mobile"<?php echo get_selected($nw['nw_device'], 'mobile'); ?>>모바일</option>
</select>
</td>
</tr>
<tr>
<th scope="row"><label for="nw_disable_hours">시간</label></th>
<td>

View File

@ -10,7 +10,8 @@ if ($W == 'd')
else
auth_check($auth[$sub_menu], "w");
$sql_common = " nw_begin_time = '$nw_begin_time',
$sql_common = " nw_device = '$nw_device',
nw_begin_time = '$nw_begin_time',
nw_end_time = '$nw_end_time',
nw_disable_hours = '$nw_disable_hours',
nw_left = '$nw_left',
@ -23,9 +24,6 @@ $sql_common = " nw_begin_time = '$nw_begin_time',
if($w == "")
{
$sql = " alter table {$g5['g5_shop_new_win_table']} auto_increment=1 ";
sql_query($sql);
$sql = " insert {$g5['g5_shop_new_win_table']} set $sql_common ";
sql_query($sql);

View File

@ -31,6 +31,7 @@ $result = sql_query($sql);
<tr>
<th scope="col">번호</th>
<th scope="col">제목</th>
<th scope="col">접속기기</th>
<th scope="col">시작일시</th>
<th scope="col">종료일시</th>
<th scope="col">시간</th>
@ -45,10 +46,23 @@ $result = sql_query($sql);
<?php
for ($i=0; $row=mysql_fetch_array($result); $i++) {
$bg = 'bg'.($i%2);
switch($row['nw_device']) {
case 'pc':
$nw_device = 'PC';
break;
case 'mobile':
$nw_device = '모바일';
break;
default:
$nw_device = '모두';
break;
}
?>
<tr class="<?php echo $bg; ?>">
<td class="td_num"><?php echo $row['nw_id']; ?></td>
<td><?php echo $row['nw_subject']; ?></td>
<td><?php echo $nw_device; ?></td>
<td class="td_datetime"><?php echo substr($row['nw_begin_time'],2,14); ?></td>
<td class="td_datetime"><?php echo substr($row['nw_end_time'],2,14); ?></td>
<td class="td_num"><?php echo $row['nw_disable_hours']; ?>시간</td>
@ -65,7 +79,7 @@ $result = sql_query($sql);
}
if ($i == 0) {
echo '<tr><td colspan="10" class="empty_table">자료가 한건도 없습니다.</td></tr>';
echo '<tr><td colspan="11" class="empty_table">자료가 한건도 없습니다.</td></tr>';
}
?>
</tbody>