]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/modules/UpgradeWizard/SugarMerge/od_metadata_files/554/modules/Opportunities/metadata/listviewdefs.php
Release 6.3.1
[Github/sugarcrm.git] / tests / modules / UpgradeWizard / SugarMerge / od_metadata_files / 554 / modules / Opportunities / metadata / listviewdefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition 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 $listViewDefs['Opportunities'] = array(
38         'NAME' => array(
39                 'width'   => '30',  
40                 'label'   => 'LBL_LIST_OPPORTUNITY_NAME', 
41                 'link'    => true,
42         'default' => true),
43         'ACCOUNT_NAME' => array(
44                 'width'   => '20', 
45                 'label'   => 'LBL_LIST_ACCOUNT_NAME', 
46                 'id'      => 'ACCOUNT_ID',
47         'module'  => 'Accounts',
48                 'link'    => true,
49         'default' => true,
50         'sortable'=> true,
51         'ACLTag' => 'ACCOUNT',
52         'contextMenu' => array('objectType' => 'sugarAccount', 
53                                'metaData' => array('return_module' => 'Contacts', 
54                                                    'return_action' => 'ListView', 
55                                                    'module' => 'Accounts',
56                                                    'return_action' => 'ListView', 
57                                                    'parent_id' => '{$ACCOUNT_ID}', 
58                                                    'parent_name' => '{$ACCOUNT_NAME}', 
59                                                    'account_id' => '{$ACCOUNT_ID}', 
60                                                    'account_name' => '{$ACCOUNT_NAME}',
61                                                    ),
62                               ),
63         'related_fields' => array('account_id')),
64         'SALES_STAGE' => array(
65                 'width'   => '10',  
66                 'label'   => 'LBL_LIST_SALES_STAGE',
67         'default' => true), 
68         'AMOUNT_USDOLLAR' => array(
69                 'width'   => '10', 
70                 'label'   => 'LBL_LIST_AMOUNT',
71         'align'   => 'right',
72         'default' => true,
73         'currency_format' => true,
74         ),  
75     'OPPORTUNITY_TYPE' => array(
76         'width' => '15', 
77         'label' => 'LBL_TYPE'),
78     'LEAD_SOURCE' => array(
79         'width' => '15', 
80         'label' => 'LBL_LEAD_SOURCE'),
81     'NEXT_STEP' => array(
82         'width' => '10', 
83         'label' => 'LBL_NEXT_STEP'),
84     'PROBABILITY' => array(
85         'width' => '10', 
86         'label' => 'LBL_PROBABILITY'),
87         'DATE_CLOSED' => array(
88                 'width' => '10', 
89                 'label' => 'LBL_LIST_DATE_CLOSED',
90         'default' => true),
91     'DATE_ENTERED' => array(
92         'width' => '10', 
93         'label' => 'LBL_DATE_ENTERED'),
94     'CREATED_BY_NAME' => array(
95         'width' => '10', 
96         'label' => 'LBL_CREATED'),
97         'TEAM_NAME' => array(
98                 'width' => '5', 
99                 'label' => 'LBL_LIST_TEAM',
100         'default' => false),
101         'ASSIGNED_USER_NAME' => array(
102                 'width' => '5', 
103                 'label' => 'LBL_LIST_ASSIGNED_USER',
104         'default' => true),
105     'MODIFIED_BY_NAME' => array(
106         'width' => '5', 
107         'label' => 'LBL_MODIFIED')
108 );
109
110 ?>