Merge branch 'master' of github.com:gnuboard/yc4s
This commit is contained in:
@ -50,6 +50,18 @@ $qstr = 'page='.$page.'&sort1='.$sort1.'&sort2='.$sort2;
|
|||||||
<th scope="row">이름</th>
|
<th scope="row">이름</th>
|
||||||
<td><?php echo $name; ?></td>
|
<td><?php echo $name; ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<?php if($iq['iq_email']) { ?>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">이메일</th>
|
||||||
|
<td><?php echo get_text($iq['iq_email']); ?></td>
|
||||||
|
</tr>
|
||||||
|
<?php } ?>
|
||||||
|
<?php if($iq['iq_hp']) { ?>
|
||||||
|
<tr>
|
||||||
|
<th scope="row">휴대폰</th>
|
||||||
|
<td><?php echo get_text($iq['iq_hp']); ?></td>
|
||||||
|
</tr>
|
||||||
|
<?php } ?>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="iq_subject">제목</label></th>
|
<th scope="row"><label for="iq_subject">제목</label></th>
|
||||||
<td><input type="text" name="iq_subject" value="<?php echo conv_subject($iq['iq_subject'],120); ?>" id="iq_subject" required class="frm_input required" size="95"></td>
|
<td><input type="text" name="iq_subject" value="<?php echo conv_subject($iq['iq_subject'],120); ?>" id="iq_subject" required class="frm_input required" size="95"></td>
|
||||||
|
|||||||
@ -20,6 +20,39 @@ if ($w == "u")
|
|||||||
where iq_id = '$iq_id' ";
|
where iq_id = '$iq_id' ";
|
||||||
sql_query($sql);
|
sql_query($sql);
|
||||||
|
|
||||||
|
if(trim($iq_answer)) {
|
||||||
|
$sql = " select a.iq_email, a.iq_hp, b.it_name
|
||||||
|
from {$g5['g5_shop_item_qa_table']} a left join {$g5['g5_shop_item_table']} b on ( a.it_id = b.it_id )
|
||||||
|
where a.iq_id = '$iq_id' ";
|
||||||
|
$row = sql_fetch($sql);
|
||||||
|
|
||||||
|
// SMS 알림
|
||||||
|
if($config['cf_sms_use'] == 'icode' && $row['iq_hp']) {
|
||||||
|
include_once(G5_LIB_PATH.'/icode.sms.lib.php');
|
||||||
|
|
||||||
|
$sms_content = get_text($row['it_name']).' 상품문의에 답변이 등록되었습니다.';
|
||||||
|
$send_number = preg_replace('/[^0-9]/', '', $default['de_admin_company_tel']);
|
||||||
|
$recv_number = preg_replace('/[^0-9]/', '', $row['iq_hp']);
|
||||||
|
|
||||||
|
if($recv_number) {
|
||||||
|
$SMS = new SMS; // SMS 연결
|
||||||
|
$SMS->SMS_con($config['cf_icode_server_ip'], $config['cf_icode_id'], $config['cf_icode_pw'], $config['cf_icode_server_port']);
|
||||||
|
$SMS->Add($recv_number, $send_number, $config['cf_icode_id'], iconv("utf-8", "euc-kr", stripslashes($sms_content)), "");
|
||||||
|
$SMS->Send();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 답변 이메일전송
|
||||||
|
if(trim($row['iq_email'])) {
|
||||||
|
include_once(G5_LIB_PATH.'/mailer.lib.php');
|
||||||
|
|
||||||
|
$subject = $config['cf_title'].' '.$row['it_name'].' 상품문의 답변 알림 메일';
|
||||||
|
$content = conv_content($iq_answer, 1);
|
||||||
|
|
||||||
|
mailer($config['cf_title'], $admin['mb_email'], $row['iq_email'], $subject, $content, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
goto_url("./itemqaform.php?w=$w&iq_id=$iq_id&$qstr");
|
goto_url("./itemqaform.php?w=$w&iq_id=$iq_id&$qstr");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|||||||
@ -724,4 +724,11 @@ if(!sql_query(" select iq_secret from {$g5['g5_shop_item_qa_table']} limit 1 ",
|
|||||||
sql_query(" ALTER TABLE `{$g5['g5_shop_item_qa_table']}`
|
sql_query(" ALTER TABLE `{$g5['g5_shop_item_qa_table']}`
|
||||||
ADD `iq_secret` tinyint(4) NOT NULL DEFAULT '0' AFTER `mb_id` ", true);
|
ADD `iq_secret` tinyint(4) NOT NULL DEFAULT '0' AFTER `mb_id` ", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 상품문의 이메일 휴대폰 필드 추가
|
||||||
|
if(!sql_query(" select iq_hp from {$g5['g5_shop_item_qa_table']} limit 1 ", false)) {
|
||||||
|
sql_query(" ALTER TABLE `{$g5['g5_shop_item_qa_table']}`
|
||||||
|
ADD `iq_email` varchar(255) NOT NULL DEFAULT '' AFTER `iq_name`,
|
||||||
|
ADD `iq_hp` varchar(255) NOT NULL DEFAULT '' AFTER `iq_email` ", true);
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -543,6 +543,8 @@ CREATE TABLE IF NOT EXISTS `g5_shop_item_qa` (
|
|||||||
`mb_id` varchar(255) NOT NULL DEFAULT '',
|
`mb_id` varchar(255) NOT NULL DEFAULT '',
|
||||||
`iq_secret` tinyint(4) NOT NULL DEFAULT '0',
|
`iq_secret` tinyint(4) NOT NULL DEFAULT '0',
|
||||||
`iq_name` varchar(255) NOT NULL DEFAULT '',
|
`iq_name` varchar(255) NOT NULL DEFAULT '',
|
||||||
|
`iq_email` varchar(255) NOT NULL DEFAULT '',
|
||||||
|
`iq_hp` varchar(255) NOT NULL DEFAULT '',
|
||||||
`iq_password` varchar(255) NOT NULL DEFAULT '',
|
`iq_password` varchar(255) NOT NULL DEFAULT '',
|
||||||
`iq_subject` varchar(255) NOT NULL DEFAULT '',
|
`iq_subject` varchar(255) NOT NULL DEFAULT '',
|
||||||
`iq_question` text NOT NULL,
|
`iq_question` text NOT NULL,
|
||||||
|
|||||||
@ -12,6 +12,11 @@ $iq_id = escape_trim($_REQUEST['iq_id']);
|
|||||||
|
|
||||||
$chk_secret = '';
|
$chk_secret = '';
|
||||||
|
|
||||||
|
if($w == '') {
|
||||||
|
$qa['iq_email'] = $member['mb_email'];
|
||||||
|
$qa['iq_hp'] = $member['mb_hp'];
|
||||||
|
}
|
||||||
|
|
||||||
if ($w == "u")
|
if ($w == "u")
|
||||||
{
|
{
|
||||||
$qa = sql_fetch(" select * from {$g5['g5_shop_item_qa_table']} where iq_id = '$iq_id' ");
|
$qa = sql_fetch(" select * from {$g5['g5_shop_item_qa_table']} where iq_id = '$iq_id' ");
|
||||||
|
|||||||
@ -27,6 +27,14 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
<label for="iq_secret">비밀글</label>
|
<label for="iq_secret">비밀글</label>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><label for="iq_email">이메일</label></th>
|
||||||
|
<td><input type="text" name="iq_email" value="<?php echo $qa['iq_email']; ?>" class="frm_input" size="30"> 이메일을 입력하시면 답변 등록 시 답변이 이메일로 전송됩니다.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><label for="iq_hp">휴대폰</label></th>
|
||||||
|
<td><input type="text" name="iq_hp" value="<?php echo $qa['iq_hp']; ?>" class="frm_input" size="20"> 휴대폰번호를 입력하시면 답변 등록 시 답변등록 알림이 SMS로 전송됩니다.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="iq_subject">제목</label></th>
|
<th scope="row"><label for="iq_subject">제목</label></th>
|
||||||
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
|
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
|
||||||
@ -41,6 +49,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
|
|
||||||
<div class="win_btn">
|
<div class="win_btn">
|
||||||
<input type="submit" value="작성완료" class="btn_submit">
|
<input type="submit" value="작성완료" class="btn_submit">
|
||||||
|
<button type="button" onclick="self.close();">닫기</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -18,6 +18,11 @@ $iq_id = escape_trim($_REQUEST['iq_id']);
|
|||||||
|
|
||||||
$chk_secret = '';
|
$chk_secret = '';
|
||||||
|
|
||||||
|
if($w == '') {
|
||||||
|
$qa['iq_email'] = $member['mb_email'];
|
||||||
|
$qa['iq_hp'] = $member['mb_hp'];
|
||||||
|
}
|
||||||
|
|
||||||
if ($w == "u")
|
if ($w == "u")
|
||||||
{
|
{
|
||||||
$qa = sql_fetch(" select * from {$g5['g5_shop_item_qa_table']} where iq_id = '$iq_id' ");
|
$qa = sql_fetch(" select * from {$g5['g5_shop_item_qa_table']} where iq_id = '$iq_id' ");
|
||||||
|
|||||||
@ -28,6 +28,8 @@ if ($w == "")
|
|||||||
mb_id = '{$member['mb_id']}',
|
mb_id = '{$member['mb_id']}',
|
||||||
iq_secret = '$iq_secret',
|
iq_secret = '$iq_secret',
|
||||||
iq_name = '$iq_name',
|
iq_name = '$iq_name',
|
||||||
|
iq_email = '$iq_email',
|
||||||
|
iq_hp = '$iq_hp',
|
||||||
iq_password = '$iq_password',
|
iq_password = '$iq_password',
|
||||||
iq_subject = '$iq_subject',
|
iq_subject = '$iq_subject',
|
||||||
iq_question = '$iq_question',
|
iq_question = '$iq_question',
|
||||||
@ -49,6 +51,8 @@ else if ($w == "u")
|
|||||||
|
|
||||||
$sql = " update {$g5['g5_shop_item_qa_table']}
|
$sql = " update {$g5['g5_shop_item_qa_table']}
|
||||||
set iq_secret = '$iq_secret',
|
set iq_secret = '$iq_secret',
|
||||||
|
iq_email = '$iq_email',
|
||||||
|
iq_hp = '$iq_hp',
|
||||||
iq_subject = '$iq_subject',
|
iq_subject = '$iq_subject',
|
||||||
iq_question = '$iq_question'
|
iq_question = '$iq_question'
|
||||||
where iq_id = '$iq_id' ";
|
where iq_id = '$iq_id' ";
|
||||||
|
|||||||
@ -115,7 +115,7 @@ echo itemqa_page($config['cf_write_pages'], $page, $total_page, "./itemqa.php?it
|
|||||||
<script>
|
<script>
|
||||||
$(function(){
|
$(function(){
|
||||||
$(".itemqa_form").click(function(){
|
$(".itemqa_form").click(function(){
|
||||||
window.open(this.href, "itemqa_form", "width=800,height=600,scrollbars=1");
|
window.open(this.href, "itemqa_form", "width=800,height=660,scrollbars=1");
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -27,6 +27,14 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
<label for="iq_secret">비밀글</label>
|
<label for="iq_secret">비밀글</label>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><label for="iq_email">이메일</label></th>
|
||||||
|
<td><input type="text" name="iq_email" value="<?php echo $qa['iq_email']; ?>" class="frm_input" size="30"> 이메일을 입력하시면 답변 등록 시 답변이 이메일로 전송됩니다.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<th scope="row"><label for="iq_hp">휴대폰</label></th>
|
||||||
|
<td><input type="text" name="iq_hp" value="<?php echo $qa['iq_hp']; ?>" class="frm_input" size="20"> 휴대폰번호를 입력하시면 답변 등록 시 답변등록 알림이 SMS로 전송됩니다.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row"><label for="iq_subject">제목</label></th>
|
<th scope="row"><label for="iq_subject">제목</label></th>
|
||||||
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
|
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
|
||||||
@ -41,6 +49,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|||||||
|
|
||||||
<div class="win_btn">
|
<div class="win_btn">
|
||||||
<input type="submit" value="작성완료" class="btn_submit">
|
<input type="submit" value="작성완료" class="btn_submit">
|
||||||
|
<button type="button" onclick="self.close();">닫기</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user