]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/SearchForm/SearchForm2.php
Release 6.4.1
[Github/sugarcrm.git] / include / SearchForm / SearchForm2.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
38 require_once('include/tabs.php');
39 require_once('include/ListView/ListViewSmarty.php');
40
41 require_once('include/TemplateHandler/TemplateHandler.php');
42 require_once('include/EditView/EditView2.php');
43
44
45  class SearchForm extends EditView{
46         var $seed = null;
47         var $module = '';
48         var $action = 'index';
49         var $searchdefs = array();
50         var $listViewDefs = array();
51         var $lv;
52         var $th;
53     var $tpl;
54     var $view = 'SearchForm';
55     var $displayView = 'basic_search';
56     var $formData;
57     var $fieldDefs;
58     var $customFieldDefs;
59     var $tabs;
60     var $parsedView = 'basic';
61     //may remove
62     var $searchFields;
63     var $displaySavedSearch = true;
64     //show the advanced tab
65     var $showAdvanced = true;
66     //show the basic tab
67     var $showBasic = true;
68     //array of custom tab to show declare in searchdefs (no custom tab if false)
69     var $showCustom = false;
70     // nb of tab to show
71     var $nbTabs = 0;
72     // hide saved searches drop and down near the search button
73     var $showSavedSearchesOptions = true;
74
75     var $displayType = 'searchView';
76
77         function SearchForm($seed, $module, $action = 'index'){
78                 $this->th = new TemplateHandler();
79                 $this->th->loadSmarty();
80                 $this->seed = $seed;
81                 $this->module = $module;
82                 $this->action = $action;
83         $this->tabs = array(array('title'  => $GLOBALS['app_strings']['LNK_BASIC_SEARCH'],
84                             'link'   => $module . '|basic_search',
85                             'key'    => $module . '|basic_search',
86                             'name'   => 'basic',
87                             'displayDiv'   => ''),
88                       array('title'  => $GLOBALS['app_strings']['LNK_ADVANCED_SEARCH'],
89                             'link'   => $module . '|advanced_search',
90                             'key'    => $module . '|advanced_search',
91                             'name'   => 'advanced',
92                             'displayDiv'   => 'display:none'),
93                        );
94         $this->searchColumns = array () ;
95         }
96
97         function setup($searchdefs, $searchFields = array(), $tpl, $displayView = 'basic_search', $listViewDefs = array()){
98                 $this->searchdefs =  $searchdefs[$this->module];
99                 $this->tpl = $tpl;
100                 //used by advanced search
101                 $this->listViewDefs = $listViewDefs;
102                 $this->displayView = $displayView;
103                 $this->view = $this->view.'_'.$displayView;
104                 $tokens = explode('_', $this->displayView);
105                 $this->parsedView = $tokens[0];
106                 if($this->displayView != 'saved_views'){
107                         $this->_build_field_defs();
108                 }
109
110         $this->searchFields = $searchFields[$this->module];
111
112         // Setub the tab array
113         $this->tabs = array();
114         if($this->showBasic){
115             $this->nbTabs++;
116             $this->tabs[]=array('title'  => $GLOBALS['app_strings']['LNK_BASIC_SEARCH'],
117                                 'link'   => $this->module . '|basic_search',
118                                 'key'    => $this->module . '|basic_search',
119                                 'name'   => 'basic',
120                                 'displayDiv' => '');
121         }
122         if($this->showAdvanced){
123             $this->nbTabs++;
124             $this->tabs[]=array('title'  => $GLOBALS['app_strings']['LNK_ADVANCED_SEARCH'],
125                                 'link'   => $this->module . '|advanced_search',
126                                 'key'    => $this->module . '|advanced_search',
127                                 'name'   => 'advanced',
128                                 'displayDiv' => 'display:none');
129         }
130         if(isset($this->showCustom) && is_array($this->showCustom)){
131             foreach($this->showCustom as $v){
132                 $this->nbTabs++;
133                 $this->tabs[]=array('title'  => $GLOBALS['app_strings']["LNK_" . strtoupper($v)],
134                     'link'   => $this->module . '|' . $v,
135                     'key'    => $this->module . '|' . $v,
136                     'name'   => str_replace('_search','',$v),
137                     'displayDiv' => 'display:none',);
138             }
139         }
140         }
141
142         function display($header = true){
143         global $theme, $timedate, $current_user;
144                 $header_txt = '';
145                 $footer_txt = '';
146                 $return_txt = '';
147                 $this->th->ss->assign('module', $this->module);
148                 $this->th->ss->assign('action', $this->action);
149                 $this->th->ss->assign('displayView', $this->displayView);
150                 $this->th->ss->assign('APP', $GLOBALS['app_strings']);
151                 //Show the tabs only if there is more than one
152                 if($this->nbTabs>1){
153                     $this->th->ss->assign('TABS', $this->_displayTabs($this->module . '|' . $this->displayView));
154                 }
155                 $this->th->ss->assign('searchTableColumnCount',
156                     ((isset($this->searchdefs['templateMeta']['maxColumns']) ? $this->searchdefs['templateMeta']['maxColumns'] : 2) * 2 ) - 1);
157                 $this->th->ss->assign('fields', $this->fieldDefs);
158                 $this->th->ss->assign('customFields', $this->customFieldDefs);
159                 $this->th->ss->assign('formData', $this->formData);
160         $time_format = $timedate->get_user_time_format();
161         $this->th->ss->assign('TIME_FORMAT', $time_format);
162         $this->th->ss->assign('USER_DATEFORMAT', $timedate->get_user_date_format());
163         $this->th->ss->assign('CALENDAR_FDOW', $current_user->get_first_day_of_week());
164
165         $date_format = $timedate->get_cal_date_format();
166         $time_separator = ":";
167         if(preg_match('/\d+([^\d])\d+([^\d]*)/s', $time_format, $match)) {
168            $time_separator = $match[1];
169         }
170         // Create Smarty variables for the Calendar picker widget
171         $t23 = strpos($time_format, '23') !== false ? '%H' : '%I';
172         if(!isset($match[2]) || $match[2] == '') {
173           $this->th->ss->assign('CALENDAR_FORMAT', $date_format . ' ' . $t23 . $time_separator . "%M");
174         } else {
175           $pm = $match[2] == "pm" ? "%P" : "%p";
176           $this->th->ss->assign('CALENDAR_FORMAT', $date_format . ' ' . $t23 . $time_separator . "%M" . $pm);
177         }
178         $this->th->ss->assign('TIME_SEPARATOR', $time_separator);
179
180         //Show and hide the good tab form
181         foreach($this->tabs as $tabkey=>$viewtab){
182             $viewName=str_replace(array($this->module . '|','_search'),'',$viewtab['key']);
183             if(strpos($this->view,$viewName)!==false){
184                 $this->tabs[$tabkey]['displayDiv']='';
185                 //if this is advanced tab, use form with saved search sub form built in
186                 if($viewName=='advanced'){
187                     $this->tpl = 'include/SearchForm/tpls/SearchFormGenericAdvanced.tpl';
188                     if ($this->action =='ListView') {
189                         $this->th->ss->assign('DISPLAY_SEARCH_HELP', true);
190                     }
191                     $this->th->ss->assign('DISPLAY_SAVED_SEARCH', $this->displaySavedSearch);
192                     $this->th->ss->assign('SAVED_SEARCH', $this->displaySavedSearch());
193                     //this determines whether the saved search subform should be rendered open or not
194                     if(isset($_REQUEST['showSSDIV']) && $_REQUEST['showSSDIV']=='yes'){
195                         $this->th->ss->assign('SHOWSSDIV', 'yes');
196                         $this->th->ss->assign('DISPLAYSS', '');
197                     }else{
198                         $this->th->ss->assign('SHOWSSDIV', 'no');
199                         $this->th->ss->assign('DISPLAYSS', 'display:none');
200                     }
201                 }
202             }else{
203                 $this->tabs[$tabkey]['displayDiv']='display:none';
204             }
205
206         }
207
208         $this->th->ss->assign('TAB_ARRAY', $this->tabs);
209
210         $totalWidth = 0;
211         if ( isset($this->searchdefs['templateMeta']['widths'])
212                 && isset($this->searchdefs['templateMeta']['maxColumns'])) {
213             $totalWidth = ( $this->searchdefs['templateMeta']['widths']['label'] +
214                                 $this->searchdefs['templateMeta']['widths']['field'] ) *
215                                 $this->searchdefs['templateMeta']['maxColumns'];
216             // redo the widths in case they are too big
217             if ( $totalWidth > 100 ) {
218                 $resize = 100 / $totalWidth;
219                 $this->searchdefs['templateMeta']['widths']['label'] =
220                     $this->searchdefs['templateMeta']['widths']['label'] * $resize;
221                 $this->searchdefs['templateMeta']['widths']['field'] =
222                     $this->searchdefs['templateMeta']['widths']['field'] * $resize;
223             }
224         }
225         $this->th->ss->assign('templateMeta', $this->searchdefs['templateMeta']);
226         $this->th->ss->assign('HAS_ADVANCED_SEARCH', !empty($this->searchdefs['layout']['advanced_search']));
227         $this->th->ss->assign('displayType', $this->displayType);
228         // return the form of the shown tab only
229         if($this->showSavedSearchesOptions){
230             $this->th->ss->assign('SAVED_SEARCHES_OPTIONS', $this->displaySavedSearchSelect());
231         }
232         if ($this->module == 'Documents'){
233             $this->th->ss->assign('DOCUMENTS_MODULE', true);
234         }
235         $return_txt = $this->th->displayTemplate($this->seed->module_dir, 'SearchForm_'.$this->parsedView, $this->tpl);
236         if($header){
237                         $this->th->ss->assign('return_txt', $return_txt);
238                         $header_txt = $this->th->displayTemplate($this->seed->module_dir, 'SearchFormHeader', 'include/SearchForm/tpls/header.tpl');
239             //pass in info to render the select dropdown below the form
240             $footer_txt = $this->th->displayTemplate($this->seed->module_dir, 'SearchFormFooter', 'include/SearchForm/tpls/footer.tpl');
241                         $return_txt = $header_txt.$footer_txt;
242                 }
243                 return $return_txt;
244         }
245
246   function displaySavedSearch(){
247         $savedSearch = new SavedSearch($this->listViewDefs[$this->module], $this->lv->data['pageData']['ordering']['orderBy'], $this->lv->data['pageData']['ordering']['sortOrder']);
248         return $savedSearch->getForm($this->module, false);
249     }
250
251
252   function displaySavedSearchSelect(){
253         $savedSearch = new SavedSearch($this->listViewDefs[$this->module], $this->lv->data['pageData']['ordering']['orderBy'], $this->lv->data['pageData']['ordering']['sortOrder']);
254         return $savedSearch->getSelect($this->module);
255     }
256
257
258
259         /**
260      * displays the tabs (top of the search form)
261      *
262      * @param string $currentKey key in $this->tabs to show as the current tab
263      *
264      * @return string html
265      */
266     function _displayTabs($currentKey)
267     {
268         if(isset($_REQUEST['saved_search_select']) && $_REQUEST['saved_search_select']!='_none') {
269             $saved_search=loadBean('SavedSearch');
270             $saved_search->retrieveSavedSearch($_REQUEST['saved_search_select']);
271         }
272
273         $str = '<script>';
274         if(!empty($_REQUEST['displayColumns']))
275             $str .= 'SUGAR.savedViews.displayColumns = "' . $_REQUEST['displayColumns'] . '";';
276         elseif(isset($saved_search->contents['displayColumns']) && !empty($saved_search->contents['displayColumns']))
277             $str .= 'SUGAR.savedViews.displayColumns = "' . $saved_search->contents['displayColumns'] . '";';
278         if(!empty($_REQUEST['hideTabs']))
279             $str .= 'SUGAR.savedViews.hideTabs = "' . $_REQUEST['hideTabs'] . '";';
280         elseif(isset($saved_search->contents['hideTabs']) && !empty($saved_search->contents['hideTabs']))
281             $str .= 'SUGAR.savedViews.hideTabs = "' . $saved_search->contents['hideTabs'] . '";';
282         if(!empty($_REQUEST['orderBy']))
283             $str .= 'SUGAR.savedViews.selectedOrderBy = "' . $_REQUEST['orderBy'] . '";';
284         elseif(isset($saved_search->contents['orderBy']) && !empty($saved_search->contents['orderBy']))
285             $str .= 'SUGAR.savedViews.selectedOrderBy = "' . $saved_search->contents['orderBy'] . '";';
286         if(!empty($_REQUEST['sortOrder']))
287             $str .= 'SUGAR.savedViews.selectedSortOrder = "' . $_REQUEST['sortOrder'] . '";';
288         elseif(isset($saved_search->contents['sortOrder']) && !empty($saved_search->contents['sortOrder']))
289             $str .= 'SUGAR.savedViews.selectedSortOrder = "' . $saved_search->contents['sortOrder'] . '";';
290
291         $str .= '</script>';
292
293         return $str;
294     }
295
296         /*
297          * Generate the data
298          */
299         function _build_field_defs(){
300                 $this->formData = array();
301                 $this->fieldDefs = array();
302                 foreach($this->searchdefs['layout'][$this->displayView] as $data){
303                         if(is_array($data)){
304                                 //Fields may be listed but disabled so that when they are enabled, they have the correct custom display data.
305                                 if (isset($data['enabled']) && $data['enabled'] == false)
306                                         continue;
307                                 $data['name'] = $data['name'].'_'.$this->parsedView;
308                                 $this->formData[] = array('field' => $data);
309                                 $this->fieldDefs[$data['name']]= $data;
310                         } else {
311                                 $this->formData[] = array('field' => array('name'=>$data.'_'.$this->parsedView));
312                         }
313                 }
314
315                 if($this->seed){
316                         $this->seed->fill_in_additional_detail_fields();
317                         // hack to make the employee status field for the Users/Employees module display correctly
318                         if($this->seed->object_name == 'Employee' || $this->seed->object_name == 'User'){
319                 $this->seed->field_defs['employee_status']['type'] = 'enum';
320                 $this->seed->field_defs['employee_status']['massupdate'] = true;
321                 $this->seed->field_defs['employee_status']['options'] = 'employee_status_dom';
322                 unset($this->seed->field_defs['employee_status']['function']);
323             }
324
325                 foreach($this->seed->toArray() as $name => $value) {
326                     $fvName = $name.'_'.$this->parsedView;
327                 if(!empty($this->fieldDefs[$fvName]))
328                         $this->fieldDefs[$fvName] = array_merge($this->seed->field_defs[$name], $this->fieldDefs[$fvName]);
329                     else{
330                         $this->fieldDefs[$fvName] = $this->seed->field_defs[$name];
331                         $this->fieldDefs[$fvName]['name'] = $this->fieldDefs[$fvName]['name'].'_'.$this->parsedView;
332                     }
333
334                     if(isset($this->fieldDefs[$fvName]['type']) && $this->fieldDefs[$fvName]['type'] == 'relate') {
335                         if(isset($this->fieldDefs[$fvName]['id_name'])) {
336                            $this->fieldDefs[$fvName]['id_name'] .= '_'.$this->parsedView;
337                         }
338                     }
339
340                     if(isset($this->fieldDefs[$fvName]['options']) && isset($GLOBALS['app_list_strings'][$this->fieldDefs[$fvName]['options']]))
341                 {
342                         // fill in enums
343                     $this->fieldDefs[$fvName]['options'] = $GLOBALS['app_list_strings'][$this->fieldDefs[$fvName]['options']];
344                     //Hack to add blanks for parent types on search views
345                     if ($this->fieldDefs[$fvName]['type'] == "parent_type" || $this->fieldDefs[$fvName]['type'] == "parent")
346                     {
347                         $this->fieldDefs[$fvName]['options'] = array_merge(array(""=>""), $this->fieldDefs[$fvName]['options']);
348                     }
349                     }
350
351                     if(isset($this->fieldDefs[$fvName]['function'])) {
352
353                         $this->fieldDefs[$fvName]['type']='multienum';
354
355                                 if(is_array($this->fieldDefs[$fvName]['function'])) {
356                                    $this->fieldDefs[$fvName]['function']['preserveFunctionValue']=true;
357                                 }
358
359                                 $function = $this->fieldDefs[$fvName]['function'];
360
361                                 if(is_array($function) && isset($function['name'])){
362                                         $function_name = $this->fieldDefs[$fvName]['function']['name'];
363                                 }else{
364                                         $function_name = $this->fieldDefs[$fvName]['function'];
365                                 }
366
367                                         if(!empty($this->fieldDefs[$fvName]['function']['returns']) && $this->fieldDefs[$fvName]['function']['returns'] == 'html'){
368                                                 if(!empty($this->fieldDefs[$fvName]['function']['include'])){
369                                                                 require_once($this->fieldDefs[$fvName]['function']['include']);
370                                                 }
371                                                 $value = $function_name($this->seed, $name, $value, $this->view);
372                                                 $this->fieldDefs[$fvName]['value'] = $value;
373                                         }else{
374                                                 if(!isset($function['params']) || !is_array($function['params'])) {
375                                                         $this->fieldDefs[$fvName]['options'] = $function_name($this->seed, $name, $value, $this->view);
376                                                 } else {
377                                                         $this->fieldDefs[$fvName]['options'] = call_user_func_array($function_name, $function['params']);
378                                                 }
379                                         }
380                         }
381                         if(isset($this->fieldDefs[$name]['type']) && $this->fieldDefs[$fvName]['type'] == 'function'
382                        && isset($this->fieldDefs[$fvName]['function_name']))
383                 {
384                                 $value = $this->callFunction($this->fieldDefs[$fvName]);
385                                 $this->fieldDefs[$fvName]['value'] = $value;
386                         }
387
388                     $this->fieldDefs[$name]['value'] = $value;
389
390
391                     if((!empty($_REQUEST[$fvName]) || (isset($_REQUEST[$fvName]) && $_REQUEST[$fvName] == '0'))
392                 && empty($this->fieldDefs[$fvName]['function']['preserveFunctionValue'])) {
393                         $value = $_REQUEST[$fvName];
394                         $this->fieldDefs[$fvName]['value'] = $value;
395                     }
396
397                 } //foreach
398
399
400                 }
401
402         }
403
404             /**
405      * Populate the searchFields from an array
406      *
407      * @param array $array array to search through
408      * @param string $switchVar variable to use in switch statement
409      * @param bool $addAllBeanFields true to process at all bean fields
410      */
411     function populateFromArray(&$array, $switchVar = null, $addAllBeanFields = true) {
412
413        if((!empty($array['searchFormTab']) || !empty($switchVar)) && !empty($this->searchFields)) {
414                         $arrayKeys = array_keys($array);
415             $searchFieldsKeys = array_keys($this->searchFields);
416             if(empty($switchVar)) $switchVar = $array['searchFormTab'];
417             //name of  the search tab
418             $SearchName=str_replace('_search', '', $switchVar);
419             if($switchVar=='saved_views'){
420                 foreach($this->searchFields as $name => $params) {
421                     foreach($this->tabs as $tabName){
422                         if(!empty($array[$name . '_' . $tabName['name']])) {
423                              $this->searchFields[$name]['value'] = $array[$name . '_' . $tabName['name']];
424                              if(empty($this->fieldDefs[$name . '_' . $tabName['name']]['value'])) $this->fieldDefs[$name . '_' . $tabName['name']]['value'] = $array[$name . '_' . $tabName['name']];
425                         }
426                     }
427                 }
428                 if($addAllBeanFields) {
429                     foreach($this->seed->field_name_map as $key => $params) {
430                         if(!in_array($key, $searchFieldsKeys)) {
431                             foreach($this->tabs->name as $tabName){
432                                 if(in_array($key . '_' . $tabName['name'], $arrayKeys) ) {
433                                                                         $this->searchFields[$key] = array('query_type' => 'default',
434                                                                       'value'      => $array[$key . '_' . $tabName['name']]);
435                                 }
436                             }
437                         }
438                     }
439                 }
440
441             }else{
442
443                 $fromMergeRecords = isset($array['merge_module']);
444
445                 foreach($this->searchFields as $name => $params) {
446                                         $long_name = $name.'_'.$SearchName;           
447                                         /*nsingh 21648: Add additional check for bool values=0. empty() considers 0 to be empty Only repopulates if value is 0 or 1:( */
448                         if(isset($array[$long_name]) && !$this->isEmptyDropdownField($long_name, $array[$long_name]) && ( $array[$long_name] !== '' || (isset($this->fieldDefs[$long_name]['type']) && $this->fieldDefs[$long_name]['type'] == 'bool'&& ($array[$long_name]=='0' || $array[$long_name]=='1'))))
449                                         {                               
450                         $this->searchFields[$name]['value'] = $array[$long_name];
451                         if(empty($this->fieldDefs[$long_name]['value'])) {
452                                 $this->fieldDefs[$long_name]['value'] = $array[$long_name];
453                         }
454                     }else if(!empty($array[$name]) && !$fromMergeRecords && !$this->isEmptyDropdownField($name, $array[$name])) { //basic               
455                         $this->searchFields[$name]['value'] = $array[$name];
456                         if(empty($this->fieldDefs[$long_name]['value'])) {
457                                 $this->fieldDefs[$long_name]['value'] = $array[$name];
458                         }
459                     }
460                     
461                     if(!empty($params['enable_range_search']) && isset($this->searchFields[$name]['value']))
462                                         {
463                                                 if(preg_match('/^range_(.*?)$/', $long_name, $match) && isset($array[$match[1].'_range_choice']))
464                                                 {
465                                                         $this->searchFields[$name]['operator'] = $array[$match[1].'_range_choice'];
466                                                 }
467                                         }
468
469                                         if(!empty($params['is_date_field']) && isset($this->searchFields[$name]['value']))
470                                         {
471                                                 global $timedate;
472                         // FG - bug 45287 - to db conversion is ok, but don't adjust timezone (not now), otherwise you'll jump to the day before (if at GMT-xx)
473                                                 $date_value = $timedate->to_db_date($this->searchFields[$name]['value'], false);
474                                                 $this->searchFields[$name]['value'] = $date_value == '' ? $this->searchFields[$name]['value'] : $date_value;
475                                         }                    
476                 }
477
478                 if((empty($array['massupdate']) || $array['massupdate'] == 'false') && $addAllBeanFields) {
479                     foreach($this->seed->field_name_map as $key => $params) {
480                         if($key != 'assigned_user_name' && $key != 'modified_by_name')
481                         {
482                                 $long_name = $key.'_'.$SearchName;
483                                 
484                                 if(in_array($key.'_'.$SearchName, $arrayKeys) && !in_array($key, $searchFieldsKeys) && !$this->isEmptyDropdownField($long_name, $array[$long_name])) 
485                                 {                                       
486                                         
487                                         $this->searchFields[$key] = array('query_type' => 'default', 'value' => $array[$long_name]);
488                                         
489                                 if (!empty($params['type']) && $params['type'] == 'parent'
490                                     && !empty($params['type_name']) && !empty($this->searchFields[$key]['value']))
491                                 {
492                                             require_once('include/SugarFields/SugarFieldHandler.php');
493                                                                                 $sfh = new SugarFieldHandler();
494                                                                 $sf = $sfh->getSugarField('Parent');
495                                         
496                                         $this->searchFields[$params['type_name']] = array('query_type' => 'default',
497                                                                                           'value'      => $sf->getSearchInput($params['type_name'], $array));
498                                 }
499                                 
500                                 if(empty($this->fieldDefs[$long_name]['value'])) {
501                                     $this->fieldDefs[$long_name]['value'] =  $array[$long_name];
502                                 }
503                             }
504                         }
505                     }
506                 }
507
508             }
509         }
510
511
512        if ( is_array($this->searchFields) ) {
513            foreach ( $this->searchFields as $fieldName => $field ) {
514                if ( !empty($field['value']) && is_string($field['value']) ) {
515                    $this->searchFields[$fieldName]['value'] = trim($field['value']);
516                }
517            }
518        } 
519
520     }
521
522     /**
523      * Populate the searchFields from $_REQUEST
524      *
525      * @param string $switchVar variable to use in switch statement
526      * @param bool $addAllBeanFields true to process at all bean fields
527      */
528     function populateFromRequest($switchVar = null, $addAllBeanFields = true) {
529         $this->populateFromArray($_REQUEST, $switchVar, $addAllBeanFields);
530     }
531
532
533         /**
534      * Parse date expression and return WHERE clause
535      * @param string $operator Date expression operator
536      * @param string DB field name
537       * @param string DB field type
538      */
539     protected function parseDateExpression($operator, $db_field, $field_type = '')
540     {
541         if ($field_type == "date") {
542             $type = "date";
543             $adjForTZ = false;
544         } else {
545             $type = "datetime";
546             $adjForTZ = true;
547         }
548         $dates = TimeDate::getInstance()->parseDateRange($operator, null, $adjForTZ);
549         if(empty($dates)) return '';
550         $start = $this->seed->db->convert($this->seed->db->quoted($dates[0]->asDb()), $type);
551         $end = $this->seed->db->convert($this->seed->db->quoted($dates[1]->asDb()), $type);
552         return "($db_field >= $start AND $db_field <= $end)";
553     }
554
555      /**
556       * generateSearchWhere
557       *
558       * This function serves as the central piece of SearchForm2.php
559       * It is responsible for creating the WHERE clause for a given search operation
560       *
561       * @param bool $add_custom_fields boolean indicating whether or not custom fields should be added
562       * @param string $module Module to search against
563       *
564       * @return string the SQL WHERE clause based on the arguments supplied in SearchForm2 instance
565       */
566      public function generateSearchWhere($add_custom_fields = false, $module='') {
567          global $timedate;
568
569          $db = $this->seed->db;
570          $this->searchColumns = array () ;
571          $values = $this->searchFields;
572
573          $where_clauses = array();
574          $table_name = $this->seed->object_name;
575          $this->seed->fill_in_additional_detail_fields();
576
577          //rrs check for team_id
578
579          foreach($this->searchFields as $field=>$parms) {
580              $customField = false;
581              // Jenny - Bug 7462: We need a type check here to avoid database errors
582              // when searching for numeric fields. This is a temporary fix until we have
583              // a generic search form validation mechanism.
584              $type = (!empty($this->seed->field_name_map[$field]['type']))?$this->seed->field_name_map[$field]['type']:'';
585
586              //If range search is enabled for the field, we first check if this is the starting range
587              if(!empty($parms['enable_range_search']) && empty($type))
588              {
589                  if(preg_match('/^start_range_(.*?)$/', $field, $match))
590                  {
591                      $real_field = $match[1];
592                      $start_field = 'start_range_' . $real_field;
593                      $end_field = 'end_range_' . $real_field;
594
595                      if(isset($this->searchFields[$start_field]['value']) && isset($this->searchFields[$end_field]['value']))
596                      {
597                          $this->searchFields[$real_field]['value'] = $this->searchFields[$start_field]['value'] . '<>' . $this->searchFields[$end_field]['value'];
598                          $this->searchFields[$real_field]['operator'] = 'between';
599                          $parms['value'] = $this->searchFields[$real_field]['value'];
600                          $parms['operator'] = 'between';
601
602                          $field_type = isset($this->seed->field_name_map[$real_field]['type']) ? $this->seed->field_name_map[$real_field]['type'] : '';
603                          if($field_type == 'datetimecombo' || $field_type == 'datetime')
604                          {
605                                 $type = $field_type;
606                          }
607
608                          $field = $real_field;
609                          unset($this->searchFields[$end_field]['value']);
610                      }
611                  } else if (preg_match('/^range_(.*?)$/', $field, $match) && isset($this->searchFields[$field]['value'])) {
612                      $real_field = $match[1];
613
614                      //Special case for datetime and datetimecombo fields.  By setting the type here we allow an actual between search
615                      if(in_array($parms['operator'], array('=', 'between', "not_equal", 'less_than', 'greater_than', 'less_than_equals', 'greater_than_equals')))
616                      {
617                         $field_type = isset($this->seed->field_name_map[$real_field]['type']) ? $this->seed->field_name_map[$real_field]['type'] : '';
618                         if(strtolower($field_type) == 'readonly' && isset($this->seed->field_name_map[$real_field]['dbType'])) {
619                            $field_type = $this->seed->field_name_map[$real_field]['dbType'];
620                         }
621                         if($field_type == 'datetimecombo' || $field_type == 'datetime' || $field_type == 'int')
622                         {
623                            $type = $field_type;
624                         }
625                      }
626
627                      $this->searchFields[$real_field]['value'] = $this->searchFields[$field]['value'];
628                      $this->searchFields[$real_field]['operator'] = $this->searchFields[$field]['operator'];
629                      $params['value'] = $this->searchFields[$field]['value'];
630                      $params['operator'] = $this->searchFields[$field]['operator'];
631                      unset($this->searchFields[$field]['value']);
632                      $field = $real_field;
633                  } else {
634                      //Skip this range search field, it is the end field THIS IS NEEDED or the end range date will break the query
635                      continue;
636                  }
637              }
638
639              //Test to mark whether or not the field is a custom field
640              if(!empty($this->seed->field_name_map[$field]['source'])
641                  && ($this->seed->field_name_map[$field]['source'] == 'custom_fields' ||
642                      //Non-db custom fields, such as custom relates
643                      ($this->seed->field_name_map[$field]['source'] == 'non-db'
644                      && (!empty($this->seed->field_name_map[$field]['custom_module']) ||
645                           isset($this->seed->field_name_map[$field]['ext2']))))){
646                  $customField = true;
647              }
648
649              if ($type == 'int' && isset($parms['value']) && !empty($parms['value'])) {
650                  require_once ('include/SugarFields/SugarFieldHandler.php');
651                  $intField = SugarFieldHandler::getSugarField('int');
652                  $newVal = $intField->getSearchWhereValue($parms['value']);
653                  $parms['value'] = $newVal;
654              } elseif($type == 'html' && $customField) {
655                  continue;
656              }
657
658
659              if(isset($parms['value']) && $parms['value'] != "") {
660
661                  $operator = $db->isNumericType($type)?'=':'like';
662                  if(!empty($parms['operator'])) {
663                      $operator = strtolower($parms['operator']);
664                  }
665
666                  if(is_array($parms['value'])) {
667                      $field_value = '';
668
669                      // always construct the where clause for multiselects using the 'like' form to handle combinations of multiple $vals and multiple $parms
670                       if(!empty($this->seed->field_name_map[$field]['isMultiSelect']) && $this->seed->field_name_map[$field]['isMultiSelect']) {
671                          // construct the query for multenums
672                          // use the 'like' query as both custom and OOB multienums are implemented with types that cannot be used with an 'in'
673                          $operator = 'custom_enum';
674                          $table_name = $this->seed->table_name ;
675                          if ($customField)
676                              $table_name .= "_cstm" ;
677                          $db_field = $table_name . "." . $field;
678
679                          foreach($parms['value'] as $val) {
680                              if($val != ' ' and $val != '') {
681                                     $qVal = $db->quote($val);
682                                     if (!empty($field_value)) {
683                                         $field_value .= ' or ';
684                                     }
685                                     $field_value .= "$db_field like '%^$qVal^%'";
686                              } else {
687                                  $field_value .= '('.$db_field . ' IS NULL or '.$db_field."='^^' or ".$db_field."='')";
688                              }
689                          }
690
691                      } else {
692                          $operator = $operator != 'subquery' ? 'in' : $operator;
693                          foreach($parms['value'] as $val) {
694                              if($val != ' ' and $val != '') {
695                                  if (!empty($field_value)) {
696                                      $field_value .= ',';
697                                  }
698                                  $field_value .= $db->quoteType($type, $val);
699                              }
700                                  // Bug 41209: adding a new operator "isnull" here
701                                  // to handle the case when blank is selected from dropdown.
702                                  // In that case, $val is empty.
703                                  // When $val is empty, we need to use "IS NULL",
704                                  // as "in (null)" won't work
705                                  else if ($operator=='in') {
706                                      $operator = 'isnull';
707                                  }
708                          }
709                      }
710
711                  } else {
712                      $field_value = $parms['value'];
713                  }
714
715                  //set db_fields array.
716                  if(!isset($parms['db_field'])) {
717                      $parms['db_field'] = array($field);
718                  }
719
720                  //This if-else block handles the shortcut checkbox selections for "My Items" and "Closed Only"
721                  if(!empty($parms['my_items'])) {
722                      if( $parms['value'] == false ) {
723                          continue;
724                      } else {
725                          //my items is checked.
726                          global $current_user;
727                          $field_value = $db->quote($current_user->id);
728                          $operator = '=' ;
729                      }
730                  } else if(!empty($parms['closed_values']) && is_array($parms['closed_values'])) {
731                      if( $parms['value'] == false ) {
732                          continue;
733                      } else {
734                          $field_value = '';
735                          foreach($parms['closed_values'] as $closed_value)
736                          {
737                              $field_value .= "," . $db->quoted($closed_value);
738                          }
739                          $field_value = substr($field_value, 1);
740                      }
741                  }
742
743                  $where = '';
744                  $itr = 0;
745
746                  if($field_value != '' || $operator=='isnull') {
747
748                      $this->searchColumns [ strtoupper($field) ] = $field ;
749
750                      foreach ($parms['db_field'] as $db_field) {
751                          if (strstr($db_field, '.') === false) {
752                              //Try to get the table for relate fields from link defs
753                              if ($type == 'relate' && !empty($this->seed->field_name_map[$field]['link'])
754                                  && !empty($this->seed->field_name_map[$field]['rname'])) {
755                                      $link = $this->seed->field_name_map[$field]['link'];
756                                      $relname = $link['relationship'];
757                                      if (($this->seed->load_relationship($link))){
758                                          //Martin fix #27494
759                                          $db_field = $this->seed->field_name_map[$field]['name'];
760                                      } else {
761                                          //Best Guess for table name
762                                          $db_field = strtolower($link['module']) . '.' . $db_field;
763                                      }
764
765
766                              }
767                              else if ($type == 'parent') {
768                                  if (!empty($this->searchFields['parent_type'])) {
769                                      $parentType = $this->searchFields['parent_type'];
770                                      $rel_module = $parentType['value'];
771                                      global $beanFiles, $beanList;
772                                      if(!empty($beanFiles[$beanList[$rel_module]])) {
773                                          require_once($beanFiles[$beanList[$rel_module]]);
774                                          $rel_seed = new $beanList[$rel_module]();
775                                          $db_field = 'parent_' . $rel_module . '_' . $rel_seed->table_name . '.name';
776                                      }
777                                  }
778                              }
779                              // Relate fields in custom modules and custom relate fields
780                              else if ($type == 'relate' && $customField && !empty($this->seed->field_name_map[$field]['module'])) {
781                                  $db_field = !empty($this->seed->field_name_map[$field]['name'])?$this->seed->field_name_map[$field]['name']:'name';
782                              }
783                             else if(!$customField){
784                                 if ( !empty($this->seed->field_name_map[$field]['db_concat_fields']) )
785                                     $db_field = $db->concat($this->seed->table_name, $this->seed->field_name_map[$db_field]['db_concat_fields']);
786                                 else
787                                     $db_field = $this->seed->table_name .  "." . $db_field;
788                              }else{
789                                  if ( !empty($this->seed->field_name_map[$field]['db_concat_fields']) )
790                                     $db_field = $db->concat($this->seed->table_name .  "_cstm.", $this->seed->field_name_map[$db_field]['db_concat_fields']);
791                                 else
792                                     $db_field = $this->seed->table_name .  "_cstm." . $db_field;
793                              }
794
795                          }
796
797                          if($type == 'date') {
798                             // The regular expression check is to circumvent special case YYYY-MM
799                              $operator = '=';
800                              if(preg_match('/^\d{4}.\d{1,2}$/', $field_value) != 0) { // preg_match returns number of matches
801                                 $db_field = $this->seed->db->convert($db_field, "date_format", array("%Y-%m"));
802                             } else {
803                                 $field_value = $timedate->to_db_date($field_value, false);
804                                 $db_field = $this->seed->db->convert($db_field, "date_format", array("%Y-%m-%d"));
805                             }
806                          }
807
808                          if($type == 'datetime' || $type == 'datetimecombo') {
809                              try {
810                                  if($operator == '=' || $operator == 'between') {
811                                      // FG - bug45287 - If User asked for a range, takes edges from it.
812                                      $placeholderPos = strpos($field_value, "<>");
813                                      if ($placeholderPos !== FALSE && $placeholderPos > 0)
814                                      {
815                                          $datesLimit = explode("<>", $field_value);
816                                          $dateStart = $timedate->getDayStartEndGMT($datesLimit[0]);
817                                          $dateEnd = $timedate->getDayStartEndGMT($datesLimit[1]);
818                                          $dates = $dateStart;
819                                          $dates['end'] = $dateEnd['end'];
820                                          $dates['enddate'] = $dateEnd['enddate'];
821                                          $dates['endtime'] = $dateEnd['endtime'];
822                                      }
823                                      else
824                                      {
825                                          $dates = $timedate->getDayStartEndGMT($field_value);
826                                      }
827                                      // FG - bug45287 - Note "start" and "end" are the correct interval at GMT timezone
828                                      $field_value = array($dates["start"], $dates["end"]);
829                                      $operator = 'between';
830                                  } else if($operator == 'not_equal') {
831                                     $dates = $timedate->getDayStartEndGMT($field_value);
832                                     $field_value = array($dates["start"], $dates["end"]);
833                                     $operator = 'date_not_equal';
834                                  } else if($operator == 'greater_than') {
835                                     $dates = $timedate->getDayStartEndGMT($field_value);
836                                     $field_value = $dates["end"];
837                                  } else if($operator == 'less_than') {
838                                     $dates = $timedate->getDayStartEndGMT($field_value);
839                                     $field_value = $dates["start"];
840                                  } else if($operator == 'greater_than_equals') {
841                                     $dates = $timedate->getDayStartEndGMT($field_value);
842                                     $field_value = $dates["start"];
843                                  } else if($operator == 'less_than_equals') {
844                                     $dates = $timedate->getDayStartEndGMT($field_value);
845                                     $field_value = $dates["end"];
846                                  }
847                              } catch(Exception $timeException) {
848                                  //In the event that a date value is given that cannot be correctly processed by getDayStartEndGMT method,
849                                  //just skip searching on this field and continue.  This may occur if user switches locale date formats
850                                  //in another browser screen, but re-runs a search with the previous format on another screen
851                                  $GLOBALS['log']->error($timeException->getMessage());
852                                  continue;
853                              }
854                          }
855
856                          if($type == 'decimal' || $type == 'float' || $type == 'currency' || (!empty($parms['enable_range_search']) && empty($parms['is_date_field']))) {
857                              require_once('modules/Currencies/Currency.php');
858
859                              //we need to handle formatting either a single value or 2 values in case the 'between' search option is set
860                              //start by splitting the string if the between operator exists
861                              $fieldARR = explode('<>', $field_value);
862                              //set the first pass through boolean
863                              $values = array();
864                              foreach($fieldARR as $fv){
865                                  //reset the field value, it will be rebuild in the foreach loop below
866                                  $tmpfield_value = unformat_number($fv);
867
868                                  if ( $type == 'currency' && stripos($field,'_usdollar')!==FALSE ) {
869                                      // It's a US Dollar field, we need to do some conversions from the user's local currency
870                                      $currency_id = $GLOBALS['current_user']->getPreference('currency');
871                                      if ( empty($currency_id) ) {
872                                          $currency_id = -99;
873                                      }
874                                      if ( $currency_id != -99 ) {
875                                          $currency = new Currency();
876                                          $currency->retrieve($currency_id);
877                                          $tmpfield_value = $currency->convertToDollar($tmpfield_value);
878                                      }
879                                  }
880                                  $values[] = $tmpfield_value;
881                              }
882
883                              $field_value = join('<>',$values);
884
885                              if(!empty($parms['enable_range_search']) && $parms['operator'] == '=' && $type != 'int')
886                              {
887                                  // Databases can't really search for floating point numbers, because they can't be accurately described in binary,
888                                  // So we have to fuzz out the math a little bit
889                                  $field_value = array(($field_value - 0.01) , ($field_value + 0.01));
890                                  $operator = 'between';
891                              }
892                          }
893
894
895                          if($db->supports("case_sensitive") && isset($parms['query_type']) && $parms['query_type'] == 'case_insensitive') {
896                                $db_field = 'upper(' . $db_field . ")";
897                                $field_value = strtoupper($field_value);
898                          }
899
900                          $itr++;
901                          if(!empty($where)) {
902                              $where .= " OR ";
903                          }
904
905                          //Here we make a last attempt to determine the field type if possible
906                          if(empty($type) && isset($parms['db_field']) && isset($parms['db_field'][0]) && isset($this->seed->field_defs[$parms['db_field'][0]]['type']))
907                          {
908                              $type = $this->seed->field_defs[$parms['db_field'][0]]['type'];
909                          }
910
911                          switch(strtolower($operator)) {
912                              case 'subquery':
913                                  $in = 'IN';
914                                  if ( isset($parms['subquery_in_clause']) ) {
915                                      if ( !is_array($parms['subquery_in_clause']) ) {
916                                          $in = $parms['subquery_in_clause'];
917                                      }
918                                      elseif ( isset($parms['subquery_in_clause'][$field_value]) ) {
919                                          $in = $parms['subquery_in_clause'][$field_value];
920                                      }
921                                  }
922                                  $sq = $parms['subquery'];
923                                  if(is_array($sq)){
924                                      $and_or = ' AND ';
925                                      if (isset($sq['OR'])){
926                                          $and_or = ' OR ';
927                                      }
928                                      $first = true;
929                                      foreach($sq as $q){
930                                          if(empty($q) || strlen($q)<2) continue;
931                                          if(!$first){
932                                              $where .= $and_or;
933                                          }
934                                          $where .= " {$db_field} $in ({$q} ".$this->seed->db->quoted($field_value.'%').") ";
935                                          $first = false;
936                                      }
937                                  }elseif(!empty($parms['query_type']) && $parms['query_type'] == 'format'){
938                                      $stringFormatParams = array(0 => $field_value, 1 => $GLOBALS['current_user']->id);
939                                      $where .= "{$db_field} $in (".string_format($parms['subquery'], $stringFormatParams).")";
940                                  }else{
941                                      $where .= "{$db_field} $in ({$parms['subquery']} ".$this->seed->db->quoted($field_value.'%').")";
942                                  }
943
944                                  break;
945
946                              case 'like':
947                                  if($type == 'bool' && $field_value == 0) {
948                                      // Bug 43452 - FG - Added parenthesis surrounding the OR (without them the WHERE clause would be broken)
949                                      $where .=  "( " . $db_field . " = '0' OR " . $db_field . " IS NULL )";
950                                  }
951                                  else {
952                                      //check to see if this is coming from unified search or not
953                                      $UnifiedSearch = !empty($parms['force_unifiedsearch']);
954                                      if(isset($_REQUEST['action']) && $_REQUEST['action'] == 'UnifiedSearch'){
955                                          $UnifiedSearch = true;
956                                      }
957
958                                      //check to see if this is a universal search OR the field has db_concat_fields set in vardefs, AND the field name is "last_name"
959                                      //BUG 45709: Tasks Advanced Search: Contact Name field does not return matches on full names
960                                      //Frank: Adding Surabhi's fix back which seem to have gone missing in CottonCandy merge
961                                      if(($UnifiedSearch || !empty($this->seed->field_name_map[$field]['db_concat_fields'])) && strpos($db_field, 'last_name') !== false){
962                                          //split the string value, and the db field name
963                                          $string = explode(' ', $field_value);
964                                          $column_name =  explode('.', $db_field);
965                                          //when a search is done with a space, we concatenate and search against the full name.
966                                          if(count($string)>1){
967                                              //add where clause against concatenated fields
968                                              $where .= $this->seed->db->concat($column_name[0],array('first_name','last_name')) . " LIKE ".$this->seed->db->quoted($field_value.'%');
969                                              $where .= ' OR ' . $this->seed->db->concat($column_name[0],array('last_name','first_name')) . " LIKE ".$this->seed->db->quoted($field_value.'%');
970                                          }else{
971                                              //no space was found, add normal where clause
972                                              $where .=  $db_field . " like ".$this->seed->db->quoted($field_value.'%');
973                                          }
974
975                                      }else {
976
977                                          //Check if this is a first_name, last_name search
978                                          if(isset($this->seed->field_name_map) && isset($this->seed->field_name_map[$db_field]))
979                                          {
980                                              $vardefEntry = $this->seed->field_name_map[$db_field];
981                                              if(!empty($vardefEntry['db_concat_fields']) && in_array('first_name', $vardefEntry['db_concat_fields']) && in_array('last_name', $vardefEntry['db_concat_fields']))
982                                              {
983                                                    if(!empty($GLOBALS['app_list_strings']['salutation_dom']) && is_array($GLOBALS['app_list_strings']['salutation_dom']))
984                                                    {
985                                                       foreach($GLOBALS['app_list_strings']['salutation_dom'] as $salutation)
986                                                       {
987                                                          if(!empty($salutation) && strpos($field_value, $salutation) == 0)
988                                                          {
989                                                             $field_value = trim(substr($field_value, strlen($salutation)));
990                                                             break;
991                                                          }
992                                                       }
993                                                    }
994                                              }
995                                          }
996
997                                          //field is not last name or this is not from global unified search, so do normal where clause
998                                          $where .=  $db_field . " like ".$this->seed->db->quoted($field_value.'%');
999                                      }
1000                                  }
1001                                  break;
1002                              case 'not in':
1003                                  $where .= $db_field . ' not in ('.$field_value.')';
1004                                  break;
1005                              case 'in':
1006                                  $where .=  $db_field . ' in ('.$field_value.')';
1007                                  break;
1008                              case '=':
1009                                  if($type == 'bool' && $field_value == 0) {
1010                                      $where .=  "($db_field = 0 OR $db_field IS NULL)";
1011                                  }
1012                                  else {
1013                                      $where .=  $db_field . " = ".$db->quoteType($type, $field_value);
1014                                  }
1015                                  break;
1016                              // tyoung bug 15971 - need to add these special cases into the $where query
1017                              case 'custom_enum':
1018                                  $where .= $field_value;
1019                                  break;
1020                              case 'between':
1021                                  if(!is_array($field_value)) {
1022                                      $field_value = explode('<>', $field_value);
1023                                  }
1024                                  $field_value[0] = $db->quoteType($type, $field_value[0]);
1025                                  $field_value[1] = $db->quoteType($type, $field_value[1]);
1026                                  $where .= "($db_field >= {$field_value[0]} AND $db_field <= {$field_value[1]})";
1027                                  break;
1028                              case 'date_not_equal':
1029                                  if(!is_array($field_value)) {
1030                                      $field_value = explode('<>', $field_value);
1031                                  }
1032                                  $field_value[0] = $db->quoteType($type, $field_value[0]);
1033                                  $field_value[1] = $db->quoteType($type, $field_value[1]);
1034                                  $where .= "($db_field IS NULL OR $db_field < {$field_value[0]} OR $db_field > {$field_value[1]})";
1035                                  break;
1036                              case 'innerjoin':
1037                                  $this->seed->listview_inner_join[] = $parms['innerjoin'] . " '" . $parms['value'] . "%')";
1038                                  break;
1039                              case 'not_equal':
1040                                  $field_value = $db->quoteType($type, $field_value);
1041                                  $where .= "($db_field IS NULL OR $db_field != $field_value)";
1042                                  break;
1043                              case 'greater_than':
1044                                  $field_value = $db->quoteType($type, $field_value);
1045                                  $where .= "$db_field > $field_value";
1046                                  break;
1047                              case 'greater_than_equals':
1048                                  $field_value = $db->quoteType($type, $field_value);
1049                                  $where .= "$db_field >= $field_value";
1050                                  break;
1051                              case 'less_than':
1052                                  $field_value = $db->quoteType($type, $field_value);
1053                                  $where .= "$db_field < $field_value";
1054                                  break;
1055                              case 'less_than_equals':
1056                                  $field_value = $db->quoteType($type, $field_value);
1057                                  $where .= "$db_field <= $field_value";
1058                                  break;
1059                              case 'next_7_days':
1060                              case 'last_7_days':
1061                              case 'last_month':
1062                              case 'this_month':
1063                              case 'next_month':
1064                              case 'last_30_days':
1065                              case 'next_30_days':
1066                              case 'this_year':
1067                              case 'last_year':
1068                              case 'next_year':
1069                                  if (!empty($field) && !empty($this->seed->field_name_map[$field]['type'])) {
1070                                      $where .= $this->parseDateExpression(strtolower($operator), $db_field, $this->seed->field_name_map[$field]['type']);
1071                                  } else {
1072                                      $where .= $this->parseDateExpression(strtolower($operator), $db_field);
1073                                  }
1074                                  break;
1075                              case 'isnull':
1076                                  $where .=  "($db_field IS NULL OR $db_field = '')";
1077                                  if ($field_value != '')
1078                                      $where .=  ' OR ' . $db_field . " in (".$field_value.')';
1079                                  break;
1080                          }
1081                      }
1082                  }
1083
1084                  if(!empty($where)) {
1085                      if($itr > 1) {
1086                          array_push($where_clauses, '( '.$where.' )');
1087                      }
1088                      else {
1089                          array_push($where_clauses, $where);
1090                      }
1091                  }
1092              }
1093          }
1094
1095          return $where_clauses;
1096      }
1097
1098     
1099     
1100     /**
1101      * isEmptyDropdownField
1102      * 
1103      * This function checks to see if a blank dropdown field was supplied.  This scenario will occur where
1104      * a dropdown select is in single selection mode
1105      * 
1106      * @param $value Mixed dropdown value
1107      */
1108     private function isEmptyDropdownField($name='', $value=array())
1109     {
1110         $result = is_array($value) && isset($value[0]) && $value[0] == '';
1111         $GLOBALS['log']->debug("Found empty value for {$name} dropdown search key");
1112         return $result;
1113     }    
1114  }
1115