Source for file Feedback.php
Documentation is available at Feedback.php
* Model for a eBay feedback
* @author Stephan Schmidt <schst@php.net>
* property that stores the unique identifier (=pk) of the model
private $items = array ();
* create new feedback model
public function __construct($feedback, $session = null )
if (isset ($feedback['FeedbackDetailArray'])) {
foreach ($feedback['FeedbackDetailArray'] as $tmp) {
unset ($feedback['FeedbackDetailArray']);
* get one entry of the feedback list
* @return object Services_Ebay_Model_FeedbackEntry
if (isset ($this->items[$pos])) {
return $this->items[$pos];
* iterate through the feedback items
return new ArrayObject ($this->items);
Documentation generated on Mon, 11 Mar 2019 15:49:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|