Drupal Commerce

添加到購物車


function commerce_cart_line_item_add($product_id,$quantity,$uid) {
  
 $line_item=NULL;
  if ($product=commerce_product_load($product_id)) {
    $line_item=commerce_product_line_item_new($product,$quantity);
    $line_item=commerce_cart_product_add($uid,$line_item);
  }
  return $line_item;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章