]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Bugs/vardefs.php
Release 6.5.6
[Github/sugarcrm.git] / modules / Bugs / 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['Bug'] = array('table' => 'bugs',    'audited'=>true, 'comment' => 'Bugs are defects in products and services','duplicate_merge'=>true
39                                ,'unified_search' => true,'fields' => array (
40   'found_in_release'=>
41         array(
42         'name'=>'found_in_release',
43         'type' => 'enum',
44         'function'=>'getReleaseDropDown',
45         'vname' => 'LBL_FOUND_IN_RELEASE',
46         'reportable'=>false,
47         //'merge_filter' => 'enabled', //bug 22994, I think the former fixing is just avoiding the cross table query, it is not a good method.
48     'comment' => 'The software or service release that manifested the bug',
49     'duplicate_merge' => 'disabled',
50     'audited' =>true,
51     'studio' => array(
52         'fields' => 'false',  // tyoung bug 16442 - don't show in studio fields list
53         'listview' => false,
54     ),
55     'massupdate' => true,
56         ),
57 'release_name'=>
58   array (
59     'name' => 'release_name',
60     'rname' => 'name',
61     'vname'=>'LBL_FOUND_IN_RELEASE',
62     'type' => 'relate',
63     'dbType'=>'varchar',
64         'group'=>'found_in_release',
65     'reportable'=>false,
66     'source'=>'non-db',
67     'table'=>'releases',
68     'merge_filter' => 'enabled', //bug 22994, we should use the release name to search, I have write codes to operate the cross table query. 
69     'id_name'=>'found_in_release',
70     'module'=>'Releases',
71     'link' => 'release_link',
72     'massupdate' => false,
73         'studio' => array(
74        'editview' => false, 
75        'detailview' => false,
76        'quickcreate' => false, 
77        'basic_search' => false, 
78        'advanced_search' => false,
79            ),
80   ),
81
82     'fixed_in_release'=>
83         array(
84         'name'=>'fixed_in_release',
85         'type' => 'enum',
86         'function'=>'getReleaseDropDown',
87         'vname' => 'LBL_FIXED_IN_RELEASE',
88         'reportable'=>false,
89     'comment' => 'The software or service release that corrected the bug',
90     'duplicate_merge' => 'disabled',
91     'audited' =>true,
92     'studio' => array(
93         'fields' => 'false', // tyoung bug 16442 - don't show in studio fields list
94         'listview' => false,
95     ),
96         'massupdate' => true,
97         ),
98    'fixed_in_release_name'=>
99   array (
100     'name' => 'fixed_in_release_name',
101     'rname' => 'name',
102     'group'=>'fixed_in_release',
103     'id_name' => 'fixed_in_release',
104     'vname' => 'LBL_FIXED_IN_RELEASE',
105     'type' => 'relate',
106     'table' => 'releases',
107     'isnull' => 'false',
108     'massupdate' => false,
109     'module' => 'Releases',
110     'dbType' => 'varchar',
111     'len' => 36,
112     'source'=>'non-db',
113     'link' => 'fixed_in_release_link',
114         'studio' => array(
115        'editview' => false, 
116        'detailview' => false,
117        'quickcreate' => false, 
118        'basic_search' => false, 
119        'advanced_search' => false,
120        ),
121   ),
122     'source' =>
123   array (
124     'name' => 'source',
125     'vname' => 'LBL_SOURCE',
126     'type' => 'enum',
127     'options'=>'source_dom',
128     'len' => 255,
129     'comment' => 'An indicator of how the bug was entered (ex: via web, email, etc.)'
130   ),
131     'product_category' =>
132   array (
133     'name' => 'product_category',
134     'vname' => 'LBL_PRODUCT_CATEGORY',
135     'type' => 'enum',
136     'options'=>'product_category_dom',
137     'len' => 255,
138     'comment' => 'Where the bug was discovered (ex: Accounts, Contacts, Leads)'
139   ),
140
141
142   'tasks' =>
143   array (
144         'name' => 'tasks',
145     'type' => 'link',
146     'relationship' => 'bug_tasks',
147     'source'=>'non-db',
148                 'vname'=>'LBL_TASKS'
149   ),
150   'notes' =>
151   array (
152         'name' => 'notes',
153     'type' => 'link',
154     'relationship' => 'bug_notes',
155     'source'=>'non-db',
156                 'vname'=>'LBL_NOTES'
157   ),
158   'meetings' =>
159   array (
160         'name' => 'meetings',
161     'type' => 'link',
162     'relationship' => 'bug_meetings',
163     'source'=>'non-db',
164                 'vname'=>'LBL_MEETINGS'
165   ),
166   'calls' =>
167   array (
168         'name' => 'calls',
169     'type' => 'link',
170     'relationship' => 'bug_calls',
171     'source'=>'non-db',
172                 'vname'=>'LBL_CALLS'
173   ),
174   'emails' =>
175   array (
176         'name' => 'emails',
177     'type' => 'link',
178     'relationship' => 'emails_bugs_rel',/* reldef in emails */
179     'source'=>'non-db',
180                 'vname'=>'LBL_EMAILS'
181   ),
182   'documents'=>
183   array (
184       'name' => 'documents',
185       'type' => 'link',
186       'relationship' => 'documents_bugs',
187       'source' => 'non-db',
188       'vname' => 'LBL_DOCUMENTS_SUBPANEL_TITLE',
189   ),
190   'contacts' =>
191   array (
192         'name' => 'contacts',
193     'type' => 'link',
194     'relationship' => 'contacts_bugs',
195     'source'=>'non-db',
196                 'vname'=>'LBL_CONTACTS'
197   ),
198   'accounts' =>
199   array (
200         'name' => 'accounts',
201     'type' => 'link',
202     'relationship' => 'accounts_bugs',
203     'source'=>'non-db',
204                 'vname'=>'LBL_ACCOUNTS'
205   ),
206   'cases' =>
207   array (
208         'name' => 'cases',
209     'type' => 'link',
210     'relationship' => 'cases_bugs',
211     'source'=>'non-db',
212                 'vname'=>'LBL_CASES'
213   ),
214   'project' =>
215   array (
216         'name' => 'project',
217         'type' => 'link',
218         'relationship' => 'projects_bugs',
219         'source'=>'non-db',
220         'vname'=>'LBL_PROJECTS',
221   ),
222   'release_link' =>
223   array (
224         'name' => 'release_link',
225     'type' => 'link',
226     'relationship' => 'bugs_release',
227     'vname' => 'LBL_FOUND_IN_RELEASE',
228     'link_type' => 'one',
229     'module'=>'Releases',
230     'bean_name'=>'Release',
231     'source'=>'non-db',
232   ),
233   'fixed_in_release_link' =>
234   array (
235         'name' => 'fixed_in_release_link',
236     'type' => 'link',
237     'relationship' => 'bugs_fixed_in_release',
238     'vname' => 'LBL_FIXED_IN_RELEASE',
239     'link_type' => 'one',
240     'module'=>'Releases',
241     'bean_name'=>'Release',
242     'source'=>'non-db',
243   ),
244
245 )
246                                                       , 'indices' => array (
247       array('name' =>'bug_number', 'type' =>'index', 'fields'=>array('bug_number')),
248
249        array('name' =>'idx_bug_name', 'type' =>'index', 'fields'=>array('name')),
250
251        array('name' => 'idx_bugs_assigned_user', 'type' => 'index', 'fields'=> array('assigned_user_id')),
252
253                                                       )
254
255 , 'relationships' => array (
256         'bug_tasks' => array('lhs_module'=> 'Bugs', 'lhs_table'=> 'bugs', 'lhs_key' => 'id',
257                                                           'rhs_module'=> 'Tasks', 'rhs_table'=> 'tasks', 'rhs_key' => 'parent_id',
258                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
259                                                           'relationship_role_column_value'=>'Bugs')
260         ,'bug_meetings' => array('lhs_module'=> 'Bugs', 'lhs_table'=> 'bugs', 'lhs_key' => 'id',
261                                                           'rhs_module'=> 'Meetings', 'rhs_table'=> 'meetings', 'rhs_key' => 'parent_id',
262                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
263                                                           'relationship_role_column_value'=>'Bugs')
264         ,'bug_calls' => array('lhs_module'=> 'Bugs', 'lhs_table'=> 'bugs', 'lhs_key' => 'id',
265                                                           'rhs_module'=> 'Calls', 'rhs_table'=> 'calls', 'rhs_key' => 'parent_id',
266                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
267                                                           'relationship_role_column_value'=>'Bugs')
268         ,'bug_emails' => array('lhs_module'=> 'Bugs', 'lhs_table'=> 'bugs', 'lhs_key' => 'id',
269                                                           'rhs_module'=> 'Emails', 'rhs_table'=> 'emails', 'rhs_key' => 'parent_id',
270                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
271                                                           'relationship_role_column_value'=>'Bugs')
272         ,'bug_notes' => array('lhs_module'=> 'Bugs', 'lhs_table'=> 'bugs', 'lhs_key' => 'id',
273                                                           'rhs_module'=> 'Notes', 'rhs_table'=> 'notes', 'rhs_key' => 'parent_id',
274                                                           'relationship_type'=>'one-to-many', 'relationship_role_column'=>'parent_type',
275                                                           'relationship_role_column_value'=>'Bugs')
276
277   ,'bugs_assigned_user' =>
278    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
279    'rhs_module'=> 'Bugs', 'rhs_table'=> 'bugs', 'rhs_key' => 'assigned_user_id',
280    'relationship_type'=>'one-to-many')
281
282    ,'bugs_modified_user' =>
283    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
284    'rhs_module'=> 'Bugs', 'rhs_table'=> 'bugs', 'rhs_key' => 'modified_user_id',
285    'relationship_type'=>'one-to-many')
286
287    ,'bugs_created_by' =>
288    array('lhs_module'=> 'Users', 'lhs_table'=> 'users', 'lhs_key' => 'id',
289    'rhs_module'=> 'Bugs', 'rhs_table'=> 'bugs', 'rhs_key' => 'created_by',
290    'relationship_type'=>'one-to-many')
291    ,'bugs_release' =>
292    array('lhs_module'=> 'Releases', 'lhs_table'=> 'releases', 'lhs_key' => 'id',
293    'rhs_module'=> 'Bugs', 'rhs_table'=> 'bugs', 'rhs_key' => 'found_in_release',
294    'relationship_type'=>'one-to-many')
295    ,'bugs_fixed_in_release' =>
296    array('lhs_module'=> 'Releases', 'lhs_table'=> 'releases', 'lhs_key' => 'id',
297    'rhs_module'=> 'Bugs', 'rhs_table'=> 'bugs', 'rhs_key' => 'fixed_in_release',
298    'relationship_type'=>'one-to-many')
299
300 ),         //This enables optimistic locking for Saves From EditView
301         'optimistic_locking'=>true,
302                             );
303
304 VardefManager::createVardef('Bugs','Bug', array('default', 'assignable',
305 'issue',
306 ));
307
308 //jc - adding for refactor for import to not use the required_fields array
309 //defined in the field_arrays.php file
310 $dictionary['Bug']['fields']['name']['importable'] = 'required';
311
312 ?>