Source for file GetProductFinder.php
Documentation is available at GetProductFinder.php
* Get XSL stylesheet to transform product finder
* $Id: GetProductFinder.php,v 1.1 2005/01/01 15:48:47 schst Exp $
* @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
* options that will be passed to the serializer
* @param object Services_Ebay_Session
public function call(Services_Ebay_Session $session)
if (isset ($this->args['ProductFinderId'])) {
$ids = $this->args['ProductFinderId'];
unset ($this->args['ProductFinderId']);
$this->args['ProductFinderIds']['ProductFinderId'] = $ids;
$xml = parent ::call($session, false );
$dom = DOMDocument ::loadXML ($xml);
$productFinders = $dom->getElementsByTagName ('ProductFinder');
foreach ($productFinders as $node) {
Documentation generated on Mon, 11 Mar 2019 14:19:25 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|