]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/issue/vardefs.php
Release 6.5.0
[Github/sugarcrm.git] / include / SugarObjects / templates / issue / 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                 $_object_name . '_number' => array (
40                         'name' => $_object_name . '_number',
41                         'vname' => 'LBL_NUMBER',
42                         'type' => 'int',
43             'readonly' => true,
44                         'len' => 11,
45                         'required' => true,
46                         'auto_increment' => true,
47                         'unified_search' => true,
48                         'full_text_search' => array('boost' => 3),
49                         'comment' => 'Visual unique identifier',
50                         'duplicate_merge' => 'disabled',
51                         'disable_num_format' => true,
52                 ),
53
54                 'name' => array (
55                         'name' => 'name',
56                         'vname' => 'LBL_SUBJECT',
57                         'type' => 'name',
58                         'link' => true, // bug 39288 
59                         'dbType' => 'varchar',
60                         'len' => 255,
61                         'audited' => true,
62                         'unified_search' => true,
63                         'full_text_search' => array('boost' => 3),
64                         'comment' => 'The short description of the bug',
65                         'merge_filter' => 'selected',
66                         'required'=>true,
67             'importable' => 'required',
68                         
69                 ),
70                   'type' => 
71   array (
72     'name' => 'type',
73     'vname' => 'LBL_TYPE',
74     'type' => 'enum',
75     'options' => strtolower($object_name) . '_type_dom',
76     'len'=>255,
77     'comment' => 'The type of issue (ex: issue, feature)',
78     'merge_filter' => 'enabled',
79   ),
80
81                 'status' => array (
82                         'name' => 'status',
83                         'vname' => 'LBL_STATUS',
84                         'type' => 'enum',
85                         'options' => strtolower($object_name) . '_status_dom',
86                         'len' => 100,
87                         'audited' => true,
88                         'comment' => 'The status of the issue',
89                         'merge_filter' => 'enabled',
90                         
91                 ),
92
93                 'priority' => array (
94                         'name' => 'priority',
95                         'vname' => 'LBL_PRIORITY',
96                         'type' => 'enum',
97                         'options' => strtolower($object_name) . '_priority_dom',
98                         'len' => 100,
99                         'audited' => true,
100                         'comment' => 'An indication of the priorty of the issue',
101                         'merge_filter' => 'enabled',
102                         
103                 ),
104
105                 'resolution' => array (
106                         'name' => 'resolution',
107                         'vname' => 'LBL_RESOLUTION',
108                         'type' => 'enum',
109                         'options' => strtolower($object_name) . '_resolution_dom',
110                         'len' => 255,
111                         'audited' => true,
112                         'comment' => 'An indication of how the issue was resolved',
113                         'merge_filter' => 'enabled',
114                         
115                 ),
116
117
118
119                         //not in cases.
120         'work_log' => array (
121                         'name' => 'work_log',
122                         'vname' => 'LBL_WORK_LOG',
123                         'type' => 'text',
124                         'comment' => 'Free-form text used to denote activities of interest'
125                 ),
126
127                 
128         ),
129         'indices'=>array(
130                  'number'=>array('name' =>strtolower($module).'numk', 'type' =>'unique', 'fields'=>array($_object_name . '_number'))
131         ),
132         
133 );
134 ?>