forked from SuiteCRM/SuiteCRM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickSearchDefaults.php
More file actions
executable file
·260 lines (233 loc) · 11.8 KB
/
Copy pathQuickSearchDefaults.php
File metadata and controls
executable file
·260 lines (233 loc) · 11.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<?php
if (!defined('sugarEntry') || !sugarEntry) {
die('Not A Valid Entry Point');
}
/**
*
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2013 SugarCRM Inc.
*
* SuiteCRM is an extension to SugarCRM Community Edition developed by SalesAgility Ltd.
* Copyright (C) 2011 - 2018 SalesAgility Ltd.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address [email protected].
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo and "Supercharged by SuiteCRM" logo. If the display of the logos is not
* reasonably feasible for technical reasons, the Appropriate Legal Notices must
* display the words "Powered by SugarCRM" and "Supercharged by SuiteCRM".
*/
/**
* QuickSearchDefaults class, outputs default values for setting up quicksearch
*
* @copyright 2004-2007 SugarCRM Inc.
* @license http://www.sugarcrm.com/crm/products/sugar-professional-eula.html SugarCRM Professional End User License
* @since Class available since Release 4.0
*/
class QuickSearchDefaults
{
public $form_name = 'EditView';
/**
* getQuickSearchDefaults
*
* This is a static function to get an instance of QuickSearchDefaults object
*
* @param array $lookup Array with custom files and class names for custom QuickSearchDefaults classes, optional
* @return QuickSearchDefaults
*/
public static function getQuickSearchDefaults(array $lookup = array())
{
$lookup['custom/include/QuickSearchDefaults.php'] = 'QuickSearchDefaultsCustom';
foreach ($lookup as $file => $class) {
if (file_exists($file)) {
require_once($file);
return new $class();
}
}
return new QuickSearchDefaults();
}
public function setFormName($name = 'EditView')
{
$this->form_name = $name;
}
public function getQSParent($parent = 'Accounts')
{
global $app_strings;
$qsParent = array(
'form' => $this->form_name,
'method' => 'query',
'modules' => array($parent),
'group' => 'or',
'field_list' => array('name', 'id'),
'populate_list' => array('parent_name', 'parent_id'),
'required_list' => array('parent_id'),
'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
'order' => 'name',
'limit' => '30',
'no_match_text' => $app_strings['ERR_SQS_NO_MATCH']
);
return $qsParent;
}
public function getQSAccount($nameKey, $idKey, $billingKey = null, $shippingKey = null, $additionalFields = null)
{
global $app_strings;
$field_list = array('name', 'id');
$populate_list = array($nameKey, $idKey);
if ($billingKey != null) {
$field_list = array_merge($field_list, array('billing_address_street', 'billing_address_city',
'billing_address_state', 'billing_address_postalcode', 'billing_address_country'));
$populate_list = array_merge($populate_list, array($billingKey . "_address_street", $billingKey . "_address_city",
$billingKey . "_address_state", $billingKey . "_address_postalcode", $billingKey . "_address_country"));
} //if
if ($shippingKey != null) {
$field_list = array_merge($field_list, array('shipping_address_street', 'shipping_address_city',
'shipping_address_state', 'shipping_address_postalcode', 'shipping_address_country'));
$populate_list = array_merge($populate_list, array($shippingKey . "_address_street", $shippingKey . "_address_city",
$shippingKey . "_address_state", $shippingKey . "_address_postalcode", $shippingKey . "_address_country"));
}
if (!empty($additionalFields) && is_array($additionalFields)) {
$field_list = array_merge($field_list, array_keys($additionalFields));
$populate_list = array_merge($populate_list, array_values($additionalFields));
}
$qsParent = array(
'form' => $this->form_name,
'method' => 'query',
'modules' => array('Accounts'),
'group' => 'or',
'field_list' => $field_list,
'populate_list' => $populate_list,
'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
'required_list' => array($idKey),
'order' => 'name',
'limit' => '30',
'no_match_text' => $app_strings['ERR_SQS_NO_MATCH']
);
return $qsParent;
}
/**
* getQSContact
* This is a customized method to handle returning in JSON notation the QuickSearch formats
* for searching the Contacts module for a contact name. The method takes into account
* the locale settings (s = salutation, f = first name, l = last name) that are permissible.
* It should be noted though that any other characters present in the formatting will render
* this widget non-functional.
* @return The JSON format of a QuickSearch definition for the Contacts module
*/
public function getQSContact($name, $idName)
{
global $app_strings, $locale;
$qsContact = array('form' => $this->form_name,
'method'=>'get_contact_array',
'modules'=>array('Contacts'),
'field_list' => array('salutation', 'first_name', 'last_name', 'id'),
'populate_list' => array($name, $idName, $idName, $idName),
'required_list' => array($idName),
'group' => 'or',
'conditions' => array(
array('name'=>'first_name', 'op'=>'like_custom','end'=>'%','value'=>''),
array('name'=>'last_name', 'op'=>'like_custom','end'=>'%','value'=>'')
),
'order'=>'last_name',
'limit'=>'30',
'no_match_text'=> $app_strings['ERR_SQS_NO_MATCH']);
return $qsContact;
}
public function getQSUser($p_name = 'assigned_user_name', $p_id ='assigned_user_id')
{
global $app_strings;
$qsUser = array('form' => $this->form_name,
'method' => 'get_user_array', // special method
'field_list' => array('user_name', 'id'),
'populate_list' => array($p_name, $p_id),
'required_list' => array($p_id),
'conditions' => array(array('name'=>'user_name','op'=>'like_custom','end'=>'%','value'=>'')),
'limit' => '30','no_match_text' => $app_strings['ERR_SQS_NO_MATCH']);
return $qsUser;
}
public function getQSCampaigns($c_name = 'campaign_name', $c_id = 'campaign_id')
{
global $app_strings;
$qsCampaign = array('form' => $this->form_name,
'method' => 'query',
'modules'=> array('Campaigns'),
'group' => 'or',
'field_list' => array('name', 'id'),
'populate_list' => array($c_name, $c_id),
'conditions' => array(array('name'=>'name','op'=>'like_custom','end'=>'%','value'=>'')),
'required_list' => array('campaign_id'),
'order' => 'name',
'limit' => '30',
'no_match_text' => $app_strings['ERR_SQS_NO_MATCH']);
return $qsCampaign;
}
/**
* Loads Quick Search Object for any object (if suitable method is defined)
*
* @param string $module the given module we want to load the vardefs for
* @param string $object the given object we wish to load the vardefs for
* @param string $relationName the name of the relation between entities
* @param type $nameField the name of the field to populate
* @param type $idField the id of the field to populate
*/
public function loadQSObject($module, $object, $relationName, $nameField, $idField)
{
$result = array();
VardefManager::loadVardef($module, $object);
if (isset($GLOBALS['dictionary'][$object]['relationships']) && array_key_exists($relationName, $GLOBALS['dictionary'][$object]['relationships'])) {
if (method_exists($this, 'getQS' . $module)) {
$result = $this->{'getQS' . $module};
} elseif (method_exists($this, 'getQS' . $object)) {
$result = $this->{'getQS' . $object};
}
} else {
if (method_exists($this, 'getQS' . $module)) {
$result = $this->{'getQS' . $module}($nameField, $idField);
} elseif (method_exists($this, 'getQS' . $object)) {
$result = $this->{'getQS' . $object}($nameField, $idField);
}
}
return $result;
}
// BEGIN QuickSearch functions for 4.5.x backwards compatibility support
public function getQSScripts()
{
global $sugar_version, $sugar_config, $theme;
$qsScripts = '<script type="text/javascript">sqsWaitGif = "' . SugarThemeRegistry::current()->getImageURL('sqsWait.gif') . '";</script>
<script type="text/javascript" src="'. getJSPath('include/javascript/quicksearch.js') . '"></script>';
return $qsScripts;
}
public function getQSScriptsNoServer()
{
return $this->getQSScripts();
}
public function getQSScriptsJSONAlreadyDefined()
{
global $sugar_version, $sugar_config, $theme;
$qsScriptsJSONAlreadyDefined = '<script type="text/javascript">sqsWaitGif = "' . SugarThemeRegistry::current()->getImageURL('sqsWait.gif') . '";</script><script type="text/javascript" src="' . getJSPath('include/javascript/quicksearch.js') . '"></script>';
return $qsScriptsJSONAlreadyDefined;
}
// END QuickSearch functions for 4.5.x backwards compatibility support
}