96 lines
2.4 KiB
PHP
96 lines
2.4 KiB
PHP
<?php
|
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|
|
|
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
|
|
add_stylesheet('<link rel="stylesheet" href="'.G5_MSHOP_SKIN_URL.'/style.css">', 0);
|
|
?>
|
|
|
|
<script src="<?php echo G5_JS_URL ?>/jquery.fancylist.js"></script>
|
|
<?php if($config['cf_kakao_js_apikey']) { ?>
|
|
<script src="https://developers.kakao.com/sdk/js/kakao.min.js" async></script>
|
|
<script>
|
|
var kakao_javascript_apikey = "<?php echo $config['cf_kakao_js_apikey']; ?>";
|
|
</script>
|
|
<script src="<?php echo G5_JS_URL; ?>/kakaolink.js?ver=<?php echo G5_JS_VER; ?>"></script>
|
|
<?php } ?>
|
|
|
|
<!-- 상품진열 10 시작 { -->
|
|
<?php
|
|
$li_width = intval(100 / $this->list_mod);
|
|
$li_width_style = ' style="width:'.$li_width.'%;"';
|
|
|
|
for ($i=0; $row=sql_fetch_array($result); $i++) {
|
|
|
|
$item_link_href = shop_item_url($row['it_id']);
|
|
|
|
if ($i == 0) {
|
|
if ($this->css) {
|
|
echo "<ul id=\"sct_wrap\" class=\"{$this->css}\">\n";
|
|
} else {
|
|
echo "<ul id=\"sct_wrap\" class=\"srl_10\">\n";
|
|
}
|
|
}
|
|
|
|
if($i % $this->list_mod == 0)
|
|
$li_clear = ' sct_clear';
|
|
else
|
|
$li_clear = '';
|
|
|
|
echo "<li class=\"sct_li{$li_clear}\"$li_width_style><div class=\"li_wr\">\n";
|
|
|
|
if ($this->href) {
|
|
echo "<div class=\"sct_img\"><a href=\"{$item_link_href}\">\n";
|
|
}
|
|
|
|
if ($this->view_it_img) {
|
|
echo get_it_image($row['it_id'], $this->img_width, $this->img_height, '', '', stripslashes($row['it_name']))."\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "</a></div>\n";
|
|
}
|
|
|
|
|
|
if ($this->view_it_id) {
|
|
echo "<div class=\"sct_id\"><".stripslashes($row['it_id'])."></div>\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "<a href=\"{$item_link_href}\" class=\"sct_txt\">\n";
|
|
}
|
|
|
|
if ($this->view_it_name) {
|
|
echo stripslashes($row['it_name'])."\n";
|
|
}
|
|
|
|
if ($this->href) {
|
|
echo "</a>\n";
|
|
}
|
|
|
|
if ($this->view_it_price) {
|
|
echo "<div class=\"sct_cost\">\n";
|
|
echo display_price(get_price($row), $row['it_tel_inq'])."\n";
|
|
echo "</div>\n";
|
|
}
|
|
|
|
echo "</div></li>\n";
|
|
}
|
|
|
|
if ($i > 0) echo "</ul>\n";
|
|
|
|
if($i == 0) echo "<p class=\"sct_noitem\">등록된 관련상품이 없습니다.</p>\n";
|
|
?>
|
|
<!-- } 상품진열 10 끝 -->
|
|
|
|
<script>
|
|
$('.srl_10').bxSlider({
|
|
slideWidth: 200,
|
|
minSlides: 2,
|
|
maxSlides: 8,
|
|
slideMargin: 5,
|
|
controls: false,
|
|
infiniteLoop: false
|
|
});
|
|
</script>
|
|
|