]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/UpgradeWizard/SugarMerge/siupgrade_metadata_files/551/modules/Contacts/metadata/detailviewdefs.php
Added unit tests.
[Github/sugarcrm.git] / tests / modules / UpgradeWizard / SugarMerge / siupgrade_metadata_files / 551 / modules / Contacts / metadata / detailviewdefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM 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 $viewdefs['Contacts']['DetailView'] = array(
38 'templateMeta' => array('form' => array('buttons'=>array('EDIT', 'DUPLICATE', 'DELETE', 'FIND_DUPLICATES',
39                                                          array('customCode'=>'<input title="{$APP.LBL_MANAGE_SUBSCRIPTIONS}" class="button" onclick="this.form.return_module.value=\'Contacts\'; this.form.return_action.value=\'DetailView\'; this.form.return_id.value=\'{$fields.id.value}\'; this.form.action.value=\'Subscriptions\'; this.form.module.value=\'Campaigns\'; this.form.module_tab.value=\'Contacts\';" type="submit" name="Manage Subscriptions" value="{$APP.LBL_MANAGE_SUBSCRIPTIONS}">'),
40                                                         ),
41                                        ),
42                         'maxColumns' => '2', 
43                         'widths' => array(
44                                         array('label' => '10', 'field' => '30'), 
45                                         array('label' => '10', 'field' => '30')
46                                         ),
47                         'includes'=> array(
48                                                 array('file'=>'modules/Leads/Lead.js'),
49                                                         ),                              
50                         ),
51 'panels' =>array (
52    'default'=>array(
53       array (
54             array (
55               'name' => 'full_name',
56               'label' => 'LBL_NAME',
57             ),
58         
59             array (
60               'name' => 'phone_work',
61               'label' => 'LBL_OFFICE_PHONE',
62             ),
63           ),
64           
65           array (
66             'account_name',
67             
68             array (
69               'name' => 'phone_mobile',
70               'label' => 'LBL_MOBILE_PHONE',
71             ),
72           ),
73           
74           array (
75             'lead_source',
76             
77             array (
78               'name' => 'phone_home',
79               'label' => 'LBL_HOME_PHONE',
80             ),
81           ),
82           
83           array (
84             
85             array (
86               'name' => 'campaign_name',
87               'label' => 'LBL_CAMPAIGN',
88             ),
89             
90             array (
91               'name' => 'phone_other',
92               'label' => 'LBL_OTHER_PHONE',
93             ),
94           ),
95           
96           array (
97             'title',
98             array (
99               'name' => 'phone_fax',
100               'label' => 'LBL_FAX_PHONE',
101             ),
102           ),
103           
104           array (
105             'department',
106             'birthdate',
107           ),
108           
109           array (
110             'report_to_name',
111             'assistant',
112           ),
113           
114           array (
115             'sync_contact',
116             'assistant_phone',
117           ),
118           
119           array (
120             'do_not_call',
121             '',
122           ),
123           
124           array (
125             
126             array (
127               'name' => 'date_modified',
128               'customCode' => '{$fields.date_modified.value} {$APP.LBL_BY} {$fields.modified_by_name.value}',
129               'label' => 'LBL_DATE_MODIFIED',
130             ),
131           ),
132           
133           array (
134             'assigned_user_name',
135             
136             array (
137               'name' => 'date_entered',
138               'customCode' => '{$fields.date_entered.value} {$APP.LBL_BY} {$fields.created_by_name.value}',
139               'label' => 'LBL_DATE_ENTERED',
140             ),
141           ),
142           
143           array (
144               array (
145                       'name' => 'primary_address_street',
146                       'label'=> 'LBL_PRIMARY_ADDRESS',
147                       'type' => 'address',
148                       'displayParams'=>array('key'=>'primary'),
149               ),
150               
151               array (
152                       'name' => 'alt_address_street',
153                       'label'=> 'LBL_ALTERNATE_ADDRESS',
154                       'type' => 'address',
155                       'displayParams'=>array('key'=>'alt'),      
156               ),
157           ),
158           array (
159             'description',
160           ),
161           
162           array (
163             'email1',
164           ),
165    ),
166 )
167
168
169    
170 );
171 ?>