Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?PHP
2
/**
3
 * Get suggested categories
4
 *
5
 * Use this to determine the best category for an
6
 * item you want to add
7
 *
8
 * $Id: GetSuggestedCategories.php,v 1.1 2004/10/28 17:14:53 schst Exp $
9
 *
10
 * @package Services_Ebay
11
 * @author  Stephan Schmidt <schst@php.net>
12
 * @link    http://developer.ebay.com/DevZone/docs/API_Doc/Functions/GetSuggestedCategories/GetSuggestedCategoriesLogic.htm
13
 */
14
class Services_Ebay_Call_GetSuggestedCategories extends Services_Ebay_Call
15
{
16
   /**
17
    * verb of the API call
18
    *
19
    * @var  string
20
    */
21
    protected $verb = 'GetSuggestedCategories';
22
 
23
   /**
24
    * parameter map that is used, when scalar parameters are passed
25
    *
26
    * @var  array
27
    */
28
    protected $paramMap = array(
29
                                 'Query',
30
                                );
31
   /**
32
    * make the API call
33
    *
34
    * @param    object Services_Ebay_Session
35
    * @return   string
36
    */
37
    public function call(Services_Ebay_Session $session)
38
    {
39
        $return = parent::call($session);
40
        return $return['SuggestedCategories'];
41
    }
42
}
43
?>