]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/basic/vardefs.php
Release 6.5.0beta1
[Github/sugarcrm.git] / include / SugarObjects / templates / basic / vardefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 $vardefs = array(  
38 'fields' => array (
39           'id' =>
40           array (
41             'name' => 'id',
42             'vname' => 'LBL_ID',
43             'type' => 'id',
44             'required'=>true,
45             'reportable'=>true,
46             'comment' => 'Unique identifier'
47           ),
48           'name'=>
49             array(
50             'name'=>'name',
51             'vname'=> 'LBL_NAME',
52             'type'=>'name',
53             'link' => true, // bug 39288 
54                 'dbType' => 'varchar',
55             'len'=>255,
56         'unified_search' => true,
57         'full_text_search' => array('boost' => 3),
58         'required'=>true,
59                 'importable' => 'required',
60         'duplicate_merge' => 'enabled',
61         //'duplicate_merge_dom_value' => '3',
62         'merge_filter' => 'selected',
63             ),
64           'date_entered' =>
65           array (
66             'name' => 'date_entered',
67             'vname' => 'LBL_DATE_ENTERED',
68             'type' => 'datetime',
69             'group'=>'created_by_name',
70             'comment' => 'Date record created',
71             'enable_range_search' => true,
72                 'options' => 'date_range_search_dom',
73           ),
74           'date_modified' =>
75           array (
76             'name' => 'date_modified',
77             'vname' => 'LBL_DATE_MODIFIED',
78             'type' => 'datetime',
79             'group'=>'modified_by_name',
80             'comment' => 'Date record last modified',
81             'enable_range_search' => true,
82             'options' => 'date_range_search_dom',
83           ),
84                 'modified_user_id' =>
85           array (
86             'name' => 'modified_user_id',
87             'rname' => 'user_name',
88             'id_name' => 'modified_user_id',
89             'vname' => 'LBL_MODIFIED',
90             'type' => 'assigned_user_name',
91             'table' => 'users',
92             'isnull' => 'false',
93              'group'=>'modified_by_name',
94             'dbType' => 'id',
95             'reportable'=>true,
96             'comment' => 'User who last modified record',
97           ),
98           'modified_by_name' => 
99           array (
100             'name' => 'modified_by_name',
101             'vname' => 'LBL_MODIFIED_NAME',
102             'type' => 'relate',
103             'reportable'=>false,
104             'source'=>'non-db',
105             'rname'=>'user_name',
106             'table' => 'users',
107             'id_name' => 'modified_user_id',
108             'module'=>'Users',
109             'link'=>'modified_user_link',
110             'duplicate_merge'=>'disabled' 
111           ),  
112           'created_by' =>
113           array (
114             'name' => 'created_by',
115             'rname' => 'user_name',
116             'id_name' => 'modified_user_id',
117             'vname' => 'LBL_CREATED',
118             'type' => 'assigned_user_name',
119             'table' => 'users',
120             'isnull' => 'false',
121             'dbType' => 'id',
122             'group'=>'created_by_name',
123             'comment' => 'User who created record',
124           ),
125                 'created_by_name' => 
126           array (
127             'name' => 'created_by_name',
128                 'vname' => 'LBL_CREATED',
129                 'type' => 'relate',
130                 'reportable'=>false,
131             'link' => 'created_by_link',
132             'rname' => 'user_name',
133                 'source'=>'non-db',
134                 'table' => 'users',
135                 'id_name' => 'created_by',
136                 'module'=>'Users',
137                 'duplicate_merge'=>'disabled',
138         'importable' => 'false',
139         ),
140           'description' =>
141           array (
142             'name' => 'description',
143             'vname' => 'LBL_DESCRIPTION',
144             'type' => 'text',
145             'comment' => 'Full text of the note',
146             'rows' => 6,
147             'cols' => 80,
148           ),
149           'deleted' =>
150           array (
151             'name' => 'deleted',
152             'vname' => 'LBL_DELETED',
153             'type' => 'bool',
154             'default' => '0',
155             'reportable'=>false,
156             'comment' => 'Record deletion indicator'
157           ),
158             
159 /////////////////RELATIONSHIP LINKS////////////////////////////
160           'created_by_link' =>
161   array (
162      'name' => 'created_by_link',
163     'type' => 'link',
164     'relationship' => strtolower($module) . '_created_by',
165     'vname' => 'LBL_CREATED_USER',
166     'link_type' => 'one',
167     'module'=>'Users',
168     'bean_name'=>'User',
169     'source'=>'non-db',
170   ),
171   'modified_user_link' =>
172   array (
173         'name' => 'modified_user_link',
174     'type' => 'link',
175     'relationship' => strtolower($module). '_modified_user',
176     'vname' => 'LBL_MODIFIED_USER',
177     'link_type' => 'one',
178     'module'=>'Users',
179     'bean_name'=>'User',
180     'source'=>'non-db',
181   ),
182
183 ),
184 'indices' => array (
185        'id'=>array('name' =>strtolower($module).'pk', 'type' =>'primary', 'fields'=>array('id')),
186        ),
187 'relationships'=>array(
188         strtolower($module).'_modified_user' =>
189    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
190    'rhs_module'=> $module, 'rhs_table'=> strtolower($module), 'rhs_key' => 'modified_user_id',
191    'relationship_type'=>'one-to-many')
192    ,strtolower($module).'_created_by' =>
193    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
194    'rhs_module'=> $module, 'rhs_table'=> strtolower($module), 'rhs_key' => 'created_by',
195    'relationship_type'=>'one-to-many')
196 ),
197
198
199 );
200 ?>