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