[ Index ]
 

Code source de eZ Publish 3.9.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/kernel/shop/ -> function_definition.php (source)

   1  <?php
   2  //
   3  // Created on: <06-æÅ×-2003 10:28:49 sp>
   4  //
   5  // SOFTWARE NAME: eZ publish
   6  // SOFTWARE RELEASE: 3.9.0
   7  // BUILD VERSION: 17785
   8  // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS
   9  // SOFTWARE LICENSE: GNU General Public License v2.0
  10  // NOTICE: >
  11  //   This program is free software; you can redistribute it and/or
  12  //   modify it under the terms of version 2.0  of the GNU General
  13  //   Public License as published by the Free Software Foundation.
  14  //
  15  //   This program is distributed in the hope that it will be useful,
  16  //   but WITHOUT ANY WARRANTY; without even the implied warranty of
  17  //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18  //   GNU General Public License for more details.
  19  //
  20  //   You should have received a copy of version 2.0 of the GNU General
  21  //   Public License along with this program; if not, write to the Free
  22  //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  23  //   MA 02110-1301, USA.
  24  //
  25  //
  26  
  27  /*! \file function_definition.php
  28  */
  29  
  30  $FunctionList = array();
  31  $FunctionList['basket'] = array( 'name' => 'basket',
  32                                   'operation_types' => array( 'read' ),
  33                                   'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
  34                                                           'class' => 'eZShopFunctionCollection',
  35                                                           'method' => 'fetchBasket' ),
  36                                   'parameter_type' => 'standard',
  37                                   'parameters' => array( ) );
  38  
  39  $FunctionList['best_sell_list'] = array( 'name' => 'best_sell_list',
  40                                           'operation_types' => array( 'read' ),
  41                                           'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
  42                                                                   'class' => 'eZShopFunctionCollection',
  43                                                                   'method' => 'fetchBestSellList' ),
  44                                           'parameter_type' => 'standard',
  45                                           'parameters' => array( array( 'name' => 'top_parent_node_id',
  46                                                                         'type' => 'integer',
  47                                                                         'required' => true ),
  48                                                                  array( 'name' => 'limit',
  49                                                                         'type' => 'integer',
  50                                                                         'required' => false ),
  51                                                                  array( 'name' => 'offset',
  52                                                                         'type' => 'integer',
  53                                                                         'required' => false,
  54                                                                         'default' => false ),
  55                                                                  array( 'name' => 'start_time',
  56                                                                         'type' => 'integer',
  57                                                                         'required' => false,
  58                                                                         'default' => false ),
  59                                                                  array( 'name' => 'end_time',
  60                                                                         'type' => 'integer',
  61                                                                         'required' => false,
  62                                                                         'default' => false ),
  63                                                                  array( 'name' => 'duration',
  64                                                                         'type' => 'integer',
  65                                                                         'required' => false,
  66                                                                         'default' => false ),
  67                                                                  array( 'name' => 'ascending',
  68                                                                         'type' => 'boolean',
  69                                                                         'required' => false,
  70                                                                         'default' => false ),
  71                                                                  array( 'name' => 'extended',
  72                                                                         'type' => 'boolean',
  73                                                                         'required' => false,
  74                                                                         'default' => false ) ) );
  75  
  76  $FunctionList['related_purchase'] = array( 'name' => 'related_purchase',
  77                                           'operation_types' => array( 'read' ),
  78                                           'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
  79                                                                   'class' => 'eZShopFunctionCollection',
  80                                                                   'method' => 'fetchRelatedPurchaseList' ),
  81                                           'parameter_type' => 'standard',
  82                                           'parameters' => array( array( 'name' => 'contentobject_id',
  83                                                                         'type' => 'integer',
  84                                                                         'required' => true ),
  85                                                                  array( 'name' => 'limit',
  86                                                                         'type' => 'integer',
  87                                                                         'required' => true ) ) );
  88  
  89  $FunctionList['wish_list'] = array( 'name' => 'wish_list',
  90                                      'operation_types' => array( 'read' ),
  91                                      'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
  92                                                              'class' => 'eZShopFunctionCollection',
  93                                                              'method' => 'fetchWishList' ),
  94                                      'parameter_type' => 'standard',
  95                                      'parameters' => array( array( 'name' => 'production_id',
  96                                                                    'type' => 'integer',
  97                                                                    'required' => true ),
  98                                                             array( 'name' => 'offset',
  99                                                                    'type' => 'integer',
 100                                                                    'required' => false,
 101                                                                    'default' => false ),
 102                                                             array( 'name' => 'limit',
 103                                                                    'type' => 'integer',
 104                                                                    'required' => false,
 105                                                                    'default' => false ) ) );
 106  
 107  $FunctionList['wish_list_count'] = array( 'name' => 'wish_list_count',
 108                                            'operation_types' => array( 'read' ),
 109                                            'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 110                                                                    'class' => 'eZShopFunctionCollection',
 111                                                                    'method' => 'fetchWishListCount' ),
 112                                            'parameter_type' => 'standard',
 113                                            'parameters' => array( array( 'name' => 'production_id',
 114                                                                          'type' => 'integer',
 115                                                                          'required' => true ) ) );
 116  $FunctionList['order_status_history_count'] = array( 'name' => 'order_status_history_count',
 117                                                       'operation_types' => array( 'read' ),
 118                                                       'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 119                                                                               'class' => 'eZShopFunctionCollection',
 120                                                                               'method' => 'fetchOrderStatusHistoryCount' ),
 121                                                       'parameter_type' => 'standard',
 122                                                       'parameters' => array( array( 'name' => 'order_id',
 123                                                                                     'type' => 'integer',
 124                                                                                     'required' => true ) ) );
 125  $FunctionList['order_status_history'] = array( 'name' => 'order_status_history',
 126                                                 'operation_types' => array( 'read' ),
 127                                                 'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 128                                                                         'class' => 'eZShopFunctionCollection',
 129                                                                   'method' => 'fetchOrderStatusHistory' ),
 130                                                 'parameter_type' => 'standard',
 131                                                 'parameters' => array( array( 'name' => 'order_id',
 132                                                                               'type' => 'integer',
 133                                                                               'required' => true ) ) );
 134  $FunctionList['currency_list'] = array( 'name' => 'currency_list',
 135                                          'operation_types' => array( 'read' ),
 136                                          'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 137                                                                  'class' => 'eZShopFunctionCollection',
 138                                                                  'method' => 'fetchCurrencyList' ),
 139                                          'parameter_type' => 'standard',
 140                                          'parameters' => array( array( 'name' => 'status',
 141                                                                        'type' => 'integer,string',
 142                                                                        'required' => false ) ) );
 143  
 144  $FunctionList['currency'] = array( 'name' => 'currency',
 145                                     'operation_types' => array( 'read' ),
 146                                     'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 147                                                             'class' => 'eZShopFunctionCollection',
 148                                                             'method' => 'fetchCurrency' ),
 149                                     'parameter_type' => 'standard',
 150                                     'parameters' => array( array( 'name' => 'code',
 151                                                                   'type' => 'string',
 152                                                                   'required' => true ) ) );
 153  
 154  $FunctionList['preferred_currency_code'] = array( 'name' => 'preferred_currency_code',
 155                                                    'operation_types' => array( 'read' ),
 156                                                    'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 157                                                                            'class' => 'eZShopFunctionCollection',
 158                                                                            'method' => 'fetchPreferredCurrencyCode' ),
 159                                                    'parameter_type' => 'standard',
 160                                                    'parameters' => array( ) );
 161  
 162  $FunctionList['user_country'] = array( 'name' => 'user_country',
 163                                         'operation_types' => array( 'read' ),
 164                                         'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 165                                                                 'class' => 'eZShopFunctionCollection',
 166                                                                 'method' => 'fetchUserCountry' ),
 167                                         'parameter_type' => 'standard',
 168                                         'parameters' => array( ) );
 169  
 170  $FunctionList['product_category_list'] = array( 'name' => 'product_category_list',
 171                                                  'operation_types' => array( 'read' ),
 172                                                  'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 173                                                                          'class' => 'eZShopFunctionCollection',
 174                                                                          'method' => 'fetchProductCategoryList' ),
 175                                                  'parameter_type' => 'standard',
 176                                                  'parameters' => array( ) );
 177  
 178  
 179  $FunctionList['product_category'] = array( 'name' => 'product_category',
 180                                                  'operation_types' => array( 'read' ),
 181                                                  'call_method' => array( 'include_file' => 'kernel/shop/ezshopfunctioncollection.php',
 182                                                                          'class' => 'eZShopFunctionCollection',
 183                                                                          'method' => 'fetchProductCategory' ),
 184                                                  'parameter_type' => 'standard',
 185                                                  'parameters' => array( array( 'name' => 'category_id',
 186                                                                                'type' => 'integer,string',
 187                                                                                'required' => true ) ) );
 188  ?>


Généré le : Sat Feb 24 10:30:04 2007 par Balluche grâce à PHPXref 0.7