]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Cases/metadata/subpaneldefs.php
Release 6.2.0
[Github/sugarcrm.git] / modules / Cases / 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-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['Cases'] = 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' => 'SubPanelTopCreateAccountNameButton'),
55                                 array(
56                                         'widget_class' => 'SubPanelTopSelectButton',
57                                         'popup_module' => 'Cases',
58                                         'mode' => 'MultiSelect', 
59                                         'initial_filter_fields' => array('account_id' => 'account_id', 'account_name' => 'account_name'),
60                                 ),
61                         ),
62                 ),
63                 'activities' => array(
64                         'order' => 10,
65                         'sort_order' => 'desc',
66                         'sort_by' => 'date_start',
67                         'title_key' => 'LBL_ACTIVITIES_SUBPANEL_TITLE',
68                         'type' => 'collection',
69                         'subpanel_name' => 'activities',   //this values is not associated with a physical file.
70                         'module'=>'Activities',
71
72                         'top_buttons' => array(
73                                 array('widget_class' => 'SubPanelTopCreateTaskButton'),
74                                 array('widget_class' => 'SubPanelTopScheduleMeetingButton'),
75                                 array('widget_class' => 'SubPanelTopScheduleCallButton'),
76                                 array('widget_class' => 'SubPanelTopComposeEmailButton'),
77                         ),
78
79                         'collection_list' => array(     
80                                 'meetings' => array(
81                                         'module' => 'Meetings',
82                                         'subpanel_name' => 'ForActivities',
83                                         'get_subpanel_data' => 'meetings',
84                                 ),
85                                 'tasks' => array(
86                                         'module' => 'Tasks',
87                                         'subpanel_name' => 'ForActivities',
88                                         'get_subpanel_data' => 'tasks',
89                                 ),
90                                 'calls' => array(
91                                         'module' => 'Calls',
92                                         'subpanel_name' => 'ForActivities',
93                                         'get_subpanel_data' => 'calls',
94                                 ),      
95                         )                       
96                 ),
97                 'history' => array(
98                         'order' => 20,
99                         'sort_order' => 'desc',
100                         'sort_by' => 'date_entered',
101                         'title_key' => 'LBL_HISTORY_SUBPANEL_TITLE',
102                         'type' => 'collection',
103                         'subpanel_name' => 'history',   //this values is not associated with a physical file.
104                         'module'=>'History',
105
106                         'top_buttons' => array(
107                         array('widget_class' => 'SubPanelTopCreateNoteButton'),
108                         array('widget_class' => 'SubPanelTopArchiveEmailButton'),
109             array('widget_class' => 'SubPanelTopSummaryButton'),
110                         ),
111
112                         'collection_list' => array(     
113                                 'meetings' => array(
114                                         'module' => 'Meetings',
115                                         'subpanel_name' => 'ForHistory',
116                                         'get_subpanel_data' => 'meetings',
117                                 ),
118                                 'tasks' => array(
119                                         'module' => 'Tasks',
120                                         'subpanel_name' => 'ForHistory',
121                                         'get_subpanel_data' => 'tasks',
122                                 ),
123                                 'calls' => array(
124                                         'module' => 'Calls',
125                                         'subpanel_name' => 'ForHistory',
126                                         'get_subpanel_data' => 'calls',
127                                 ),      
128                                 'notes' => array(
129                                         'module' => 'Notes',
130                                         'subpanel_name' => 'ForHistory',
131                                         'get_subpanel_data' => 'notes',
132                                 ),      
133                                 'emails' => array(
134                                         'module' => 'Emails',
135                                         'subpanel_name' => 'ForHistory',
136                                         'get_subpanel_data' => 'emails',
137                                 ),      
138                         )                       
139                 ),
140         'documents' => array(
141             'order' => 25,
142             'module' => 'Documents',
143             'subpanel_name' => 'default',
144             'sort_order' => 'asc',
145             'sort_by' => 'id',
146             'title_key' => 'LBL_DOCUMENTS_SUBPANEL_TITLE',
147             'get_subpanel_data' => 'documents',
148             'top_buttons' => 
149             array (
150                 0 => 
151                 array (
152                     'widget_class' => 'SubPanelTopButtonQuickCreate',
153                     ),
154                 1 => 
155                 array (
156                     'widget_class' => 'SubPanelTopSelectButton',
157                     'mode' => 'MultiSelect',
158                     ),
159                 ),
160         ),
161                 'bugs' => array(
162                         'order' => 40,
163                         'module' => 'Bugs',
164                         'sort_order' => 'desc',
165                         'sort_by' => 'bug_number',
166                         'subpanel_name' => 'default',
167                         'get_subpanel_data' => 'bugs',
168                         'add_subpanel_data' => 'bug_id',
169                         'title_key' => 'LBL_BUGS_SUBPANEL_TITLE',
170             'top_buttons' => array(
171                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
172                                 array(
173                                         'widget_class' => 'SubPanelTopSelectButton',
174                                         'popup_module' => 'Bugs',
175                                         'mode' => 'MultiSelect', 
176                                 ),                
177             ),                  
178                 ),      
179                 'project' => array(
180                         'order' => 110,
181                         'sort_order' => 'asc',
182                         'sort_by' => 'name',
183                         'module' => 'Project',
184                         'subpanel_name' => 'default',
185                         'get_subpanel_data' => 'project',
186                         'add_subpanel_data' => 'project_id',
187                         'title_key' => 'LBL_PROJECTS_SUBPANEL_TITLE',
188                         'top_buttons' => array(
189                                 array('widget_class' => 'SubPanelTopButtonQuickCreate'),
190                 array('widget_class' => 'SubPanelTopSelectButton'),
191                         ),              
192                 ),
193         ),
194 );
195 ?>