4
การสร้างคำสั่งซื้อใน Drupal Commerce โดยทางโปรแกรมสำหรับผู้ใช้ที่ไม่ระบุชื่อซึ่งเปลี่ยนเส้นทางไปยังหน้าการชำระเงิน
Ryan มีรหัสที่ยอดเยี่ยมที่คุณสามารถสร้างคำสั่งซื้อโดยทางโปรแกรม <?php global $user; $product_id = 1; // Create the new order in checkout; you might also check first to // see if your user already has an order to use instead of a new one. $order = commerce_order_new($user->uid, 'checkout_checkout'); // Save the order to get its ID. commerce_order_save($order); …