Source for file Store.php
Documentation is available at Store.php
* Model for an eBay store
* @author Stephan Schmidt <schst@php.net>
private $categories = array ();
* @param array properties
* @param object Services_Ebay_Session
if (isset ($props['CustomCategories']) && isset ($props['CustomCategories']['Category'])) {
if (isset ($props['CustomCategories']['Category'][0 ])) {
$this->categories = $props['CustomCategories']['Category'];
$this->categories = array ($props['CustomCategories']['Category']);
unset ($props['CustomCategories']);
* get the iterator for the items in the list
$iterator = new ArrayObject ($this->categories);
Documentation generated on Mon, 11 Mar 2019 15:49:50 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|