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