114 lines
3.9 KiB
PHP
114 lines
3.9 KiB
PHP
<?php
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
?>
|
|
|
|
<link rel="stylesheet" href="<?php echo G5_MSHOP_SKIN_URL; ?>/style.css">
|
|
<script src="<?php echo G5_JS_URL; ?>/iteminfoimageresize.js"></script>
|
|
|
|
<!-- 상품 사용후기 시작 { -->
|
|
<section id="sit_use_list">
|
|
<h3>등록된 사용후기</h3>
|
|
|
|
<?php
|
|
$thumbnail_width = 500;
|
|
|
|
for ($i=0; $row=sql_fetch_array($result); $i++)
|
|
{
|
|
$is_num = $total_count - ($page - 1) * $rows - $i;
|
|
$is_star = get_star($row['is_score']);
|
|
$is_name = get_text($row['is_name']);
|
|
$is_subject = conv_subject($row['is_subject'],50,"…");
|
|
//$is_content = ($row['wr_content']);
|
|
$is_content = get_view_thumbnail($row['is_content'], $thumbnail_width);
|
|
$is_time = substr($row['is_time'], 2, 8);
|
|
$is_href = './itemuselist.php?bo_table=itemuse&wr_id='.$row['wr_id'];
|
|
|
|
$hash = md5($row['is_id'].$row['is_time'].$row['is_ip']);
|
|
|
|
if ($i == 0) echo '<ol id="sit_use_ol">';
|
|
?>
|
|
|
|
<li class="sit_use_li">
|
|
<button type="button" class="sit_use_li_title"><b><?php echo $is_num; ?>.</b> <?php echo $is_subject; ?></button>
|
|
<dl class="sit_use_dl">
|
|
<dt>작성자</dt>
|
|
<dd><?php echo $is_name; ?></dd>
|
|
<dt>작성일</dt>
|
|
<dd><?php echo $is_time; ?></dd>
|
|
<dt>선호도<dt>
|
|
<dd class="sit_use_star"><img src="<?php echo G5_SHOP_URL; ?>/img/s_star<?php echo $is_star; ?>.png" alt="별<?php echo $is_star; ?>개"></dd>
|
|
</dl>
|
|
|
|
<div id="sit_use_con_<?php echo $i; ?>" class="sit_use_con">
|
|
<div class="sit_use_p">
|
|
<?php echo $is_content; // 사용후기 내용 ?>
|
|
</div>
|
|
|
|
<?php if ($is_admin || $row['mb_id'] == $member['mb_id']) { ?>
|
|
<div class="sit_use_cmd">
|
|
<a href="<?php echo $itemuse_form."&is_id={$row['is_id']}&w=u"; ?>" class="itemuse_form btn01" onclick="return false;">수정</a>
|
|
<a href="<?php echo $itemuse_formupdate."&is_id={$row['is_id']}&w=d&hash={$hash}"; ?>" class="itemuse_delete btn01">삭제</a>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</li>
|
|
|
|
<?php }
|
|
|
|
if ($i >= 0) echo '</ol>';
|
|
|
|
if (!$i) echo '<p class="sit_empty">사용후기가 없습니다.</p>';
|
|
?>
|
|
</section>
|
|
|
|
<?php
|
|
echo itemuse_page($config['cf_mobile_pages'], $page, $total_page, "./itemuse.php?it_id=$it_id&page=", "");
|
|
?>
|
|
|
|
<div id="sit_use_wbtn">
|
|
<a href="<?php echo $itemuse_form; ?>" class="btn02 itemuse_form" onclick="return false;">사용후기 쓰기<span class="sound_only"> 새 창</span></a>
|
|
<a href="<?php echo $itemuse_list; ?>" id="itemuse_list" class="btn01">더보기</a>
|
|
</div>
|
|
|
|
<script>
|
|
$(function(){
|
|
$(".itemuse_form").click(function(){
|
|
window.open(this.href, "itemuse_form", "width=800,height=500,scrollbars=1");
|
|
return false;
|
|
});
|
|
|
|
$(".itemuse_delete").click(function(){
|
|
if (confirm("정말 삭제 하시겠습니까?\n\n삭제후에는 되돌릴수 없습니다.")) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
|
|
$(".sit_use_li_title").click(function(){
|
|
var $con = $(this).siblings(".sit_use_con");
|
|
if($con.is(":visible")) {
|
|
$con.slideUp();
|
|
} else {
|
|
$(".sit_use_con:visible").hide();
|
|
$con.slideDown(
|
|
function() {
|
|
// 이미지 리사이즈
|
|
$con.iteminfoimageresize();
|
|
}
|
|
);
|
|
}
|
|
});
|
|
|
|
$(".pg_page").click(function(){
|
|
$("#itemuse").load($(this).attr("href"));
|
|
return false;
|
|
});
|
|
|
|
$("a#itemuse_list").on("click", function() {
|
|
opener.location.href = this.href;
|
|
self.close();
|
|
});
|
|
});
|
|
</script>
|
|
<!-- } 상품 사용후기 끝 -->
|