shop.balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

amazonus_listing.php (554B)


      1 <?php
      2 class ModelExtensionOpenBayAmazonusListing extends Model {
      3 	public function listingSuccessful($product_id) {
      4 		$this->db->query("UPDATE `" . DB_PREFIX . "amazonus_product` SET `status` = 'ok' WHERE product_id = " . (int)$product_id . " AND `version` = 3");
      5 	}
      6 
      7 	public function listingFailed($product_id, $messages) {
      8 		$this->db->query("UPDATE `" . DB_PREFIX . "amazonus_product` SET `status` = 'error', `messages` = '" . $this->db->escape(json_encode($messages)) . "' WHERE product_id = " . (int)$product_id . " AND `version` = 3");
      9 	}
     10 }