]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Contacts/metadata/searchdefs.php
Release 6.5.0
[Github/sugarcrm.git] / modules / Contacts / metadata / searchdefs.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2012 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 $searchdefs['Contacts'] = array(
38                   'templateMeta' => array(
39                                                         'maxColumns' => '3', 
40                                                         'maxColumnsBasic' => '4',
41                             'widths' => array('label' => '10', 'field' => '30'), 
42                            ),
43                   'layout' => array (
44                     'basic_search' => 
45                     array (
46                       array('name'=>'search_name','label' =>'LBL_NAME', 'type' => 'name'),
47                       array (
48                         'name' => 'current_user_only',
49                         'label' => 'LBL_CURRENT_USER_FILTER',
50                         'type' => 'bool',
51                       ),
52                     ),
53                     'advanced_search' => 
54                     array (
55                       'first_name' => 
56                       array (
57                         'name' => 'first_name',
58                         'default' => true,
59                         'width' => '10%',
60                       ),
61                       'email' => 
62                       array (
63                         'name' => 'email',
64                         'label' => 'LBL_ANY_EMAIL',
65                         'type' => 'name',
66                         'default' => true,
67                         'width' => '10%',
68                       ),
69                       'phone' => 
70                       array (
71                         'name' => 'phone',
72                         'label' => 'LBL_ANY_PHONE',
73                         'type' => 'name',
74                         'default' => true,
75                         'width' => '10%',
76                       ),
77                       'last_name' => 
78                       array (
79                         'name' => 'last_name',
80                         'default' => true,
81                         'width' => '10%',
82                       ),
83                       'address_street' => 
84                       array (
85                         'name' => 'address_street',
86                         'label' => 'LBL_ANY_ADDRESS',
87                         'type' => 'name',
88                         'default' => true,
89                         'width' => '10%',
90                       ),
91                       'address_city' => 
92                       array (
93                         'name' => 'address_city',
94                         'label' => 'LBL_CITY',
95                         'type' => 'name',
96                         'default' => true,
97                         'width' => '10%',
98                       ),
99                       'account_name' => 
100                       array (
101                         'name' => 'account_name',
102                         'default' => true,
103                         'width' => '10%',
104                       ),
105                       'address_state' => 
106                       array (
107                         'name' => 'address_state',
108                         'label' => 'LBL_STATE',
109                         'type' => 'name',
110                         'default' => true,
111                         'width' => '10%',
112                       ),
113                       'address_postalcode' => 
114                       array (
115                         'name' => 'address_postalcode',
116                         'label' => 'LBL_POSTAL_CODE',
117                         'type' => 'name',
118                         'default' => true,
119                         'width' => '10%',
120                       ),
121                       'assigned_user_id' => 
122                       array (
123                         'name' => 'assigned_user_id',
124                         'type' => 'enum',
125                         'label' => 'LBL_ASSIGNED_TO',
126                         'function' => 
127                         array (
128                           'name' => 'get_user_array',
129                           'params' => 
130                           array (
131                             0 => false,
132                           ),
133                         ),
134                         'default' => true,
135                         'width' => '10%',
136                       ),
137                       'primary_address_country' => 
138                       array (
139                         'name' => 'primary_address_country',
140                         'label' => 'LBL_COUNTRY',
141                         'type' => 'name',
142                         'options' => 'countries_dom',
143                         'default' => true,
144                         'width' => '10%',
145                       ),
146                       'lead_source' => 
147                       array (
148                         'name' => 'lead_source',
149                         'default' => true,
150                         'width' => '10%',
151                       ),
152                       
153                     ),
154                   )
155 );
156 ?>