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