Source for file GetProductFinder.php
Documentation is available at GetProductFinder.php
* Get XSL stylesheet to transform product finder
* @author Stephan Schmidt <schst@php.net>
* @link http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetProductFinder/GetProductFinderLogic.htm
protected $verb = 'GetProductFinder';
* parameter map that is used, when scalar parameters are passed
'DetailLevel' => 'ReturnAll'
* options that will be passed to the serializer
* @param object Services_Ebay_Session
public function call(Services_Ebay_Session $session)
$xml = parent ::call($session, false );
$dom = DOMDocument ::loadXML ($xml);
$productFinders = $dom->getElementsByTagName ('ProductFinder');
foreach ($productFinders as $node) {
Documentation generated on Mon, 11 Mar 2019 15:49:48 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|