]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Relationships/vardefs.php
Release 6.5.0
[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-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 $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                         'len' => 64
113                         ),
114                         'join_key_lhs' =>
115                         array (
116                         'name' => 'join_key_lhs',
117                         'vname' => 'LBL_JOIN_KEY_LHS',
118                         'type' => 'varchar',
119                         'len' => 64
120                         ),
121                         'join_key_rhs' =>
122                         array (
123                         'name' => 'join_key_rhs',
124                         'vname' => 'LBL_JOIN_KEY_RHS',
125                         'type' => 'varchar',
126                         'len' => 64
127                         ),
128                         'relationship_type' =>
129                         array (
130                         'name' => 'relationship_type',
131                         'vname' => 'LBL_RELATIONSHIP_TYPE',
132                         'type' => 'varchar',
133                         'len' => 64
134                         ),
135                         'relationship_role_column' =>
136                         array (
137                         'name' => 'relationship_role_column',
138                         'vname' => 'LBL_RELATIONSHIP_ROLE_COLUMN',
139                         'type' => 'varchar',
140                         'len' => 64
141                         ),
142                         'relationship_role_column_value' =>
143                         array (
144                         'name' => 'relationship_role_column_value',
145                         'vname' => 'LBL_RELATIONSHIP_ROLE_COLUMN_VALUE',
146                         'type' => 'varchar',
147                         'len' => 50
148                         ),
149                         'reverse' =>
150                         array (
151                         'name' => 'reverse',
152                         'vname' => 'LBL_REVERSE',
153                         'type' => 'bool',
154                         'default' => '0'
155                         ),
156                         'deleted' =>
157                         array (
158                         'name' => 'deleted',
159                         'vname' => 'LBL_DELETED',
160                         'type' => 'bool',
161                         'reportable'=>false,
162                         'default' => '0'
163                         ),
164
165         )
166         , 'indices' => array (
167        array('name' =>'relationshippk', 'type' =>'primary', 'fields'=>array('id')),
168        array('name' =>'idx_rel_name', 'type' =>'index', 'fields'=>array('relationship_name')),
169     )
170 );
171
172
173 ?>