예제 #1
0
 public function load_ebay_data()
 {
     if (!$this->ebay_data) {
         $response = Ebay::get_item($this->item_id);
         if ($response->Ack == 'Success') {
             $this->ebay_data = $response->Item;
             $this->sku = $this->ebay_data->SKU;
         } else {
             $this->log_response_errors($response);
         }
     }
 }