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