diff -r bd595ad770fc -r 1c2f13fd785c web/enmi/Zend/Service/Ebay/Finding/SellingStatus.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/enmi/Zend/Service/Ebay/Finding/SellingStatus.php Thu Jan 20 19:30:54 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') + ); + } +}