Services_Ebay
[ class tree: Services_Ebay ] [ index: Services_Ebay ] [ all elements ]

Source for file SetPreferences.php

Documentation is available at SetPreferences.php

  1. <?PHP
  2. /**
  3.  * Set eBay preferences
  4.  *
  5.  * $Id$
  6.  *
  7.  * @package Services_Ebay
  8.  * @author  Stephan Schmidt <schst@php.net>
  9.  * @link    http://developer.ebay.com/DevZone/docs/API_Doc/Functions/SetPreferences/SetPreferencesLogic.htm
  10.  */
  11. {
  12.    /**
  13.     * verb of the API call
  14.     *
  15.     * @var  string 
  16.     */
  17.     protected $verb = 'SetPreferences';
  18.  
  19.    /**
  20.     * options that will be passed to the serializer
  21.     *
  22.     * @var  array 
  23.     */
  24.     protected $serializerOptions = array(
  25.                                             'mode' => 'simplexml'
  26.                                         );
  27.    /**
  28.     * parameter map that is used, when scalar parameters are passed
  29.     *
  30.     * @var  array 
  31.     */
  32.     protected $paramMap = array();
  33.  
  34.    /**
  35.     * constructor
  36.     *
  37.     * @param    array 
  38.     */
  39.     public function __construct($args)
  40.     {
  41.         $prefs $args[0];
  42.         
  43.         if (!$prefs instanceof Services_Ebay_Model_Preferences {
  44.             throw new Services_Ebay_Exception'No preferences passed.' );
  45.         }
  46.         $this->args = $prefs->toArray();
  47.     }
  48.     
  49.    /**
  50.     * make the API call
  51.     *
  52.     * @param    object Services_Ebay_Session 
  53.     * @return   string 
  54.     */
  55.     public function call(Services_Ebay_Session $session)
  56.     {
  57.         $return = parent::call($session);
  58.         if ($return['CallStatus']['Status'=== 'Success'{
  59.             return true;
  60.         }
  61.         return false;
  62.     }
  63. }
  64. ?>

Documentation generated on Mon, 11 Mar 2019 15:49:49 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.