]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - service/v3/registry.php
Release 6.5.0
[Github/sugarcrm.git] / service / v3 / registry.php
1 <?php
2 if(!defined('sugarEntry'))define('sugarEntry', true);
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 require_once('service/v2/registry.php'); //Extend off of v2 registry
40
41 class registry_v3 extends registry {
42         
43         /**
44          * This method registers all the functions on the service class
45          *
46          */
47         protected function registerFunction() {
48                 
49                 $GLOBALS['log']->info('Begin: registry->registerFunction');
50                 parent::registerFunction();
51
52                 $this->serviceClass->registerFunction(
53                     'get_module_fields_md5',
54                     array('session'=>'xsd:string', 'module_names'=>'tns:select_fields'),
55                     array('return'=>'tns:md5_results'));    
56             
57                 $this->serviceClass->registerFunction(
58                     'get_available_modules',
59                 array('session'=>'xsd:string','filter'=>'xsd:string'),
60                 array('return'=>'tns:module_list'));
61                 
62             $this->serviceClass->registerFunction(
63                     'get_last_viewed',
64                 array('session'=>'xsd:string','module_names'=>'tns:module_names'),
65                 array('return'=>'tns:last_viewed_list'));     
66                 
67         $this->serviceClass->registerFunction(
68                     'get_upcoming_activities',
69                 array('session'=>'xsd:string'),
70                 array('return'=>'tns:upcoming_activities_list')); 
71                 
72             $this->serviceClass->registerFunction(
73                     'search_by_module',
74                 array('session'=>'xsd:string','search_string'=>'xsd:string', 'modules'=>'tns:select_fields', 'offset'=>'xsd:int', 'max_results'=>'xsd:int','assigned_user_id' => 'xsd:string', 'select_fields'=>'tns:select_fields'),
75                 array('return'=>'tns:return_search_result'));
76                 
77             $this->serviceClass->registerFunction(
78                     'get_relationships',
79                     array('session'=>'xsd:string', 'module_name'=>'xsd:string', 'module_id'=>'xsd:string', 'link_field_name'=>'xsd:string', 'related_module_query'=>'xsd:string', 'related_fields'=>'tns:select_fields', 'related_module_link_name_to_fields_array'=>'tns:link_names_to_fields_array', 'deleted'=>'xsd:int', 'order_by'=>'xsd:string',),
80                     array('return'=>'tns:get_entry_result_version2'));
81                             
82             $GLOBALS['log']->info('END: registry->registerFunction');
83                 
84                 // END OF REGISTER FUNCTIONS
85         }
86         
87         /**
88          * This method registers all the complex types
89          *
90          */
91         protected function registerTypes() {
92         
93             parent::registerTypes();
94             
95             $this->serviceClass->registerType(
96                          'md5_results',
97                          'complexType',
98             'array',
99             '',
100             'SOAP-ENC:Array',
101             array(),
102             array(
103                array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType'=>'xsd:string[]')
104             ),
105             'xsd:string'
106                 );
107                 
108             $this->serviceClass->registerType(
109             'module_names',
110             'complexType',
111             'array',
112             '',
113             'SOAP-ENC:Array',
114             array(),
115             array(
116                array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType'=>'xsd:string[]')
117             ),
118             'xsd:string'
119             );
120             
121             $this->serviceClass->registerType(
122                     'upcoming_activities_list',
123                         'complexType',
124                          'array',
125                          '',
126                           'SOAP-ENC:Array',
127                         array(),
128                     array(
129                         array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'tns:upcoming_activity_entry[]')
130                     ),
131                         'tns:upcoming_activity_entry'
132                 );
133                 
134                 $this->serviceClass->registerType(
135                     'upcoming_activity_entry',
136                     'complexType',
137                     'struct',
138                     'all',
139                     '',
140                     array(
141                         "id" => array('name'=>"id",'type'=>'xsd:string'),
142                         "module" => array('name'=>"module",'type'=>'xsd:string'),
143                         "date_due" => array('name'=>"date_due",'type'=>'xsd:string'),
144                                 "summary" => array('name'=>"summary",'type'=>'xsd:string'),
145                     )
146                 );
147                 
148             $this->serviceClass->registerType(
149                     'last_viewed_list',
150                         'complexType',
151                          'array',
152                          '',
153                           'SOAP-ENC:Array',
154                         array(),
155                     array(
156                         array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'tns:last_viewed_entry[]')
157                     ),
158                         'tns:last_viewed_entry'
159                 );
160                 
161             $this->serviceClass->registerType(
162                     'last_viewed_entry',
163                     'complexType',
164                     'struct',
165                     'all',
166                     '',
167                     array(
168                         "id" => array('name'=>"id",'type'=>'xsd:string'),
169                                 "item_id" => array('name'=>"item_id",'type'=>'xsd:string'),
170                                 "item_summary" => array('name'=>"item_summary",'type'=>'xsd:string'),
171                                 "module_name" => array('name'=>"module_name",'type'=>'xsd:string'),
172                                 "monitor_id" => array('name'=>"monitor_id",'type'=>'xsd:string'),
173                                 "date_modified" => array('name'=>"date_modified",'type'=>'xsd:string')
174                     )
175                 );
176                 
177                 $this->serviceClass->registerType(
178                     'field',
179                         'complexType',
180                          'struct',
181                          'all',
182                           '',
183                                 array(
184                                         'name'=>array('name'=>'name', 'type'=>'xsd:string'),
185                                         'type'=>array('name'=>'type', 'type'=>'xsd:string'),
186                                         'group'=>array('name'=>'group', 'type'=>'xsd:string'),
187                                         'label'=>array('name'=>'label', 'type'=>'xsd:string'),
188                                         'required'=>array('name'=>'required', 'type'=>'xsd:int'),
189                                         'options'=>array('name'=>'options', 'type'=>'tns:name_value_list'),
190                             'default_value'=>array('name'=>'name', 'type'=>'xsd:string'),
191                                 )
192                 );
193         }
194 }