]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Bugs/metadata/subpaneldefs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Bugs / metadata / subpaneldefs.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38  
39
40
41 $layout_defs['Bugs'] = array(
42         // list of what Subpanels to show in the DetailView 
43         'subpanel_setup' => array(
44         'contacts' => array(
45                         'order' => 30,
46                         'module' => 'Contacts',
47                         'sort_order' => 'asc',
48                         'sort_by' => 'last_name, first_name',
49                         'subpanel_name' => 'default',
50                         'get_subpanel_data' => 'contacts',
51                         'add_subpanel_data' => 'contact_id',
52                         'title_key' => 'LBL_CONTACTS_SUBPANEL_TITLE',
53             'top_buttons' => array(
54                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
55                 array('widget_class' => 'SubPanelTopSelectButton', 'mode'=>'MultiSelect')
56             ),
57                 ),
58         'activities' => array(
59                         'order' => 10,
60                         'sort_order' => 'desc',
61                         'sort_by' => 'date_start',
62                         'title_key' => 'LBL_ACTIVITIES_SUBPANEL_TITLE',
63                         'type' => 'collection',
64                         'subpanel_name' => 'activities',   //this values is not associated with a physical file.
65                         'module'=>'Activities',
66
67                         'top_buttons' => array(
68                                 array('widget_class' => 'SubPanelTopCreateTaskButton'),
69                                 array('widget_class' => 'SubPanelTopScheduleMeetingButton'),
70                                 array('widget_class' => 'SubPanelTopScheduleCallButton'),
71                                 array('widget_class' => 'SubPanelTopComposeEmailButton'),
72                         ),
73
74                         'collection_list' => array(     
75                                 'meetings' => array(
76                                         'module' => 'Meetings',
77                                         'subpanel_name' => 'ForActivities',
78                                         'get_subpanel_data' => 'meetings',
79                                 ),
80                                 'tasks' => array(
81                                         'module' => 'Tasks',
82                                         'subpanel_name' => 'ForActivities',
83                                         'get_subpanel_data' => 'tasks',
84                                 ),
85                                 'calls' => array(
86                                         'module' => 'Calls',
87                                         'subpanel_name' => 'ForActivities',
88                                         'get_subpanel_data' => 'calls',
89                                 ),      
90                         )                       
91                 ),
92         'history' => array(
93                         'order' => 20,
94                         'sort_order' => 'desc',
95                         'sort_by' => 'date_entered',
96                         'title_key' => 'LBL_HISTORY_SUBPANEL_TITLE',
97                         'type' => 'collection',
98                         'subpanel_name' => 'history',   //this values is not associated with a physical file.
99                         'module'=>'History',
100
101                         'top_buttons' => array(
102                         array('widget_class' => 'SubPanelTopCreateNoteButton'),
103                         array('widget_class' => 'SubPanelTopArchiveEmailButton'),
104             array('widget_class' => 'SubPanelTopSummaryButton'),
105                         ),
106
107                         'collection_list' => array(     
108                                 'meetings' => array(
109                                         'module' => 'Meetings',
110                                         'subpanel_name' => 'ForHistory',
111                                         'get_subpanel_data' => 'meetings',
112                                 ),
113                                 'tasks' => array(
114                                         'module' => 'Tasks',
115                                         'subpanel_name' => 'ForHistory',
116                                         'get_subpanel_data' => 'tasks',
117                                 ),
118                                 'calls' => array(
119                                         'module' => 'Calls',
120                                         'subpanel_name' => 'ForHistory',
121                                         'get_subpanel_data' => 'calls',
122                                 ),      
123                                 'notes' => array(
124                                         'module' => 'Notes',
125                                         'subpanel_name' => 'ForHistory',
126                                         'get_subpanel_data' => 'notes',
127                                 ),      
128                                 'emails' => array(
129                                         'module' => 'Emails',
130                                         'subpanel_name' => 'ForHistory',
131                                         'get_subpanel_data' => 'emails',
132                                 ),      
133                         )                       
134                 ),
135         'documents' => array(
136             'order' => 25,
137             'module' => 'Documents',
138             'subpanel_name' => 'default',
139             'sort_order' => 'asc',
140             'sort_by' => 'id',
141             'title_key' => 'LBL_DOCUMENTS_SUBPANEL_TITLE',
142             'get_subpanel_data' => 'documents',
143             'top_buttons' => 
144             array (
145                 0 => 
146                 array (
147                     'widget_class' => 'SubPanelTopButtonQuickCreate',
148                     ),
149                 1 => 
150                 array (
151                     'widget_class' => 'SubPanelTopSelectButton',
152                     'mode' => 'MultiSelect',
153                     ),
154                 ),
155         ),
156         'accounts' => array(
157                         'order' => 40,
158                         'module' => 'Accounts',
159                         'sort_order' => 'asc',
160                         'sort_by' => 'name',
161                         'subpanel_name' => 'default',
162                         'get_subpanel_data' => 'accounts',
163                         'add_subpanel_data' => 'account_id',
164                         'title_key' => 'LBL_ACCOUNTS_SUBPANEL_TITLE',
165             'top_buttons' => array(
166                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
167                 array('widget_class' => 'SubPanelTopSelectButton', 'mode'=>'MultiSelect')
168             ),
169                 ),
170         'cases' => array(
171                         'order' => 50,
172                         'module' => 'Cases',
173                         'sort_order' => 'desc',
174                         'sort_by' => 'case_number',
175                         'subpanel_name' => 'default',
176                         'get_subpanel_data' => 'cases',
177                         'add_subpanel_data' => 'case_id',
178                         'title_key' => 'LBL_CASES_SUBPANEL_TITLE',
179             'top_buttons' => array(
180                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
181                 array('widget_class' => 'SubPanelTopSelectButton', 'mode'=>'MultiSelect'),
182             ),                          
183                 ),
184                 'project' => array(
185                         'order' => 60,
186                         'sort_order' => 'asc',
187                         'sort_by' => 'name',
188                         'module' => 'Project',
189                         'subpanel_name' => 'default',
190                         'get_subpanel_data' => 'project',
191                         'add_subpanel_data' => 'project_id',
192                         'title_key' => 'LBL_PROJECTS_SUBPANEL_TITLE',
193                         'top_buttons' => array(
194                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
195                 array('widget_class' => 'SubPanelTopSelectButton'),
196             ),
197         ),
198         ),
199 );
200 ?>