]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Bugs/metadata/subpaneldefs.php
Release 6.1.4
[Github/sugarcrm.git] / modules / Bugs / metadata / subpaneldefs.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 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         'accounts' => array(
136                         'order' => 40,
137                         'module' => 'Accounts',
138                         'sort_order' => 'asc',
139                         'sort_by' => 'name',
140                         'subpanel_name' => 'default',
141                         'get_subpanel_data' => 'accounts',
142                         'add_subpanel_data' => 'account_id',
143                         'title_key' => 'LBL_ACCOUNTS_SUBPANEL_TITLE',
144             'top_buttons' => array(
145                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
146                 array('widget_class' => 'SubPanelTopSelectButton', 'mode'=>'MultiSelect')
147             ),
148                 ),
149         'cases' => array(
150                         'order' => 50,
151                         'module' => 'Cases',
152                         'sort_order' => 'desc',
153                         'sort_by' => 'case_number',
154                         'subpanel_name' => 'default',
155                         'get_subpanel_data' => 'cases',
156                         'add_subpanel_data' => 'case_id',
157                         'title_key' => 'LBL_CASES_SUBPANEL_TITLE',
158             'top_buttons' => array(
159                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
160                 array('widget_class' => 'SubPanelTopSelectButton', 'mode'=>'MultiSelect'),
161             ),                          
162                 ),
163         ),
164 );
165 ?>