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