]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Relationships/vardefs.php
Release 6.5.16
[Github/sugarcrm.git] / modules / Relationships / vardefs.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2013 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 $dictionary['Relationship'] =
39
40         array('table' => 'relationships'
41          ,'fields' => array (
42                         'id' =>
43                         array (
44                         'name' => 'id',
45                         'vname' => 'LBL_ID',
46                         'type' => 'id',
47                         'required'=>true,
48                         ),
49
50                         'relationship_name' =>
51                         array (
52                         'name' => 'relationship_name',
53                         'vname' => 'LBL_RELATIONSHIP_NAME',
54                         'type' => 'varchar',
55                         'required'=>true,
56                         'len' => 150,
57                         'importable' => 'required',
58                         ),
59                         'lhs_module' =>
60                         array (
61                         'name' => 'lhs_module',
62                         'vname' => 'LBL_LHS_MODULE',
63                         'type' => 'varchar',
64                         'required'=>true,
65                         'len' => 100
66                         ),
67                         'lhs_table' =>
68                         array (
69                         'name' => 'lhs_table',
70                         'vname' => 'LBL_LHS_TABLE',
71                         'type' => 'varchar',
72                         'required'=>true,
73                         'len' => 64
74                         ),
75                         'lhs_key' =>
76                         array (
77                         'name' => 'lhs_key',
78                         'vname' => 'LBL_LHS_KEY',
79                         'type' => 'varchar',
80                         'required'=>true,
81                         'len' => 64
82                         ),
83                         'rhs_module' =>
84                         array (
85                         'name' => 'rhs_module',
86                         'vname' => 'LBL_RHS_MODULE',
87                         'type' => 'varchar',
88                         'required'=>true,
89                         'len' => 100
90                         ),
91                         'rhs_table' =>
92                         array (
93                         'name' => 'rhs_table',
94                         'vname' => 'LBL_RHS_TABLE',
95                         'type' => 'varchar',
96                         'required'=>true,
97                         'len' => 64
98                         ),
99                         'rhs_key' =>
100                         array (
101                         'name' => 'rhs_key',
102                         'vname' => 'LBL_RHS_KEY',
103                         'type' => 'varchar',
104                         'required'=>true,
105                         'len' => 64
106                         ),
107                         'join_table' =>
108                         array (
109                         'name' => 'join_table',
110                         'vname' => 'LBL_JOIN_TABLE',
111                         'type' => 'varchar',
112                   // Bug #41454 : Custom Relationships with Long Names do not Deploy Properly in MSSQL Environments
113                   // Maximum length of identifiers for MSSQL, DB2 is 128 symbols
114                   // @see e.g. MssqlManager :: $maxNameLengths property
115                   // @see AbstractRelationship::getRelationshipMetaData()
116                   'len' => 128
117                         ),
118                         'join_key_lhs' =>
119                         array (
120                         'name' => 'join_key_lhs',
121                         'vname' => 'LBL_JOIN_KEY_LHS',
122                         'type' => 'varchar',
123                   // Bug #41454 : Custom Relationships with Long Names do not Deploy Properly in MSSQL Environments
124                   // Maximum length of identifiers for MSSQL, DB2 is 128 symbols
125                   // @see e.g. MssqlManager :: $maxNameLengths property
126                   // @see AbstractRelationship::getRelationshipMetaData()
127                   'len' => 128
128                         ),
129                         'join_key_rhs' =>
130                         array (
131                         'name' => 'join_key_rhs',
132                         'vname' => 'LBL_JOIN_KEY_RHS',
133                         'type' => 'varchar',
134                   // Bug #41454 : Custom Relationships with Long Names do not Deploy Properly in MSSQL Environments
135                   // Maximum length of identifiers for MSSQL, DB2 is 128 symbols
136                   // @see e.g. MssqlManager :: $maxNameLengths property
137                   // @see AbstractRelationship::getRelationshipMetaData()
138                   'len' => 128
139                         ),
140                         'relationship_type' =>
141                         array (
142                         'name' => 'relationship_type',
143                         'vname' => 'LBL_RELATIONSHIP_TYPE',
144                         'type' => 'varchar',
145                         'len' => 64
146                         ),
147                         'relationship_role_column' =>
148                         array (
149                         'name' => 'relationship_role_column',
150                         'vname' => 'LBL_RELATIONSHIP_ROLE_COLUMN',
151                         'type' => 'varchar',
152                         'len' => 64
153                         ),
154                         'relationship_role_column_value' =>
155                         array (
156                         'name' => 'relationship_role_column_value',
157                         'vname' => 'LBL_RELATIONSHIP_ROLE_COLUMN_VALUE',
158                         'type' => 'varchar',
159                         'len' => 50
160                         ),
161                         'reverse' =>
162                         array (
163                         'name' => 'reverse',
164                         'vname' => 'LBL_REVERSE',
165                         'type' => 'bool',
166                         'default' => '0'
167                         ),
168                         'deleted' =>
169                         array (
170                         'name' => 'deleted',
171                         'vname' => 'LBL_DELETED',
172                         'type' => 'bool',
173                         'reportable'=>false,
174                         'default' => '0'
175                         ),
176
177         )
178         , 'indices' => array (
179        array('name' =>'relationshippk', 'type' =>'primary', 'fields'=>array('id')),
180        array('name' =>'idx_rel_name', 'type' =>'index', 'fields'=>array('relationship_name')),
181     )
182 );
183
184
185 ?>