]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - service/v4/registry.php
Release 6.5.0
[Github/sugarcrm.git] / service / v4 / 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/v3_1/registry.php');
40
41 class registry_v4 extends registry_v3_1 {
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                     'search_by_module',
54                 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', 'unified_search_only'=>'xsd:boolean', 'favorites'=>'xsd:boolean'),
55                 array('return'=>'tns:return_search_result'));
56
57         }
58
59         /**
60          * This method registers all the complex types
61          *
62          */
63         protected function registerTypes()
64         {
65             parent::registerTypes();
66
67             $this->serviceClass->registerType(
68                          'return_search_result',
69                          'complexType',
70                          'struct',
71                          'all',
72                           '',
73                         array(
74                                 'entry_list' => array('name' =>'entry_list', 'type'=>'tns:search_link_list'),
75                         )
76                 );
77
78                 $this->serviceClass->registerType(
79                     'search_link_list',
80                         'complexType',
81                          'array',
82                          '',
83                           'SOAP-ENC:Array',
84                         array(),
85                     array(
86                         array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType'=>'tns:search_link_name_value[]')
87                     ),
88                         'tns:search_link_name_value'
89                 );
90
91                 $this->serviceClass->registerType(
92                     'search_link_name_value',
93                         'complexType',
94                          'struct',
95                          'all',
96                           '',
97                                 array(
98                                 'name'=>array('name'=>'name', 'type'=>'xsd:string'),
99                                         'records'=>array('name'=>'records', 'type'=>'tns:search_link_array_list'),
100                                 )
101                 );
102
103                 $this->serviceClass->registerType(
104                     'search_link_array_list',
105                         'complexType',
106                          'array',
107                          '',
108                           'SOAP-ENC:Array',
109                         array(),
110                     array(
111                         array('ref'=>'SOAP-ENC:arrayType', 'wsdl:arrayType'=>'tns:link_value[]')
112                     ),
113                         'tns:link_value'
114                 );
115
116                 $this->serviceClass->registerType(
117                     'module_list_entry',
118                         'complexType',
119                          'struct',
120                          'all',
121                           '',
122                                 array(
123                                         'module_key'=>array('name'=>'module_key', 'type'=>'xsd:string'),
124                                         'module_label'=>array('name'=>'module_label', 'type'=>'xsd:string'),
125                                         'favorite_enabled'=>array('name'=>'favorite_enabled', 'type'=>'xsd:boolean'),
126                                         'acls'=>array('name'=>'acls', 'type'=>'tns:acl_list'),
127                                 )
128                 );
129
130                 $this->serviceClass->registerType(
131                     'new_module_fields',
132                         'complexType',
133                          'struct',
134                          'all',
135                           '',
136                                 array(
137                                 'module_name'=>array('name'=>'module_name', 'type'=>'xsd:string'),
138                                 'table_name'=>array('name'=>'table_name', 'type'=>'xsd:string'),
139                                         'module_fields'=>array('name'=>'module_fields', 'type'=>'tns:field_list'),
140                                         'link_fields'=>array('name'=>'link_fields', 'type'=>'tns:link_field_list'),
141                                 )
142                 );
143         }
144 }