[YC5] 영카트 4 와 영카트 5 의 변경된 함수 > 기술자료 | 해피정닷컴

[YC5] 영카트 4 와 영카트 5 의 변경된 함수 > 기술자료

본문 바로가기

사이트 내 전체검색

[YC5] 영카트 4 와 영카트 5 의 변경된 함수 > 기술자료

영카트 [YC5] 영카트 4 와 영카트 5 의 변경된 함수

페이지 정보


본문

영카트4에서 사용하던 함수가 영카트5에서 변경된 함수 ( lib / shop.lib.php ) 를 정리해 봅니다.
영카트4 쇼핑몰을 영카트5로 업그레이드 하는 경우, 부득이 기존의 함수가 혼재될 수 있습니다.
이때 영카트4에서만 사용되는 함수의 내용을 영카트5에 변형해서 추가하면 불가피한 오류를 줄일 수 있습니다.


1. 장바구니 건수 검사
// 영카트 4
function get_cart_count($on_uid)
{
    global $g4;

    $sql = " select count(ct_id) as cnt from $g4[yc4_cart_table] where on_uid = '$on_uid' ";
    $row = sql_fetch($sql);
    $cnt = (int)$row[cnt];
    return $cnt;
}

// 영카트 5.3
function get_cart_count($cart_id)
{
    global $g5, $default;

    $sql = " select count(ct_id) as cnt from {$g5['g5_shop_cart_table']} where od_id = '$cart_id' ";
    $row = sql_fetch($sql);
    $cnt = (int)$row['cnt'];
    return $cnt;
}


2. 상품 이미지를 얻는다
// 영카트 4
function get_it_image($img, $width=0, $height=0, $id="")

// 영카트 5.3
function get_it_image($it_id, $width, $height=0, $anchor=false, $img_id='', $img_alt='', $is_crop=false)


3. 금액 표시
// 영카트 4
function display_amount($amount, $tel_inq=false) 
{
    if ($tel_inq)
        $amount = "전화문의";
    else
        $amount = number_format($amount, 0) . "원";

    return $amount;
}

// 영카트 5.3
function display_price($price, $tel_inq=false)
{
    if ($tel_inq)
        $price = '전화문의';
    else
        $price = number_format($price, 0).'원';

    return $price;
}
function display_amount($price, $tel_inq=false)  // 해피정닷컴 추가
{
    if ($tel_inq)
        $price = "전화문의";
    else
        $price = number_format($amount, 0) . "원";

    return $price;
}


4. 금액표시 // $it : 상품 배열
// 영카트 4
function get_amount($it)
{
    global $member;

    if ($it['it_tel_inq']) return '전화문의';

    return (int)$amount;
}

// 영카트 5.3
function get_price($it)
{
    global $member;

    if ($it['it_tel_inq']) return '전화문의';

    return (int)$amount;
}
function get_amount($it) // 해피정닷컴 추가
{
    global $member;

    if ($it['it_tel_inq']) return '전화문의';

    if ($member['mb_level'] > 2) // 특별회원
        $price = $it['it_price3'];
    
    if ($member['mb_level'] == 2 || $amount == 0) // 회원가격
        $price = $it['it_price2'];

    if ($member[mb_level] == 1 || $amount == 0) // 비회원가격
        $price = $it['it_price'];

    return (int)$price;
}


5. 상품명과 건수를 반환
// 영카트 4
function get_goods($on_uid)

// 영카트 5.3
function get_goods($cart_id)
 

댓글목록

등록된 댓글이 없습니다.


Total 2,634건 22 페이지
  • RSS
기술자료 목록
2214
일반   10305  2018-06-04 17:17  
2213
그누보드   8787  2018-05-28 13:20 ~ 2018-05-28 21:58  
2212
그누보드   7535  2018-05-28 12:22  
2211
그누보드   8475  2018-05-25 14:04 ~ 2018-05-25 14:05  
2210
일반   9950  2018-05-25 02:26 ~ 2018-05-25 02:36  
2209
Search   10001  2018-05-24 17:41 ~ 2018-05-24 18:51  
2208
XpressEngine   7482  2018-05-23 18:09 ~ 2018-12-10 02:45  
열람
영카트   8756  2018-05-21 23:53 ~ 2018-05-22 00:40  
2206
호스팅   9377  2018-05-17 10:21 ~ 2018-05-17 10:41  
2205
JavaScript   18728  2018-05-15 02:11 ~ 2018-05-15 13:04  
2204
도메인   9775  2018-05-10 11:28 ~ 2018-05-10 14:05  
2203
MSSQL   10184  2018-05-09 22:36  
2202
그누보드   8796  2018-05-08 12:21 ~ 2018-05-08 12:40  
2201
호스팅   10648  2018-05-04 15:05 ~ 2023-08-29 23:55  
2200
영카트   10709  2018-05-01 20:10 ~ 2018-05-01 20:14  
2199
영카트   9995  2018-05-01 17:30 ~ 2018-05-01 17:33  
2198
Search   20322  2018-04-30 22:49 ~ 2018-10-29 18:03  
2197
그누보드   9039  2018-04-25 12:47 ~ 2018-04-25 12:54  
2196
그누보드   9679  2018-04-24 03:11 ~ 2018-04-24 04:42  
2195
영카트   8949  2018-04-12 19:29  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.