php strict 적용
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
<?
|
||||
<?php
|
||||
$sub_menu = '400100';
|
||||
include_once('./_common.php');
|
||||
include_once(G4_CKEDITOR_PATH.'/ckeditor.lib.php');
|
||||
@ -82,8 +82,8 @@ $pg_anchor = '<ul class="anchor">
|
||||
<form name="fconfig" action="./configformupdate.php" onsubmit="return fconfig_check(this)" method="post" enctype="MULTIPART/FORM-DATA">
|
||||
<section id="anc_scf_info" class="cbox">
|
||||
<h2>사업자정보</h2>
|
||||
<?=$pg_anchor?>
|
||||
<p><?=help("사업자정보는 tail.php 와 content.php 에서 표시합니다.")?></p>
|
||||
<?php echo $pg_anchor; ?>
|
||||
<p><?php echo help("사업자정보는 tail.php 와 content.php 에서 표시합니다."); ?></p>
|
||||
<table class="frm_tbl">
|
||||
<colgroup>
|
||||
<col class="grid_3">
|
||||
@ -95,57 +95,57 @@ $pg_anchor = '<ul class="anchor">
|
||||
<tr>
|
||||
<th scope="row"><label for="de_admin_company_name">회사명</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_company_name" value="<?=$default['de_admin_company_name']?>" id="de_admin_company_name" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_company_name" value="<?php echo $default['de_admin_company_name']; ?>" id="de_admin_company_name" class="frm_input" size="30">
|
||||
</td>
|
||||
<th scope="row"><label for="de_admin_company_saupja_no">사업자등록번호</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_company_saupja_no" value="<?=$default['de_admin_company_saupja_no']?>" id="de_admin_company_saupja_no" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_company_saupja_no" value="<?php echo $default['de_admin_company_saupja_no']; ?>" id="de_admin_company_saupja_no" class="frm_input" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_admin_company_owner">대표자명</label></th>
|
||||
<td colspan="3">
|
||||
<input type="text" name="de_admin_company_owner" value="<?=$default['de_admin_company_owner']?>" id="de_admin_company_owner" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_company_owner" value="<?php echo $default['de_admin_company_owner']; ?>" id="de_admin_company_owner" class="frm_input" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_admin_company_tel">대표전화번호</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_company_tel" value="<?=$default['de_admin_company_tel']?>" id="de_admin_company_tel" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_company_tel" value="<?php echo $default['de_admin_company_tel']; ?>" id="de_admin_company_tel" class="frm_input" size="30">
|
||||
</td>
|
||||
<th scope="row"><label for="de_admin_company_fax">팩스번호</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_company_fax" value="<?=$default['de_admin_company_fax']?>" id="de_admin_company_fax" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_company_fax" value="<?php echo $default['de_admin_company_fax']; ?>" id="de_admin_company_fax" class="frm_input" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_admin_tongsin_no">통신판매업 신고번호</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_tongsin_no" value="<?=$default['de_admin_tongsin_no']?>" id="de_admin_tongsin_no" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_tongsin_no" value="<?php echo $default['de_admin_tongsin_no']; ?>" id="de_admin_tongsin_no" class="frm_input" size="30">
|
||||
</td>
|
||||
<th scope="row"><label for="de_admin_buga_no">부가통신 사업자번호</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_buga_no" value="<?=$default['de_admin_buga_no']?>" id="de_admin_buga_no" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_buga_no" value="<?php echo $default['de_admin_buga_no']; ?>" id="de_admin_buga_no" class="frm_input" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_admin_company_zip">사업장우편번호</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_company_zip" value="<?=$default['de_admin_company_zip']?>" id="de_admin_company_zip" class="frm_input" size="10">
|
||||
<input type="text" name="de_admin_company_zip" value="<?php echo $default['de_admin_company_zip']; ?>" id="de_admin_company_zip" class="frm_input" size="10">
|
||||
</td>
|
||||
<th scope="row"><label for="de_admin_company_addr">사업장주소</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_company_addr" value="<?=$default['de_admin_company_addr']?>" id="de_admin_company_addr" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_company_addr" value="<?php echo $default['de_admin_company_addr']; ?>" id="de_admin_company_addr" class="frm_input" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_admin_info_name">정보관리책임자명</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_info_name" value="<?=$default['de_admin_info_name']?>" id="de_admin_info_name" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_info_name" value="<?php echo $default['de_admin_info_name']; ?>" id="de_admin_info_name" class="frm_input" size="30">
|
||||
</td>
|
||||
<th scope="row"><label for="de_admin_info_email">정보책임자 e-mail</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_admin_info_email" value="<?=$default['de_admin_info_email']?>" id="de_admin_info_email" class="frm_input" size="30">
|
||||
<input type="text" name="de_admin_info_email" value="<?php echo $default['de_admin_info_email']; ?>" id="de_admin_info_email" class="frm_input" size="30">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@ -155,8 +155,8 @@ $pg_anchor = '<ul class="anchor">
|
||||
|
||||
<section id="anc_scf_index" class="cbox">
|
||||
<h2>쇼핑몰 초기화면</h2>
|
||||
<?=$pg_anchor?>
|
||||
<p><?=help("상품관리에서 선택한 상품의 타입대로 쇼핑몰 초기화면에 출력합니다. (상품 타입 히트/추천/최신/인기/할인)\n각 타입별로 선택된 상품이 없으면 쇼핑몰 초기화면에 출력하지 않습니다.")?></p>
|
||||
<?php echo $pg_anchor; ?>
|
||||
<p><?php echo help("상품관리에서 선택한 상품의 타입대로 쇼핑몰 초기화면에 출력합니다. (상품 타입 히트/추천/최신/인기/할인)\n각 타입별로 선택된 상품이 없으면 쇼핑몰 초기화면에 출력하지 않습니다."); ?></p>
|
||||
<table class="frm_tbl">
|
||||
<colgroup>
|
||||
<col class="grid_3">
|
||||
@ -166,96 +166,96 @@ $pg_anchor = '<ul class="anchor">
|
||||
<tr>
|
||||
<th scope="row">히트상품출력</th>
|
||||
<td>
|
||||
<label for="de_type1_list_use">출력</label> <input type="checkbox" name="de_type1_list_use" value="1" id="de_type1_list_use" <?=$default['de_type1_list_use']?"checked":"";?>>
|
||||
<label for="de_type1_list_use">출력</label> <input type="checkbox" name="de_type1_list_use" value="1" id="de_type1_list_use" <?php echo $default['de_type1_list_use']?"checked":""; ?>>
|
||||
<label for="de_type1_list_skin">스킨 </label>
|
||||
|
||||
<select name="de_type1_list_skin" id="de_type1_list_skin">
|
||||
<?=get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type1_list_skin']);?>
|
||||
<?php echo get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type1_list_skin']); ?>
|
||||
</select>
|
||||
<label for="de_type1_list_row">출력할 줄 수</label>
|
||||
<input type="text" name="de_type1_list_row" value="<?=$default['de_type1_list_row']?>" id="de_type1_list_row" class="frm_input" size="3">
|
||||
<input type="text" name="de_type1_list_row" value="<?php echo $default['de_type1_list_row']; ?>" id="de_type1_list_row" class="frm_input" size="3">
|
||||
<label for="de_type1_list_mod">1줄당 이미지 수</label>
|
||||
<input type="text" name="de_type1_list_mod" value="<?=$default['de_type1_list_mod']?>" id="de_type1_list_mod" class="frm_input" size="3">
|
||||
<input type="text" name="de_type1_list_mod" value="<?php echo $default['de_type1_list_mod']; ?>" id="de_type1_list_mod" class="frm_input" size="3">
|
||||
<label for="de_type1_img_width">이미지 폭</label>
|
||||
<input type="text" name="de_type1_img_width" value="<?=$default['de_type1_img_width']?>" id="de_type1_img_width" class="frm_input" size="3">
|
||||
<input type="text" name="de_type1_img_width" value="<?php echo $default['de_type1_img_width']; ?>" id="de_type1_img_width" class="frm_input" size="3">
|
||||
<label for="de_type1_img_height">이미지 높이</label>
|
||||
<input type="text" name="de_type1_img_height" value="<?=$default['de_type1_img_height']?>" id="de_type1_img_height" class="frm_input" size="3">
|
||||
<input type="text" name="de_type1_img_height" value="<?php echo $default['de_type1_img_height']; ?>" id="de_type1_img_height" class="frm_input" size="3">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">추천상품출력</th>
|
||||
<td>
|
||||
<label for="de_type2_list_use">출력</label>
|
||||
<input type="checkbox" name="de_type2_list_use" value="1" id="de_type2_list_use" <?=$default['de_type2_list_use']?"checked":"";?>>
|
||||
<input type="checkbox" name="de_type2_list_use" value="1" id="de_type2_list_use" <?php echo $default['de_type2_list_use']?"checked":""; ?>>
|
||||
<label for="de_type2_list_skin">스킨</label>
|
||||
<select name="de_type2_list_skin" id="de_type2_list_skin">
|
||||
<?=get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type2_list_skin']);?>
|
||||
<?php echo get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type2_list_skin']); ?>
|
||||
</select>
|
||||
<label for="de_type2_list_row">출력할 줄 수</label>
|
||||
<input type="text" name="de_type2_list_row" value="<?=$default['de_type2_list_row']?>" id="de_type2_list_row" class="frm_input" size="3">
|
||||
<input type="text" name="de_type2_list_row" value="<?php echo $default['de_type2_list_row']; ?>" id="de_type2_list_row" class="frm_input" size="3">
|
||||
<label for="de_type2_list_mod">1줄당 이미지 수</label>
|
||||
<input type="text" name="de_type2_list_mod" value="<?=$default['de_type2_list_mod']?>" id="de_type2_list_mod" class="frm_input" size="3">
|
||||
<input type="text" name="de_type2_list_mod" value="<?php echo $default['de_type2_list_mod']; ?>" id="de_type2_list_mod" class="frm_input" size="3">
|
||||
<label for="de_type2_img_width">이미지 폭</label>
|
||||
<input type="text" name="de_type2_img_width" value="<?=$default['de_type2_img_width']?>" id="de_type2_img_width" class="frm_input" size="3">
|
||||
<input type="text" name="de_type2_img_width" value="<?php echo $default['de_type2_img_width']; ?>" id="de_type2_img_width" class="frm_input" size="3">
|
||||
<label for="de_type2_img_height">이미지 높이</label>
|
||||
<input type="text" name="de_type2_img_height" value="<?=$default['de_type2_img_height']?>" id="de_type2_img_height" class="frm_input" size="3">
|
||||
<input type="text" name="de_type2_img_height" value="<?php echo $default['de_type2_img_height']; ?>" id="de_type2_img_height" class="frm_input" size="3">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">최신상품출력</th>
|
||||
<td>
|
||||
<label for="de_type3_list_use">출력</label>
|
||||
<input type="checkbox" name="de_type3_list_use" value="1" id="de_type3_list_use" <?=$default['de_type3_list_use']?"checked":"";?>>
|
||||
<input type="checkbox" name="de_type3_list_use" value="1" id="de_type3_list_use" <?php echo $default['de_type3_list_use']?"checked":""; ?>>
|
||||
<label for="de_type3_list_skin">스킨</label>
|
||||
<select name="de_type3_list_skin" id="de_type3_list_skin">
|
||||
<?=get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type3_list_skin']);?>
|
||||
<?php echo get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type3_list_skin']); ?>
|
||||
</select>
|
||||
<label for="de_type3_list_row">출력할 줄 수</label>
|
||||
<input type="text" name="de_type3_list_row" value="<?=$default['de_type3_list_row']?>" id="de_type3_list_row" class="frm_input" size="3">
|
||||
<input type="text" name="de_type3_list_row" value="<?php echo $default['de_type3_list_row']; ?>" id="de_type3_list_row" class="frm_input" size="3">
|
||||
<label for="de_type3_list_mod">1줄당 이미지 수</label>
|
||||
<input type="text" name="de_type3_list_mod" value="<?=$default['de_type3_list_mod']?>" id="de_type3_list_mod" class="frm_input" size="3">
|
||||
<input type="text" name="de_type3_list_mod" value="<?php echo $default['de_type3_list_mod']; ?>" id="de_type3_list_mod" class="frm_input" size="3">
|
||||
<label for="de_type3_img_width">이미지 폭</label>
|
||||
<input type="text" name="de_type3_img_width" value="<?=$default['de_type3_img_width']?>" id="de_type3_img_width" class="frm_input" size="3">
|
||||
<input type="text" name="de_type3_img_width" value="<?php echo $default['de_type3_img_width']; ?>" id="de_type3_img_width" class="frm_input" size="3">
|
||||
<label for="de_type3_img_height">이미지 높이</label>
|
||||
<input type="text" name="de_type3_img_height" value="<?=$default['de_type3_img_height']?>" id="de_type3_img_height" class="frm_input" size="3">
|
||||
<input type="text" name="de_type3_img_height" value="<?php echo $default['de_type3_img_height']; ?>" id="de_type3_img_height" class="frm_input" size="3">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">인기상품출력</th>
|
||||
<td>
|
||||
<label for="de_type4_list_use">출력</label>
|
||||
<input type="checkbox" name="de_type4_list_use" value="1" id="de_type4_list_use" <?=$default['de_type4_list_use']?"checked":"";?>>
|
||||
<input type="checkbox" name="de_type4_list_use" value="1" id="de_type4_list_use" <?php echo $default['de_type4_list_use']?"checked":""; ?>>
|
||||
<label for="de_type4_list_skin">스킨</label>
|
||||
<select name="de_type4_list_skin" id="de_type4_list_skin">
|
||||
<?=get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type4_list_skin']);?>
|
||||
<?php echo get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type4_list_skin']); ?>
|
||||
</select>
|
||||
<label for="de_type4_list_row">출력할 줄 수</label>
|
||||
<input type="text" name="de_type4_list_row" value="<?=$default['de_type4_list_row']?>" id="de_type4_list_row" class="frm_input" size="3">
|
||||
<input type="text" name="de_type4_list_row" value="<?php echo $default['de_type4_list_row']; ?>" id="de_type4_list_row" class="frm_input" size="3">
|
||||
<label for="de_type4_list_mod">1줄당 이미지 수</label>
|
||||
<input type="text" name="de_type4_list_mod" value="<?=$default['de_type4_list_mod']?>" id="de_type4_list_mod" class="frm_input" size="3">
|
||||
<input type="text" name="de_type4_list_mod" value="<?php echo $default['de_type4_list_mod']; ?>" id="de_type4_list_mod" class="frm_input" size="3">
|
||||
<label for="de_type4_img_width">이미지 폭</label>
|
||||
<input type="text" name="de_type4_img_width" value="<?=$default['de_type4_img_width']?>" id="de_type4_img_width" class="frm_input" size="3">
|
||||
<input type="text" name="de_type4_img_width" value="<?php echo $default['de_type4_img_width']; ?>" id="de_type4_img_width" class="frm_input" size="3">
|
||||
<label for="de_type4_img_height">이미지 높이</label>
|
||||
<input type="text" name="de_type4_img_height" value="<?=$default['de_type4_img_height']?>" id="de_type4_img_height" class="frm_input" size="3">
|
||||
<input type="text" name="de_type4_img_height" value="<?php echo $default['de_type4_img_height']; ?>" id="de_type4_img_height" class="frm_input" size="3">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">할인상품출력</th>
|
||||
<td>
|
||||
<label for="de_type5_list_use">출력</label>
|
||||
<input type="checkbox" name="de_type5_list_use" value="1" id="de_type5_list_use" <?=$default['de_type5_list_use']?"checked":"";?>>
|
||||
<input type="checkbox" name="de_type5_list_use" value="1" id="de_type5_list_use" <?php echo $default['de_type5_list_use']?"checked":""; ?>>
|
||||
<label for="de_type5_list_skin">스킨</label>
|
||||
<select id="de_type5_list_skin" name="de_type5_list_skin">
|
||||
<?=get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type5_list_skin']);?>
|
||||
<?php echo get_list_skin_options("^maintype(.*)\.php", G4_SHOP_PATH, $default['de_type5_list_skin']); ?>
|
||||
</select>
|
||||
<label for="de_type5_list_row">출력할 줄 수</label>
|
||||
<input type="text" name="de_type5_list_row" value="<?=$default['de_type5_list_row']?>" id="de_type5_list_row" class="frm_input" size="3">
|
||||
<input type="text" name="de_type5_list_row" value="<?php echo $default['de_type5_list_row']; ?>" id="de_type5_list_row" class="frm_input" size="3">
|
||||
<label for="de_type5_list_mod">1줄당 이미지 수</label>
|
||||
<input type="text" name="de_type5_list_mod" value="<?=$default['de_type5_list_mod']?>" id="de_type5_list_mod" class="frm_input" size="3">
|
||||
<input type="text" name="de_type5_list_mod" value="<?php echo $default['de_type5_list_mod']; ?>" id="de_type5_list_mod" class="frm_input" size="3">
|
||||
<label for="de_type5_img_width">이미지 폭</label>
|
||||
<input type="text" name="de_type5_img_width" value="<?=$default['de_type5_img_width']?>" id="de_type5_img_width" class="frm_input" size="3">
|
||||
<input type="text" name="de_type5_img_width" value="<?php echo $default['de_type5_img_width']; ?>" id="de_type5_img_width" class="frm_input" size="3">
|
||||
<label for="de_type5_img_height">이미지 높이</label>
|
||||
<input type="text" name="de_type5_img_height" value="<?=$default['de_type5_img_height']?>" id="de_type5_img_height" class="frm_input" size="3">
|
||||
<input type="text" name="de_type5_img_height" value="<?php echo $default['de_type5_img_height']; ?>" id="de_type5_img_height" class="frm_input" size="3">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -265,7 +265,7 @@ $pg_anchor = '<ul class="anchor">
|
||||
|
||||
<section id ="anc_scf_payment" class="cbox">
|
||||
<h2>결제정보</h2>
|
||||
<?=$pg_anchor?>
|
||||
<?php echo $pg_anchor; ?>
|
||||
<table class="frm_tbl">
|
||||
<colgroup>
|
||||
<col class="grid_3">
|
||||
@ -275,149 +275,149 @@ $pg_anchor = '<ul class="anchor">
|
||||
<tr>
|
||||
<th scope="row"><label for="de_bank_use">무통장입금사용</label></th>
|
||||
<td>
|
||||
<?=help("주문시 무통장으로 입금을 가능하게 할것인지를 설정합니다.\n사용할 경우 은행계좌번호를 반드시 입력하여 주십시오.", 50)?>
|
||||
<?php echo help("주문시 무통장으로 입금을 가능하게 할것인지를 설정합니다.\n사용할 경우 은행계좌번호를 반드시 입력하여 주십시오.", 50); ?>
|
||||
<select id="de_bank_use" name="de_bank_use">
|
||||
<option value="0" <?=get_selected($default['de_bank_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_bank_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_bank_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_bank_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_bank_account">은행계좌번호</label></th>
|
||||
<td>
|
||||
<textarea name="de_bank_account" id="de_bank_account"><?=$default['de_bank_account']?></textarea>
|
||||
<textarea name="de_bank_account" id="de_bank_account"><?php echo $default['de_bank_account']; ?></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_iche_use">계좌이체 결제사용</label></th>
|
||||
<td colspan="3">
|
||||
<?=help("주문시 실시간 계좌이체를 가능하게 할것인지를 설정합니다.", 50)?>
|
||||
<?php echo help("주문시 실시간 계좌이체를 가능하게 할것인지를 설정합니다.", 50); ?>
|
||||
<select id="de_iche_use" name="de_iche_use">
|
||||
<option value="0" <?=get_selected($default['de_iche_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_iche_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_iche_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_iche_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_vbank_use">가상계좌 결제사용</label></th>
|
||||
<td>
|
||||
<?=help("주문자가 현금거래를 원할 경우, 해당 거래건에 대해 주문자에게 고유로 발행되는 일회용 계좌번호입니다.", 50)?>
|
||||
<?php echo help("주문자가 현금거래를 원할 경우, 해당 거래건에 대해 주문자에게 고유로 발행되는 일회용 계좌번호입니다.", 50); ?>
|
||||
<select name="de_vbank_use" id="de_vbank_use">
|
||||
<option value="0" <?=get_selected($default['de_vbank_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_vbank_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_vbank_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_vbank_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_hp_use">휴대폰결제사용</label></th>
|
||||
<td>
|
||||
<?=help("주문시 휴대폰 결제를 가능하게 할것인지를 설정합니다.", 50)?>
|
||||
<?php echo help("주문시 휴대폰 결제를 가능하게 할것인지를 설정합니다.", 50); ?>
|
||||
<select id="de_hp_use" name="de_hp_use">
|
||||
<option value="0" <?=get_selected($default['de_hp_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_hp_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_hp_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_hp_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_card_use">신용카드결제사용</label></th>
|
||||
<td>
|
||||
<?=help("주문시 신용카드 결제를 가능하게 할것인지를 설정합니다.", 50)?>
|
||||
<?php echo help("주문시 신용카드 결제를 가능하게 할것인지를 설정합니다.", 50); ?>
|
||||
<select id="de_card_use" name="de_card_use">
|
||||
<option value="0" <?=get_selected($default['de_card_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_card_use'], 1)?>>사용<option>
|
||||
<option value="0" <?php echo get_selected($default['de_card_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_card_use'], 1); ?>>사용<option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_card_max_amount">카드결제최소금액</label></th>
|
||||
<td>
|
||||
<?=help("신용카드는 경우 1000원 미만은 결제가 불가능합니다.\n카드결제최소금액을 1000원 이상으로 설정하십시오.")?>
|
||||
<input type="text" name="de_card_max_amount" value="<?=$default['de_card_max_amount']?>" id="de_card_max_amount" class="frm_input" size="10"> 원
|
||||
<?php echo help("신용카드는 경우 1000원 미만은 결제가 불가능합니다.\n카드결제최소금액을 1000원 이상으로 설정하십시오."); ?>
|
||||
<input type="text" name="de_card_max_amount" value="<?php echo $default['de_card_max_amount']; ?>" id="de_card_max_amount" class="frm_input" size="10"> 원
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_taxsave_use">현금영수증<br>발급사용</label></th>
|
||||
<td>
|
||||
<?=help("관리자는 설정에 관계없이 <a href=\"".G4_ADMIN_URL."/shop_admin/orderlist.php\">주문내역</a> > 수정에서 발급이 가능합니다.\n현금영수증 발급 취소는 PG사에서 지원하는 현금영수증 취소 기능을 사용하시기 바랍니다.", 50)?>
|
||||
<?php echo help("관리자는 설정에 관계없이 <a href=\"".G4_ADMIN_URL."/shop_admin/orderlist.php\">주문내역</a> > 수정에서 발급이 가능합니다.\n현금영수증 발급 취소는 PG사에서 지원하는 현금영수증 취소 기능을 사용하시기 바랍니다.", 50); ?>
|
||||
<select id="de_taxsave_use" name="de_taxsave_use">
|
||||
<option value="0" <?=get_selected($default['de_taxsave_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_taxsave_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_taxsave_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_taxsave_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="cf_use_point">포인트 사용</label></th>
|
||||
<td>
|
||||
<?=help("<a href=\"".G4_ADMIN_URL."/config_form.php#frm_board\" target=\"_blank\">환경설정 > 기본환경설정</a>과 동일한 설정입니다.")?>
|
||||
<input type="checkbox" name="cf_use_point" value="1" id="cf_use_point"<?=$config['cf_use_point']?' checked':'';?>> 사용
|
||||
<?php echo help("<a href=\"".G4_ADMIN_URL."/config_form.php#frm_board\" target=\"_blank\">환경설정 > 기본환경설정</a>과 동일한 설정입니다."); ?>
|
||||
<input type="checkbox" name="cf_use_point" value="1" id="cf_use_point"<?php echo $config['cf_use_point']?' checked':''; ?>> 사용
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_point_settle">포인트결제 비율</label></th>
|
||||
<td>
|
||||
<?=help("회원의 포인트가 설정값 이상일 경우만 주문시 결제에 사용할 수 있습니다.\n포인트 사용을 하지 않는 경우에는 의미가 없습니다.")?>
|
||||
<input type="text" name="de_point_settle" value="<?=$default['de_point_settle']?>" id="de_point_settle" class="frm_input" size="10"> 점
|
||||
<?php echo help("회원의 포인트가 설정값 이상일 경우만 주문시 결제에 사용할 수 있습니다.\n포인트 사용을 하지 않는 경우에는 의미가 없습니다."); ?>
|
||||
<input type="text" name="de_point_settle" value="<?php echo $default['de_point_settle']; ?>" id="de_point_settle" class="frm_input" size="10"> 점
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_point_per">포인트결제 %</label></th>
|
||||
<td>
|
||||
<?=help("회원 보유 포인트가 결제액보다 많을 경우, 결제액에서 포인트로 결제 가능한 비율을 설정합니다.")?>
|
||||
<?php echo help("회원 보유 포인트가 결제액보다 많을 경우, 결제액에서 포인트로 결제 가능한 비율을 설정합니다."); ?>
|
||||
<select id="de_point_per" name="de_point_per">
|
||||
<? for ($i=100; $i>0; $i=$i-5) echo '<option value="'.$i.'" '.get_selected($default['de_point_per'], $i).'>'.$i.'</option>'.PHP_EOL; ?>
|
||||
<?php for ($i=100; $i>0; $i=$i-5) echo '<option value="'.$i.'" '.get_selected($default['de_point_per'], $i).'>'.$i.'</option>'.PHP_EOL; ?>
|
||||
</select>%
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_card_point">포인트부여</label></th>
|
||||
<td>
|
||||
<?=help("신용카드, 계좌이체 결제시 포인트를 부여할지를 설정합니다. (기본값은 '아니오')", 50)?>
|
||||
<?php echo help("신용카드, 계좌이체 결제시 포인트를 부여할지를 설정합니다. (기본값은 '아니오')", 50); ?>
|
||||
<select id="de_card_point" name="de_card_point">
|
||||
<option value="0" <?=get_selected($default['de_card_point'], 0)?>>아니오</option>
|
||||
<option value="1" <?=get_selected($default['de_card_point'], 1)?>>예</option>
|
||||
<option value="0" <?php echo get_selected($default['de_card_point'], 0); ?>>아니오</option>
|
||||
<option value="1" <?php echo get_selected($default['de_card_point'], 1); ?>>예</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_point_days">주문완료 포인트</label></th>
|
||||
<td>
|
||||
<?=help("주문자가 회원일 경우에만 주문완료 포인트를 지급합니다. 주문취소, 반품 등을 고려하여 적당한 기간을 입력하십시오. (기본값은 7)\n0 으로 설정하는 경우 주문완료와 동시에 포인트를 부여합니다.", -150)?>
|
||||
주문 완료 <input type="text" name="de_point_days" value="<?=$default['de_point_days']?>" id="de_point_days" class="frm_input" size="2"> 일 이후에 포인트를 부여
|
||||
<?php echo help("주문자가 회원일 경우에만 주문완료 포인트를 지급합니다. 주문취소, 반품 등을 고려하여 적당한 기간을 입력하십시오. (기본값은 7)\n0 으로 설정하는 경우 주문완료와 동시에 포인트를 부여합니다.", -150); ?>
|
||||
주문 완료 <input type="text" name="de_point_days" value="<?php echo $default['de_point_days']; ?>" id="de_point_days" class="frm_input" size="2"> 일 이후에 포인트를 부여
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_kcp_mid">KCP SITE CODE</label></th>
|
||||
<td>
|
||||
<?=help("KCP 에서 받은 SR 로 시작하는 영대문자, 숫자 혼용 총 5자리 SITE CODE 를 입력하세요.\n만약, 사이트코드가 SR로 시작하지 않는다면 KCP에 사이트코드 변경 요청을 하십시오. 예) SRZ89");?>
|
||||
<?php echo help("KCP 에서 받은 SR 로 시작하는 영대문자, 숫자 혼용 총 5자리 SITE CODE 를 입력하세요.\n만약, 사이트코드가 SR로 시작하지 않는다면 KCP에 사이트코드 변경 요청을 하십시오. 예) SRZ89"); ?>
|
||||
<input type="hidden" name="de_card_pg" value="kcp">
|
||||
<span class="sitecode">SR</span> <input type="text" name="de_kcp_mid" value="<?=$default['de_kcp_mid']?>" id="de_kcp_mid" class="frm_input" size="2" maxlength="3" style="font:bold 15px Verdana;"> 영대문자, 숫자 혼용 3자리
|
||||
<span class="sitecode">SR</span> <input type="text" name="de_kcp_mid" value="<?php echo $default['de_kcp_mid']; ?>" id="de_kcp_mid" class="frm_input" size="2" maxlength="3" style="font:bold 15px Verdana;"> 영대문자, 숫자 혼용 3자리
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_kcp_site_key">KCP SITE KEY</label></th>
|
||||
<td>
|
||||
<?=help("25자리 영대문자와 숫자 - 그리고 _ 로 이루어 집니다. SITE KEY 발급 KCP 전화: 1544-8660\n예) 1Q9YRV83gz6TukH8PjH0xFf__");?>
|
||||
<input type="text" name="de_kcp_site_key" value="<?=$default['de_kcp_site_key']?>" id="de_kcp_site_key" class="frm_input" size="32" maxlength="25">
|
||||
<?php echo help("25자리 영대문자와 숫자 - 그리고 _ 로 이루어 집니다. SITE KEY 발급 KCP 전화: 1544-8660\n예) 1Q9YRV83gz6TukH8PjH0xFf__"); ?>
|
||||
<input type="text" name="de_kcp_site_key" value="<?php echo $default['de_kcp_site_key']; ?>" id="de_kcp_site_key" class="frm_input" size="32" maxlength="25">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">에스크로 사용</th>
|
||||
<td>
|
||||
<?=help("에스크로 결제를 사용하시려면, 반드시 <strong>KCP 관리자 > 고객센터 > 서비스변경 및 추가 > 에스크로 신청 메뉴에서 에스크로를 사용 선택하고, 결제수단별로 적용 신청한 후 사용</strong>하셔야 합니다.\n에스크로 사용시 배송과의 연동은 되지 않으며 에스크로 결제만 지원됩니다.")?>
|
||||
<input type="radio" name="de_escrow_use" value="0" <?=$default['de_escrow_use']==0?"checked":"";?> id="de_escrow_use1">
|
||||
<?php echo help("에스크로 결제를 사용하시려면, 반드시 <strong>KCP 관리자 > 고객센터 > 서비스변경 및 추가 > 에스크로 신청 메뉴에서 에스크로를 사용 선택하고, 결제수단별로 적용 신청한 후 사용</strong>하셔야 합니다.\n에스크로 사용시 배송과의 연동은 되지 않으며 에스크로 결제만 지원됩니다."); ?>
|
||||
<input type="radio" name="de_escrow_use" value="0" <?php echo $default['de_escrow_use']==0?"checked":""; ?> id="de_escrow_use1">
|
||||
<label for="de_escrow_use1">일반결제 사용</label>
|
||||
<input type="radio" name="de_escrow_use" value="1"<?=$default['de_escrow_use']==1?"checked":"";?> id="de_escrow_use2">
|
||||
<input type="radio" name="de_escrow_use" value="1"<?php echo $default['de_escrow_use']==1?"checked":""; ?> id="de_escrow_use2">
|
||||
<label for="de_escrow_use2"> 에스크로결제 사용</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">신용카드 결제테스트</th>
|
||||
<td>
|
||||
<?=help("신용카드를 테스트 하실 경우에 체크하세요. 결제단위 최소 1,000원")?>
|
||||
<?php echo help("신용카드를 테스트 하실 경우에 체크하세요. 결제단위 최소 1,000원"); ?>
|
||||
<label for="de_card_test1">실결제 </label>
|
||||
<input type="radio" name="de_card_test" value="0" <?=$default['de_card_test']==0?"checked":"";?> id="de_card_test1">
|
||||
<input type="radio" name="de_card_test" value="0" <?php echo $default['de_card_test']==0?"checked":""; ?> id="de_card_test1">
|
||||
<label for="de_card_test2">테스트결제</label>
|
||||
<input type="radio" name="de_card_test" value="1" <?=$default['de_card_test']==1?"checked":"";?> id="de_card_test2">
|
||||
<input type="radio" name="de_card_test" value="1" <?php echo $default['de_card_test']==1?"checked":""; ?> id="de_card_test2">
|
||||
<div id="scf_cardtest">
|
||||
<a href="https://admin8.kcp.co.kr/assist/login.LoginAction.do" target="_blank">실결제 관리자</a>
|
||||
<a href="http://testadmin8.kcp.co.kr/assist/login.LoginAction.do" target="_blank">테스트 관리자</a>
|
||||
@ -451,86 +451,86 @@ $pg_anchor = '<ul class="anchor">
|
||||
<tr>
|
||||
<th scope="row">공통 URL</th>
|
||||
<td>
|
||||
<?=help("가상계좌 사용시 다음 주소를 <strong>KCP 관리자 > 상점정보관리 > 정보변경 > 공통URL 정보 > 공통URL 변경후</strong>에 넣으셔야 상점에 자동으로 입금 통보됩니다.")?>
|
||||
<?=G4_SHOP_URL?>/settle_kcp_common.php
|
||||
<?php echo help("가상계좌 사용시 다음 주소를 <strong>KCP 관리자 > 상점정보관리 > 정보변경 > 공통URL 정보 > 공통URL 변경후</strong>에 넣으셔야 상점에 자동으로 입금 통보됩니다."); ?>
|
||||
<?php echo G4_SHOP_URL; ?>/settle_kcp_common.php
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none;">
|
||||
<th scope="row"><label for="de_dacom_mid">LG텔레콤 상점아이디</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_dacom_mid" value="<?=$default['de_dacom_mid']?>" id="de_dacom_mid" size="40">
|
||||
<?=help("tsi_ 로 시작되는 상점아이디로만 테스트 결제가 가능합니다.");?>
|
||||
<input type="text" name="de_dacom_mid" value="<?php echo $default['de_dacom_mid']; ?>" id="de_dacom_mid" size="40">
|
||||
<?php echo help("tsi_ 로 시작되는 상점아이디로만 테스트 결제가 가능합니다."); ?>
|
||||
</td>
|
||||
<th scope="row"><label for="de_dacom_mertkey">LG텔레콤 mertkey</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_dacom_mertkey" value="<?=$default['de_dacom_mertkey']?>" id="de_dacom_mertkey" size="40">
|
||||
<input type="text" name="de_dacom_mertkey" value="<?php echo $default['de_dacom_mertkey']; ?>" id="de_dacom_mertkey" size="40">
|
||||
</td>
|
||||
<!-- <td>LG텔레콤 테스트 모드</td>
|
||||
<td>
|
||||
<input type="checkbox" name="de_dacom_test" value="1" <?=$default[de_dacom_test]?"checked":"";?>>
|
||||
<input type="checkbox" name="de_dacom_test" value="1" <?php echo $default['de_dacom_test']?"checked":""; ?>>
|
||||
테스트로 결제하실 경우에 체크하세요.
|
||||
</td> -->
|
||||
</tr>
|
||||
<tr style="display:none;">
|
||||
<th scope="row"><label for="de_inicis_mid">이니시스 아이디</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_inicis_mid" value="<?=$default['de_inicis_mid']?>" id="de_inicis_mid" size="40">
|
||||
<input type="text" name="de_inicis_mid" value="<?php echo $default['de_inicis_mid']; ?>" id="de_inicis_mid" size="40">
|
||||
</td>
|
||||
<th scope="row"><label for="de_inicis_passwd">이니시스 패스워드</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_inicis_passwd" value="<?=$default['de_inicis_passwd']?>" id="de_inicis_passwd">
|
||||
<input type="text" name="de_inicis_passwd" value="<?php echo $default['de_inicis_passwd']; ?>" id="de_inicis_passwd">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none">
|
||||
<th scope="row"><label for="de_banktown_mid">뱅크타운 상점ID</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_banktown_mid" value="<?=$default['de_banktown_mid']?>" id="de_banktown_mid" size="40">
|
||||
<input type="text" name="de_banktown_mid" value="<?php echo $default['de_banktown_mid']; ?>" id="de_banktown_mid" size="40">
|
||||
</td>
|
||||
<th scope="row"><label for="de_banktown_auth_key">뱅크타운 라이센스 키<!-- AuthKey --></label></th>
|
||||
<td>
|
||||
<input type="text" name="de_banktown_auth_key" value="<?=$default['de_banktown_auth_key']?>" id="de_banktown_auth_key" size="40" maxlength="32">
|
||||
<input type="text" name="de_banktown_auth_key" value="<?php echo $default['de_banktown_auth_key']; ?>" id="de_banktown_auth_key" size="40" maxlength="32">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none">
|
||||
<th scope="row"><label for="de_allthegate_mid">올더게이트 몰ID</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_allthegate_mid" value="<?=$default['de_allthegate_mid']?>" id="de_allthegate_mid" size="40">
|
||||
<input type="text" name="de_allthegate_mid" value="<?php echo $default['de_allthegate_mid']; ?>" id="de_allthegate_mid" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none">
|
||||
<th scope="row"><label for="de_allat_partner_id">올앳 파트너 ID</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_allat_partner_id" value="<?=$default['de_allat_partner_id']?>" id="de_allat_partner_id" size="40">
|
||||
<input type="text" name="de_allat_partner_id" value="<?php echo $default['de_allat_partner_id']; ?>" id="de_allat_partner_id" size="40">
|
||||
</td>
|
||||
<th scope="row"><label for="de_allat_prefix">주문번호 Prefix</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_allat_prefix" value="<?=$default['de_allat_prefix']?>" id="de_allat_prefix"> 3자리
|
||||
<input type="text" name="de_allat_prefix" value="<?php echo $default['de_allat_prefix']; ?>" id="de_allat_prefix"> 3자리
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none">
|
||||
<th scope="row"><label for="de_allat_formkey">올앳 FormKey 값</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_allat_formkey" value="<?=$default['de_allat_formkey']?>" id="de_allat_formkey" size="40">
|
||||
<input type="text" name="de_allat_formkey" value="<?php echo $default['de_allat_formkey']; ?>" id="de_allat_formkey" size="40">
|
||||
</td>
|
||||
<th scope="row"><label for="de_allat_crosskey">올앳 CrossKey 값</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_allat_crosskey" value="<?=$default['de_allat_crosskey']?>" id="de_allat_crosskey" size="40">
|
||||
<input type="text" name="de_allat_crosskey" value="<?php echo $default['de_allat_crosskey']; ?>" id="de_allat_crosskey" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none">
|
||||
<th scope="row"><label for="de_tgcorp_mxid">티지코프 ID</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_tgcorp_mxid" value="<?=$default['de_tgcorp_mxid']?>" id="de_tgcorp_mxid" size="40">
|
||||
<input type="text" name="de_tgcorp_mxid" value="<?php echo $default['de_tgcorp_mxid']; ?>" id="de_tgcorp_mxid" size="40">
|
||||
</td>
|
||||
<th scope="row"><label for="de_tgcorp_mxotp">티지코프 접근키</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_tgcorp_mxotp" value="<?=$default['de_tgcorp_mxotp']?>" id="de_tgcorp_mxotp" size="40">
|
||||
<input type="text" name="de_tgcorp_mxotp" value="<?php echo $default['de_tgcorp_mxotp']; ?>" id="de_tgcorp_mxotp" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none">
|
||||
<th scope="row"><label for="de_kspay_id">KSPAY 상점아이디</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_kspay_id" value="<?=$default['de_kspay_id']?>" id="de_kspay_id" size="40">
|
||||
<input type="text" name="de_kspay_id" value="<?php echo $default['de_kspay_id']; ?>" id="de_kspay_id" size="40">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -539,7 +539,7 @@ $pg_anchor = '<ul class="anchor">
|
||||
|
||||
<section id="anc_scf_delivery" class="cbox">
|
||||
<h2 >배송정보</h2>
|
||||
<?=$pg_anchor?>
|
||||
<?php echo $pg_anchor; ?>
|
||||
<table class="frm_tbl">
|
||||
<colgroup>
|
||||
<col class="grid_3">
|
||||
@ -549,50 +549,50 @@ $pg_anchor = '<ul class="anchor">
|
||||
<tr>
|
||||
<th scope="row"><label for="de_send_cost_case">배송비유형</label></th>
|
||||
<td>
|
||||
<?=help("<strong>상한</strong>으로 설정한 경우, 주문총액이 배송비상한가 미만일 경우 배송비를 받습니다.\n<strong>없음</strong>으로 설정한 경우, 배송비상한가 및 배송비를 무시하며 착불의 경우도 없음으로 설정됩니다.", 50);?>
|
||||
<?php echo help("<strong>상한</strong>으로 설정한 경우, 주문총액이 배송비상한가 미만일 경우 배송비를 받습니다.\n<strong>없음</strong>으로 설정한 경우, 배송비상한가 및 배송비를 무시하며 착불의 경우도 없음으로 설정됩니다.", 50); ?>
|
||||
<select name="de_send_cost_case" id="de_send_cost_case">
|
||||
<option value="상한" <?=get_selected($default['de_send_cost_case'], "상한")?>>상한</option>
|
||||
<option value="없음" <?=get_selected($default['de_send_cost_case'], "없음")?>>없음</option>
|
||||
<option value="상한" <?php echo get_selected($default['de_send_cost_case'], "상한"); ?>>상한</option>
|
||||
<option value="없음" <?php echo get_selected($default['de_send_cost_case'], "없음"); ?>>없음</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_send_cost_limit">배송비상한가</label></th>
|
||||
<td>
|
||||
<?=help("배송비유형이 '상한'일 경우에만 해당되며 배송비상한가를 여러개 두고자 하는 경우는 <b>;</b> 로 구분합니다.\n\n예를 들어 20000원 미만일 경우 4000원, 30000원 미만일 경우 3000원 으로 사용할 경우에는 배송비상한가를 20000;30000 으로 입력하고 배송비를 4000;3000 으로 입력합니다.", 50);?>
|
||||
<input type="text" name="de_send_cost_limit" value="<?=$default['de_send_cost_limit']?>" size="40" class="frm_input" id="de_send_cost_limit"> 원
|
||||
<?php echo help("배송비유형이 '상한'일 경우에만 해당되며 배송비상한가를 여러개 두고자 하는 경우는 <b>;</b> 로 구분합니다.\n\n예를 들어 20000원 미만일 경우 4000원, 30000원 미만일 경우 3000원 으로 사용할 경우에는 배송비상한가를 20000;30000 으로 입력하고 배송비를 4000;3000 으로 입력합니다.", 50); ?>
|
||||
<input type="text" name="de_send_cost_limit" value="<?php echo $default['de_send_cost_limit']; ?>" size="40" class="frm_input" id="de_send_cost_limit"> 원
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_send_cost_list">배송비</label></th>
|
||||
<td>
|
||||
<input type="text" name="de_send_cost_list" value="<?=$default['de_send_cost_list']?>" size="40" class="frm_input" id="de_send_cost_list"> 원
|
||||
<input type="text" name="de_send_cost_list" value="<?php echo $default['de_send_cost_list']; ?>" size="40" class="frm_input" id="de_send_cost_list"> 원
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_hope_date_use">희망배송일사용</label></th>
|
||||
<td>
|
||||
<?=help("'예'로 설정한 경우 주문서에서 희망배송일을 입력 받습니다.");?>
|
||||
<?php echo help("'예'로 설정한 경우 주문서에서 희망배송일을 입력 받습니다."); ?>
|
||||
<select name="de_hope_date_use" id="de_hope_date_use">
|
||||
<option value="0" <?=get_selected($default['de_hope_date_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_hope_date_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_hope_date_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_hope_date_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_hope_date_after">희망배송일지정</label></th>
|
||||
<td>
|
||||
<?=help("설정한 날로부터 일주일까지 선택박스 형식으로 출력합니다.");?>
|
||||
<input type="text" name="de_hope_date_after" value="<?=$default['de_hope_date_after']?>" id="de_hope_date_after" class="frm_input" size="5"> 일
|
||||
<?php echo help("설정한 날로부터 일주일까지 선택박스 형식으로 출력합니다."); ?>
|
||||
<input type="text" name="de_hope_date_after" value="<?php echo $default['de_hope_date_after']; ?>" id="de_hope_date_after" class="frm_input" size="5"> 일
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">배송정보</th>
|
||||
<td><?=editor_html('de_baesong_content', $default['de_baesong_content']);?></td>
|
||||
<td><?php echo editor_html('de_baesong_content', $default['de_baesong_content']); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">교환/반품</th>
|
||||
<td><?=editor_html('de_change_content', $default['de_change_content']);?></td>
|
||||
<td><?php echo editor_html('de_change_content', $default['de_change_content']); ?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@ -600,7 +600,7 @@ $pg_anchor = '<ul class="anchor">
|
||||
|
||||
<section id="anc_scf_etc" class="cbox">
|
||||
<h2>기타정보</h2>
|
||||
<?=$pg_anchor?>
|
||||
<?php echo $pg_anchor; ?>
|
||||
<table class="frm_tbl">
|
||||
<colgroup>
|
||||
<col class="grid_3">
|
||||
@ -610,43 +610,43 @@ $pg_anchor = '<ul class="anchor">
|
||||
<tr>
|
||||
<th scope="row">관련상품출력</th>
|
||||
<td>
|
||||
<?=help(G4_SHOP_DIR.'/item.php 에서 '.G4_SHOP_DIR.'/maintype10.inc.php 를 include 하여 출력합니다.');?>
|
||||
<?php echo help(G4_SHOP_DIR.'/item.php 에서 '.G4_SHOP_DIR.'/maintype10.inc.php 를 include 하여 출력합니다.'); ?>
|
||||
<label for="de_rel_list_mod">1줄당 이미지 수</label>
|
||||
<input type="text" name="de_rel_list_mod" value="<?=$default['de_rel_list_mod']?>" id="de_rel_list_mod" class="frm_input" size="3">
|
||||
<input type="text" name="de_rel_list_mod" value="<?php echo $default['de_rel_list_mod']; ?>" id="de_rel_list_mod" class="frm_input" size="3">
|
||||
<label for="de_rel_img_width">이미지폭</label>
|
||||
<input type="text" name="de_rel_img_width" value="<?=$default['de_rel_img_width']?>" id="de_rel_img_width" class="frm_input" size="3">
|
||||
<input type="text" name="de_rel_img_width" value="<?php echo $default['de_rel_img_width']; ?>" id="de_rel_img_width" class="frm_input" size="3">
|
||||
<label for="de_rel_img_height">이미지높이</label>
|
||||
<input type="text" name="de_rel_img_height" value="<?=$default['de_rel_img_height']?>" id="de_rel_img_height" class="frm_input" size="3">
|
||||
<input type="text" name="de_rel_img_height" value="<?php echo $default['de_rel_img_height']; ?>" id="de_rel_img_height" class="frm_input" size="3">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">이미지(소)</th>
|
||||
<td>
|
||||
<?=help("상품관리의 상품입력에서 이미지(대) 를 기준 자동생성해 줄때 이미지(소)의 폭과 높이를 설정한 값(단위:픽셀)로 생성합니다.");?>
|
||||
<?php echo help("상품관리의 상품입력에서 이미지(대) 를 기준 자동생성해 줄때 이미지(소)의 폭과 높이를 설정한 값(단위:픽셀)로 생성합니다."); ?>
|
||||
<label for="de_simg_width"><span class="sound_only">이미지(소) </span>폭</label>
|
||||
<input type="text" name="de_simg_width" value="<?=$default['de_simg_width']?>" id="de_simg_width" class="frm_input" size="5"> 픽셀
|
||||
<input type="text" name="de_simg_width" value="<?php echo $default['de_simg_width']; ?>" id="de_simg_width" class="frm_input" size="5"> 픽셀
|
||||
/
|
||||
<label for="de_simg_height"><span class="sound_only">이미지(소) </span>높이</label>
|
||||
<input type="text" name="de_simg_height" value="<?=$default['de_simg_height']?>" id="de_simg_height" class="frm_input" size="5"> 픽셀
|
||||
<input type="text" name="de_simg_height" value="<?php echo $default['de_simg_height']; ?>" id="de_simg_height" class="frm_input" size="5"> 픽셀
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">이미지(중)</th>
|
||||
<td>
|
||||
<?=help("상품관리의 상품입력에서 이미지(대) 를 기준 자동생성해 줄때 이미지(중)의 폭과 높이를 설정한 값(단위:픽셀)로 생성합니다.");?>
|
||||
<?php echo help("상품관리의 상품입력에서 이미지(대) 를 기준 자동생성해 줄때 이미지(중)의 폭과 높이를 설정한 값(단위:픽셀)로 생성합니다."); ?>
|
||||
<label for="de_mimg_width"><span class="sound_only">이미지(중) </span>폭</label>
|
||||
<input type="text" name="de_mimg_width" value="<?=$default['de_mimg_width']?>" id="de_mimg_width" class="frm_input" size="5"> 픽셀
|
||||
<input type="text" name="de_mimg_width" value="<?php echo $default['de_mimg_width']; ?>" id="de_mimg_width" class="frm_input" size="5"> 픽셀
|
||||
/
|
||||
<label for="de_mimg_height"><span class="sound_only">이미지(중) </span>높이</label>
|
||||
<input type="text" name="de_mimg_height" value="<?=$default['de_mimg_height']?>" id="de_mimg_height" class="frm_input" size="5"> 픽셀
|
||||
<input type="text" name="de_mimg_height" value="<?php echo $default['de_mimg_height']; ?>" id="de_mimg_height" class="frm_input" size="5"> 픽셀
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">로고이미지</th>
|
||||
<td>
|
||||
<?=help("쇼핑몰 로고를 직접 올릴 수 있습니다. 이미지 파일만 가능합니다.");?>
|
||||
<?php echo help("쇼핑몰 로고를 직접 올릴 수 있습니다. 이미지 파일만 가능합니다."); ?>
|
||||
<input type="file" name="logo_img" id="logo_img">
|
||||
<?
|
||||
<?php
|
||||
$logo_img = G4_DATA_PATH."/common/logo_img";
|
||||
if (file_exists($logo_img))
|
||||
{
|
||||
@ -656,21 +656,21 @@ $pg_anchor = '<ul class="anchor">
|
||||
<input type="checkbox" name="logo_img_del" value="1" id="logo_img_del">
|
||||
<span class="scf_img_logoimg"></span>
|
||||
<div id="logoimg" class="banner_or_img">
|
||||
<img src="<?=G4_DATA_URL?>/common/logo_img" alt="">
|
||||
<img src="<?php echo G4_DATA_URL; ?>/common/logo_img" alt="">
|
||||
<button type="button" class="sit_wimg_close">닫기</button>
|
||||
</div>
|
||||
<script>
|
||||
$('<button type="button" id="cf_logoimg_view" class="btn_frmline scf_img_view">로고이미지 확인</button>').appendTo('.scf_img_logoimg');
|
||||
</script>
|
||||
<? } ?>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">메인이미지</th>
|
||||
<td>
|
||||
<?=help("쇼핑몰 메인이미지를 직접 올릴 수 있습니다. 이미지 파일만 가능합니다.");?>
|
||||
<?php echo help("쇼핑몰 메인이미지를 직접 올릴 수 있습니다. 이미지 파일만 가능합니다."); ?>
|
||||
<input type="file" name="main_img">
|
||||
<?
|
||||
<?php
|
||||
$main_img = G4_DATA_PATH."/common/main_img";
|
||||
if (file_exists($main_img))
|
||||
{
|
||||
@ -680,87 +680,87 @@ $pg_anchor = '<ul class="anchor">
|
||||
<input type="checkbox" name="main_img_del" value="1" id="main_img_del">
|
||||
<span class="scf_img_mainimg"></span>
|
||||
<div id="mainimg" class="banner_or_img">
|
||||
<img src="<?=G4_DATA_URL?>/common/main_img" alt="">
|
||||
<img src="<?php echo G4_DATA_URL; ?>/common/main_img" alt="">
|
||||
<button type="button" class="sit_wimg_close">닫기</button>
|
||||
</div>
|
||||
<script>
|
||||
$('<button type="button" id="cf_mainimg_view" class="btn_frmline scf_img_view">메인이미지 확인</button>').appendTo('.scf_img_mainimg');
|
||||
</script>
|
||||
<? } ?>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_item_ps_use">사용후기</label></th>
|
||||
<td>
|
||||
<?=help("사용후기가 올라오면, 즉시 출력 혹은 관리자 승인 후 출력 여부를 설정합니다.", 50);?>
|
||||
<?php echo help("사용후기가 올라오면, 즉시 출력 혹은 관리자 승인 후 출력 여부를 설정합니다.", 50); ?>
|
||||
<select name="de_item_ps_use" id="de_item_ps_use">
|
||||
<option value="0" <?=get_selected($default['de_item_ps_use'], 0)?>>즉시 출력</option>
|
||||
<option value="1" <?=get_selected($default['de_item_ps_use'], 1)?>>관리자 승인 후 출력</option>
|
||||
<option value="0" <?php echo get_selected($default['de_item_ps_use'], 0); ?>>즉시 출력</option>
|
||||
<option value="1" <?php echo get_selected($default['de_item_ps_use'], 1); ?>>관리자 승인 후 출력</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<?/*?>
|
||||
<?php/*?>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_scroll_banner_use">스크롤배너 사용</label></th>
|
||||
<td>
|
||||
<?=help("'예'로 설정한 경우 쇼핑몰 우측에 스크롤배너가 출력됩니다.", 50);?>
|
||||
<?php echo help("'예'로 설정한 경우 쇼핑몰 우측에 스크롤배너가 출력됩니다.", 50); ?>
|
||||
<select name="de_scroll_banner_use" id="de_scroll_banner_use">
|
||||
<option value="0" <?=get_selected($default['de_scroll_banner_use'], 0)?>>사용안함</option>
|
||||
<option value="1" <?=get_selected($default['de_scroll_banner_use'], 1)?>>사용</option>
|
||||
<option value="0" <?php echo get_selected($default['de_scroll_banner_use'], 0); ?>>사용안함</option>
|
||||
<option value="1" <?php echo get_selected($default['de_scroll_banner_use'], 1); ?>>사용</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<?*/?>
|
||||
<?php*/?>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_level_sell">상품구입 권한</label></th>
|
||||
<td>
|
||||
<?=help("권한을 1로 설정하면 누구나 구입할 수 있습니다. 특정회원만 구입할 수 있도록 하려면 해당 권한으로 설정하십시오.");?>
|
||||
<?=get_member_level_select('de_level_sell', 1, 10, $default['de_level_sell']) ?>
|
||||
<?php echo help("권한을 1로 설정하면 누구나 구입할 수 있습니다. 특정회원만 구입할 수 있도록 하려면 해당 권한으로 설정하십시오."); ?>
|
||||
<?php echo get_member_level_select('de_level_sell', 1, 10, $default['de_level_sell']); ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_code_dup_use">코드 중복검사</label></th>
|
||||
<td>
|
||||
<?=help("분류, 상품 등을 추가할 때 자동으로 코드 중복검사를 하려면 체크하십시오.");?>
|
||||
<input type="checkbox" name="de_code_dup_use" value="1" id="de_code_dup_use"<?=$default['de_code_dup_use']?' checked':'';?>> 사용
|
||||
<?php echo help("분류, 상품 등을 추가할 때 자동으로 코드 중복검사를 하려면 체크하십시오."); ?>
|
||||
<input type="checkbox" name="de_code_dup_use" value="1" id="de_code_dup_use"<?php echo $default['de_code_dup_use']?' checked':''; ?>> 사용
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_different_msg">장바구니 메세지</label></th>
|
||||
<td>
|
||||
<?=help("장바구니에 담긴 상품의 가격 수정은 불가능합니다. 따라서 비회원가격과 회원가격이 다른 경우, 장바구니에 담기 전에 미리 메세지를 출력하여 로그인하도록 안내합니다.", -150);?>
|
||||
<input type="checkbox" name="de_different_msg" value="1" id="de_different_msg"<?=$default['de_different_msg']?'checked':'';?>>
|
||||
<?php echo help("장바구니에 담긴 상품의 가격 수정은 불가능합니다. 따라서 비회원가격과 회원가격이 다른 경우, 장바구니에 담기 전에 미리 메세지를 출력하여 로그인하도록 안내합니다.", -150); ?>
|
||||
<input type="checkbox" name="de_different_msg" value="1" id="de_different_msg"<?php echo $default['de_different_msg']?'checked':''; ?>>
|
||||
안내메세지 출력 사용
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">비회원에 대한<br/>개인정보수집 내용</th>
|
||||
<td><?=editor_html('de_guest_privacy', $default['de_guest_privacy']);?></td>
|
||||
<td><?php echo editor_html('de_guest_privacy', $default['de_guest_privacy']); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">MYSQL USER</th>
|
||||
<td><?=G4_MYSQL_USER?></td>
|
||||
<td><?php echo G4_MYSQL_USER; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">MYSQL DB</th>
|
||||
<td><?=G4_MYSQL_DB?></td>
|
||||
<td><?php echo G4_MYSQL_DB; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">서버 IP</th>
|
||||
<td><?=($_SERVER['SERVER_ADDR']?$_SERVER['SERVER_ADDR']:$_SERVER['LOCAL_ADDR']);?></td>
|
||||
<td><?php echo ($_SERVER['SERVER_ADDR']?$_SERVER['SERVER_ADDR']:$_SERVER['LOCAL_ADDR']); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_register">프로그램 등록번호</label></th>
|
||||
<td>
|
||||
<?=help("정품에 한해 발급해 드립니다. 등록번호가 없거나 틀리면, 주문서를 확인할 수 없습니다.\n등록번호는 서버 IP, MYSQL USER, DB 를 알려주셔야 발급이 가능합니다.", -180, -160);?>
|
||||
<input type="text" name="de_register" value="<?=$default['de_register']?>" id="de_register" class="frm_input required" required size="30">
|
||||
<?php echo help("정품에 한해 발급해 드립니다. 등록번호가 없거나 틀리면, 주문서를 확인할 수 없습니다.\n등록번호는 서버 IP, MYSQL USER, DB 를 알려주셔야 발급이 가능합니다.", -180, -160); ?>
|
||||
<input type="text" name="de_register" value="<?php echo $default['de_register']; ?>" id="de_register" class="frm_input required" required size="30">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<? if (file_exists($logo_img) || file_exists($main_img)) { ?>
|
||||
<?php if (file_exists($logo_img) || file_exists($main_img)) { ?>
|
||||
<script>
|
||||
$(".banner_or_img").addClass("scf_img");
|
||||
$(function() {
|
||||
@ -797,7 +797,7 @@ $(function() {
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<? } ?>
|
||||
<?php } ?>
|
||||
|
||||
<script>
|
||||
function byte_check(el_cont, el_byte)
|
||||
@ -856,7 +856,7 @@ function byte_check(el_cont, el_byte)
|
||||
|
||||
<section id="anc_scf_sms" class="cbox" >
|
||||
<h2>SMS설정</h2>
|
||||
<?=$pg_anchor?>
|
||||
<?php echo $pg_anchor; ?>
|
||||
|
||||
<table class="frm_tbl">
|
||||
<colgroup>
|
||||
@ -867,39 +867,39 @@ function byte_check(el_cont, el_byte)
|
||||
<tr>
|
||||
<th scope="row"><label for="de_sms_use">SMS 사용</label></th>
|
||||
<td>
|
||||
<?=help("SMS 서비스 회사를 선택하십시오. 서비스 회사를 선택하지 않으면, SMS 발송 기능이 동작하지 않습니다.\n아이코드는 무료 문자메세지 발송 테스트 환경을 지원합니다.");?>
|
||||
<?php echo help("SMS 서비스 회사를 선택하십시오. 서비스 회사를 선택하지 않으면, SMS 발송 기능이 동작하지 않습니다.\n아이코드는 무료 문자메세지 발송 테스트 환경을 지원합니다."); ?>
|
||||
<select id="de_sms_use" name="de_sms_use">
|
||||
<option value="" <?=get_selected($default['de_sms_use'], '')?>>사용안함</option>
|
||||
<option value="icode" <?=get_selected($default['de_sms_use'], 'icode')?>>아이코드</option>
|
||||
<option value="" <?php echo get_selected($default['de_sms_use'], ''); ?>>사용안함</option>
|
||||
<option value="icode" <?php echo get_selected($default['de_sms_use'], 'icode'); ?>>아이코드</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_sms_hp">관리자 핸드폰번호</label></th>
|
||||
<td>
|
||||
<?=help("주문서작성시 쇼핑몰관리자가 문자메세지를 받아볼 번호를 숫자만으로 입력하세요. 예) 0101234567");?>
|
||||
<input type="text" name="de_sms_hp" value="<?=$default['de_sms_hp']?>" id="de_sms_hp" class="frm_input" size="20">
|
||||
<?php echo help("주문서작성시 쇼핑몰관리자가 문자메세지를 받아볼 번호를 숫자만으로 입력하세요. 예) 0101234567"); ?>
|
||||
<input type="text" name="de_sms_hp" value="<?php echo $default['de_sms_hp']; ?>" id="de_sms_hp" class="frm_input" size="20">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_icode_id">아이코드 회원아이디</label></th>
|
||||
<td>
|
||||
<?=help("아이코드에서 사용하시는 회원아이디를 입력합니다.");?>
|
||||
<input type="text" name="de_icode_id" value="<?=$default['de_icode_id']?>" id="de_icode_id" class="frm_input" size="20">
|
||||
<?php echo help("아이코드에서 사용하시는 회원아이디를 입력합니다."); ?>
|
||||
<input type="text" name="de_icode_id" value="<?php echo $default['de_icode_id']; ?>" id="de_icode_id" class="frm_input" size="20">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row"><label for="de_icode_pw">아이코드 패스워드</label></th>
|
||||
<td>
|
||||
<?=help("아이코드에서 사용하시는 패스워드를 입력합니다.");?>
|
||||
<input type="password" name="de_icode_pw" value="<?=$default['de_icode_pw']?>" class="frm_input" id="de_icode_pw">
|
||||
<?php echo help("아이코드에서 사용하시는 패스워드를 입력합니다."); ?>
|
||||
<input type="password" name="de_icode_pw" value="<?php echo $default['de_icode_pw']; ?>" class="frm_input" id="de_icode_pw">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">요금제</th>
|
||||
<td>
|
||||
<input type="hidden" name="de_icode_server_ip" value="<?=$default['de_icode_server_ip']?>">
|
||||
<?
|
||||
<input type="hidden" name="de_icode_server_ip" value="<?php echo $default['de_icode_server_ip']; ?>">
|
||||
<?php
|
||||
if ($userinfo['payment'] == 'A') {
|
||||
echo '충전제';
|
||||
echo '<input type="hidden" name="de_icode_server_port" value="7295">';
|
||||
@ -916,25 +916,25 @@ function byte_check(el_cont, el_byte)
|
||||
<tr>
|
||||
<th scope="row">아이코드 SMS 신청<br>회원가입</th>
|
||||
<td>
|
||||
<?=help("아래 링크에서 회원가입 하시면 문자 건당 16원에 제공 받을 수 있습니다.");?>
|
||||
<?php echo help("아래 링크에서 회원가입 하시면 문자 건당 16원에 제공 받을 수 있습니다."); ?>
|
||||
<a href="http://icodekorea.com/res/join_company_fix_a.php?sellid=sir2" target="_blank" class="btn_frmline">아이코드 회원가입</a>
|
||||
</td>
|
||||
</tr>
|
||||
<? if ($userinfo['payment'] == 'A') { ?>
|
||||
<?php if ($userinfo['payment'] == 'A') { ?>
|
||||
<tr>
|
||||
<th scope="row">충전 잔액</th>
|
||||
<td colspan="3">
|
||||
<?=number_format($userinfo['coin'])?> 원.
|
||||
<a href="http://www.icodekorea.com/smsbiz/credit_card_amt.php?icode_id=<?=$default['de_icode_id']?>&icode_passwd=<?=$default['de_icode_pw']?>" target="_blank" class="btn_frmline" onclick="window.open(this.href,'icode_payment', 'scrollbars=1,resizable=1'); return false;">충전하기</a>
|
||||
<?php echo number_format($userinfo['coin']); ?> 원.
|
||||
<a href="http://www.icodekorea.com/smsbiz/credit_card_amt.php?icode_id=<?php echo $default['de_icode_id']; ?>&icode_passwd=<?php echo $default['de_icode_pw']; ?>" target="_blank" class="btn_frmline" onclick="window.open(this.href,'icode_payment', 'scrollbars=1,resizable=1'); return false;">충전하기</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">건수별 금액</th>
|
||||
<td colspan="3">
|
||||
<?=number_format($userinfo['gpay'])?> 원.
|
||||
<?php echo number_format($userinfo['gpay']); ?> 원.
|
||||
</td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
<?php } ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -951,27 +951,27 @@ function byte_check(el_cont, el_byte)
|
||||
<dd>{이름} {택배회사} {운송장번호} {주문번호} {회사명}</dd>
|
||||
</dl>
|
||||
|
||||
<p><?=help('주의! 80 bytes 까지만 전송됩니다. (영문 한글자 : 1byte , 한글 한글자 : 2bytes , 특수문자의 경우 1 또는 2 bytes 임)')?></p>
|
||||
<p><?php echo help('주의! 80 bytes 까지만 전송됩니다. (영문 한글자 : 1byte , 한글 한글자 : 2bytes , 특수문자의 경우 1 또는 2 bytes 임)'); ?></p>
|
||||
|
||||
<div id="scf_sms">
|
||||
<?
|
||||
<?php
|
||||
$scf_sms_title = array (1=>"회원가입시 고객님께 발송", "주문시 고객님께 발송", "주문시 관리자에게 발송", "입금확인시 고객님께 발송", "상품배송시 고객님께 발송");
|
||||
for ($i=1; $i<=5; $i++) {
|
||||
?>
|
||||
<section class="scf_sms_box">
|
||||
<h4><?=$scf_sms_title[$i]?></h4>
|
||||
<label for="de_sms_use<?=$i?>"><span class="sound_only"><?=$scf_sms_title?></span>사용</label>
|
||||
<input type="checkbox" name="de_sms_use<?=$i?>" value="1" id="de_sms_use<?=$i?>" <?=($default["de_sms_use".$i] ? " checked" : "")?>>
|
||||
<h4><?php echo $scf_sms_title[$i]?></h4>
|
||||
<label for="de_sms_use<?php echo $i; ?>"><span class="sound_only"><?php echo $scf_sms_title; ?></span>사용</label>
|
||||
<input type="checkbox" name="de_sms_use<?php echo $i; ?>" value="1" id="de_sms_use<?php echo $i; ?>" <?php echo ($default["de_sms_use".$i] ? " checked" : ""); ?>>
|
||||
<div class="scf_sms_img">
|
||||
<textarea id="de_sms_cont<?=$i?>" name="de_sms_cont<?=$i?>" ONKEYUP="byte_check('de_sms_cont<?=$i?>', 'byte<?=$i?>');"><?=$default['de_sms_cont'.$i]?></textarea>
|
||||
<textarea id="de_sms_cont<?php echo $i; ?>" name="de_sms_cont<?php echo $i; ?>" ONKEYUP="byte_check('de_sms_cont<?php echo $i; ?>', 'byte<?php echo $i; ?>');"><?php echo $default['de_sms_cont'.$i]; ?></textarea>
|
||||
</div>
|
||||
<span id="byte<?=$i?>" class="scf_sms_cnt">0 / 80 바이트</span>
|
||||
<span id="byte<?php echo $i; ?>" class="scf_sms_cnt">0 / 80 바이트</span>
|
||||
</section>
|
||||
|
||||
<script>
|
||||
byte_check('de_sms_cont<?=$i?>', 'byte<?=$i?>');
|
||||
byte_check('de_sms_cont<?php echo $i; ?>', 'byte<?php echo $i; ?>');
|
||||
</script>
|
||||
<? } ?>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@ -986,9 +986,9 @@ function byte_check(el_cont, el_byte)
|
||||
<script>
|
||||
function fconfig_check(f)
|
||||
{
|
||||
<?=get_editor_js('de_baesong_content');?>
|
||||
<?=get_editor_js('de_change_content');?>
|
||||
<?=get_editor_js('de_guest_privacy');?>
|
||||
<?php echo get_editor_js('de_baesong_content'); ?>
|
||||
<?php echo get_editor_js('de_change_content'); ?>
|
||||
<?php echo get_editor_js('de_guest_privacy'); ?>
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -1009,6 +1009,6 @@ $(function() {
|
||||
});
|
||||
</script>
|
||||
|
||||
<?
|
||||
<?php
|
||||
include_once (G4_ADMIN_PATH.'/admin.tail.php');
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user