base_object = $base_object; $this->layout_object = $layout_object; $this->customer_data = false; $this->shipping_address = false; $this->billing_address = false; $this->shoppingcart = false; $this->payment_method = false; $this->shipping_method = false; $this->gift_certificate = false; $this->order_id = false; } // end __construct public function set_order_id($order_id) { $this->order_id = $order_id; } // end set_order_id public function set_data($customer, $shipping, $billing, $shoppingcart, $delivery, $payment, $order_id = false) { $this->customer_data = $customer; $this->shipping_address = $shipping; $this->billing_address = $billing; $this->shoppingcart = $shoppingcart; $this->payment_method = $delivery; $this->shipping_method = $payment; $this->order_id = $order_id; } // end set_data public function set_gift_certificate($gift_certificate) { $this->gift_certificate = $gift_certificate; } // end set_gift_certificate public function set_order_id($order_id) { $this->order_id = $order_id; } // end set_order_id public function before_order() { } // end before_order public function after_order() { } // end after_order public function change_order() { } // end change_order } // end PaymorrowPaymentMethod /* EOF */