]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SugarObjects/templates/company/metadata/listviewdefs.php
Release 6.5.0
[Github/sugarcrm.git] / include / SugarObjects / templates / company / metadata / listviewdefs.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-2012 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 $module_name = '<module_name>';
39 $OBJECT_NAME = '<OBJECT_NAME>';
40 $listViewDefs[$module_name] = array(
41         'NAME' => array(
42                 'width' => '40', 
43                 'label' => 'LBL_ACCOUNT_NAME', 
44                 'link' => true,
45         'default' => true), 
46         'BILLING_ADDRESS_CITY' => array(
47                 'width' => '10', 
48                 'label' => 'LBL_CITY',
49         'default' => true 
50                 ),
51         'PHONE_OFFICE' => array(
52                 'width' => '10', 
53                 'label' => 'LBL_PHONE',
54         'default' => true),
55     $OBJECT_NAME . '_TYPE' => array(
56         'width' => '10', 
57         'label' => 'LBL_TYPE'),
58     'INDUSTRY' => array(
59         'width' => '10', 
60         'label' => 'LBL_INDUSTRY'),
61     'ANNUAL_REVENUE' => array(
62         'width' => '10', 
63         'label' => 'LBL_ANNUAL_REVENUE'),
64     'PHONE_FAX' => array(
65         'width' => '10', 
66         'label' => 'LBL_PHONE_FAX'),
67     'BILLING_ADDRESS_STREET' => array(
68         'width' => '15', 
69         'label' => 'LBL_BILLING_ADDRESS_STREET'),
70     'BILLING_ADDRESS_STATE' => array(
71         'width' => '7', 
72         'label' => 'LBL_BILLING_ADDRESS_STATE'),
73     'BILLING_ADDRESS_POSTALCODE' => array(
74         'width' => '10', 
75         'label' => 'LBL_BILLING_ADDRESS_POSTALCODE'),
76     'BILLING_ADDRESS_COUNTRY' => array(
77         'width' => '10', 
78         'label' => 'LBL_BILLING_ADDRESS_COUNTRY'),
79     'SHIPPING_ADDRESS_STREET' => array(
80         'width' => '15', 
81         'label' => 'LBL_SHIPPING_ADDRESS_STREET'),
82     'SHIPPING_ADDRESS_CITY' => array(
83         'width' => '10', 
84         'label' => 'LBL_SHIPPING_ADDRESS_CITY'),
85     'SHIPPING_ADDRESS_STATE' => array(
86         'width' => '7', 
87         'label' => 'LBL_SHIPPING_ADDRESS_STATE'),
88     'SHIPPING_ADDRESS_POSTALCODE' => array(
89         'width' => '10', 
90         'label' => 'LBL_SHIPPING_ADDRESS_POSTALCODE'),
91     'SHIPPING_ADDRESS_COUNTRY' => array(
92         'width' => '10', 
93         'label' => 'LBL_SHIPPING_ADDRESS_COUNTRY'),
94     'PHONE_ALTERNATE' => array(
95         'width' => '10', 
96         'label' => 'LBL_PHONE_ALT'),
97     'WEBSITE' => array(
98         'width' => '10', 
99         'label' => 'LBL_WEBSITE'),
100     'OWNERSHIP' => array(
101         'width' => '10', 
102         'label' => 'LBL_OWNERSHIP'),
103     'EMPLOYEES' => array(
104         'width' => '10', 
105         'label' => 'LBL_EMPLOYEES'),
106     'TICKER_SYMBOL' => array(
107         'width' => '10', 
108         'label' => 'LBL_TICKER_SYMBOL'),
109         'EMAIL1' => array(
110                 'width' => '15%', 
111                 'label' => 'LBL_EMAIL_ADDRESS',
112                 'sortable' => false,
113                 'link' => true,
114                 'customCode' => '{$EMAIL1_LINK}{$EMAIL1}</a>',
115         'default' => true
116                 ),  
117     'ASSIGNED_USER_NAME' => array(
118         'width' => '2', 
119         'label' => 'LBL_ASSIGNED_USER',
120         'module' => 'Employees',
121         'id' => 'ASSIGNED_USER_ID',
122         'default' => true),
123 );
124 ?>