Beispiel #1
0
 public function shippingMethods()
 {
     if (isset($this->order->shipping)) {
         $shipping = new Shipping('UPS', $this->order->shipping->zip, $this->order->shipping->country, $this->order->basket);
         return $shipping->methods();
     } else {
         return array();
     }
 }