diff -r 000000000000 -r 4eba9c11703f web/Zend/Service/Ebay/Finding/SellingStatus.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/Zend/Service/Ebay/Finding/SellingStatus.php Mon Dec 13 18:29:26 2010 +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') + ); + } +}