diff -r 5b37998e522e -r 162c1de6545a web/lib/Zend/Service/Ebay/Finding/SellingStatus.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/lib/Zend/Service/Ebay/Finding/SellingStatus.php Fri Mar 11 15:05:35 2011 +0100 @@ -0,0 +1,130 @@ +bidCount = $this->_query(".//$ns:bidCount[1]", 'integer'); + $this->convertedCurrentPrice = $this->_query(".//$ns:convertedCurrentPrice[1]", 'float'); + $this->currentPrice = $this->_query(".//$ns:currentPrice[1]", 'float'); + $this->sellingState = $this->_query(".//$ns:sellingState[1]", 'string'); + $this->timeLeft = $this->_query(".//$ns:timeLeft[1]", 'string'); + + $this->_attributes['convertedCurrentPrice'] = array( + 'currencyId' => $this->_query(".//$ns:convertedCurrentPrice[1]/@currencyId[1]", 'string') + ); + + $this->_attributes['currentPrice'] = array( + 'currencyId' => $this->_query(".//$ns:currentPrice[1]/@currencyId[1]", 'string') + ); + } +}