]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ListView/ListViewDisplay.php
Release 6.2.4
[Github/sugarcrm.git] / include / ListView / ListViewDisplay.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-2011 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
39
40
41 require_once('include/ListView/ListViewData.php');
42 require_once('include/MassUpdate.php');
43
44 class ListViewDisplay {
45
46         var $show_mass_update_form = false;
47         var $show_action_dropdown = true;
48         var $rowCount;
49         var $mass = null;
50         var $seed;
51         var $multi_select_popup;
52         var $lvd;
53         var $moduleString;
54         var $export = true;
55         var $multiSelect = true;
56         var $mailMerge = true;
57         var $should_process = true;
58         var $show_plus = false;
59         /*
60          * Used in view.popup.php. Sometimes there are fields on the search form that are not referenced in the listviewdefs. If this
61          * is the case, then the filterFields will be set and the related fields will not be referenced when calling create_new_list_query.
62          */
63         var $mergeDisplayColumns = false;
64     public $actionsMenuExtraItems = array();
65
66         /**
67          * Constructor
68          * @return null
69          */
70         function ListViewDisplay() {
71                 $this->lvd = new ListViewData();
72                 $this->searchColumns = array () ;
73         }
74         function shouldProcess($moduleDir){
75                 $searching = false;
76                 $sessionSearchQuery = "{$moduleDir}2_QUERY_QUERY";
77                 if (!empty($_SESSION[$sessionSearchQuery])) {
78                         $searching = true;
79                 }
80                 if(!empty($GLOBALS['sugar_config']['save_query']) && $GLOBALS['sugar_config']['save_query'] == 'populate_only'){
81                     if(empty($GLOBALS['displayListView']) 
82                             && (!empty($_REQUEST['clear_query']) 
83                                 || $_REQUEST['module'] == $moduleDir 
84                                     && ((empty($_REQUEST['query']) || $_REQUEST['query'] == 'MSI' )
85                                         && (!$searching)))) {
86                                 $_SESSION['last_search_mod'] = $_REQUEST['module'] ;
87                                 $this->should_process = false;
88                                 return false;
89                         }
90                 }
91                 $this->should_process = true;
92                 return true;
93         }
94
95         /**
96          * Setup the class
97          * @param seed SugarBean Seed SugarBean to use
98          * @param file File Template file to use
99          * @param string $where
100          * @param offset:0 int offset to start at
101          * @param int:-1 $limit
102          * @param string[]:array() $filter_fields
103          * @param array:array() $params
104          *      Potential $params are
105                 $params['distinct'] = use distinct key word
106                 $params['include_custom_fields'] = (on by default)
107                 $params['massupdate'] = true by default;
108         $params['handleMassupdate'] = true by default, have massupdate.php handle massupdates?
109          * @param string:'id' $id_field
110          */
111         function setup($seed, $file, $where, $params = array(), $offset = 0, $limit = -1,  $filter_fields = array(), $id_field = 'id') {
112         $this->should_process = true;
113         if(isset($seed->module_dir) && !$this->shouldProcess($seed->module_dir)){
114                         return false;
115         }
116         if(isset($params['export'])) {
117           $this->export = $params['export'];
118         }
119         if(!empty($params['multiSelectPopup'])) {
120                   $this->multi_select_popup = $params['multiSelectPopup'];
121         }
122                 if(!empty($params['massupdate']) && $params['massupdate'] != false) {
123                         $this->show_mass_update_form = true;
124                         $this->mass = new MassUpdate();
125                         $this->mass->setSugarBean($seed);
126                         if(!empty($params['handleMassupdate']) || !isset($params['handleMassupdate'])) {
127                 $this->mass->handleMassUpdate();
128             }
129                 }
130                 $this->seed = $seed;
131
132         $filter_fields = $this->setupFilterFields($filter_fields);
133
134         $data = $this->lvd->getListViewData($seed, $where, $offset, $limit, $filter_fields, $params, $id_field);
135
136                 foreach($this->displayColumns as $columnName => $def)
137                 {
138                         $seedName =  strtolower($columnName);
139             if(!empty($this->lvd->seed->field_defs[$seedName])){
140                 $seedDef = $this->lvd->seed->field_defs[$seedName];
141             }
142
143                         if(empty($this->displayColumns[$columnName]['type'])){
144                                 if(!empty($seedDef['type'])){
145                             $this->displayColumns[$columnName]['type'] = (!empty($seedDef['custom_type']))?$seedDef['custom_type']:$seedDef['type'];
146                         }else{
147                                 $this->displayColumns[$columnName]['type'] = '';
148                         }
149                         }//fi empty(...)
150
151                         if(!empty($seedDef['options'])){
152                                         $this->displayColumns[$columnName]['options'] = $seedDef['options'];
153                         }
154
155                 //C.L. Fix for 11177
156                 if($this->displayColumns[$columnName]['type'] == 'html') {
157                     $cField = $this->seed->custom_fields;
158                        if(isset($cField) && isset($cField->bean->$seedName)) {
159                                 $seedName2 = strtoupper($columnName);
160                                 $htmlDisplay = html_entity_decode($cField->bean->$seedName);
161                                 $count = 0;
162                                 while($count < count($data['data'])) {
163                                         $data['data'][$count][$seedName2] = &$htmlDisplay;
164                                     $count++;
165                                 }
166                         }
167                 }//fi == 'html'
168
169             //Bug 40511, make sure relate fields have the correct module defined
170             if ($this->displayColumns[$columnName]['type'] == "relate" && !empty($seedDef['link']) && empty( $this->displayColumns[$columnName]['module']))
171             {
172                 $link = $seedDef['link'];
173                 if (!empty($this->lvd->seed->field_defs[$link]) && !empty($this->lvd->seed->field_defs[$seedDef['link']]['module']))
174                 {
175                     $this->displayColumns[$columnName]['module'] = $this->lvd->seed->field_defs[$seedDef['link']]['module'];
176                 }
177             }
178
179                         if (!empty($seedDef['sort_on'])) {
180                         $this->displayColumns[$columnName]['orderBy'] = $seedDef['sort_on'];
181                     }
182
183             if(isset($seedDef)){
184                 // Merge the two arrays together, making sure the seedDef doesn't override anything explicitly set in the displayColumns array.
185                 $this->displayColumns[$columnName] = $this->displayColumns[$columnName] + $seedDef;
186             }
187
188                     //C.L. Bug 38388 - ensure that ['id'] is set for related fields
189             if(!isset($this->displayColumns[$columnName]['id']) && isset($this->displayColumns[$columnName]['id_name'])) {
190                $this->displayColumns[$columnName]['id'] = strtoupper($this->displayColumns[$columnName]['id_name']);
191             }
192                 }
193
194                 $this->process($file, $data, $seed->object_name);
195                 return true;
196         }
197
198         function setupFilterFields($filter_fields = array())
199         {
200                 // create filter fields based off of display columns
201         if(empty($filter_fields) || $this->mergeDisplayColumns) {
202             foreach($this->displayColumns as $columnName => $def) {
203
204                $filter_fields[strtolower($columnName)] = true;
205
206             if(isset($this->seed->field_defs[strtolower($columnName)]['type']) &&
207                strtolower($this->seed->field_defs[strtolower($columnName)]['type']) == 'currency' &&
208                isset($this->seed->field_defs['currency_id'])) {
209                     $filter_fields['currency_id'] = true;
210             }
211
212                if(!empty($def['related_fields'])) {
213                     foreach($def['related_fields'] as $field) {
214                         //id column is added by query construction function. This addition creates duplicates
215                         //and causes issues in oracle. #10165
216                         if ($field != 'id') {
217                             $filter_fields[$field] = true;
218                         }
219                     }
220                 }
221                 if (!empty($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'])) {
222                     foreach($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'] as $index=>$field){
223                         if(!isset($filter_fields[strtolower($field)]) || !$filter_fields[strtolower($field)])
224                         {
225                             $filter_fields[strtolower($field)] = true;
226                         }
227                     }
228                 }
229             }
230             foreach ($this->searchColumns as $columnName => $def )
231             {
232                 $filter_fields[strtolower($columnName)] = true;
233             }
234         }
235
236
237         return $filter_fields;
238         }
239
240
241         /**
242          * Any additional processing
243          * @param file File template file to use
244          * @param data array row data
245          * @param html_var string html string to be passed back and forth
246          */
247         function process($file, $data, $htmlVar) {
248                 $this->rowCount = count($data['data']);
249                 $this->moduleString = $data['pageData']['bean']['moduleDir'] . '2_' . strtoupper($htmlVar) . '_offset';
250         }
251
252         /**
253          * Display the listview
254          * @return string ListView contents
255          */
256         public function display() 
257         {
258                 if (!$this->should_process) {
259                     return '';
260                 }
261                 
262                 $str = '';
263                 if ($this->show_mass_update_form) {
264                         $str = $this->mass->getDisplayMassUpdateForm(true, $this->multi_select_popup).$this->mass->getMassUpdateFormHeader($this->multi_select_popup);
265                 }
266         
267                 return $str;
268         }
269         /**
270          * Display the select link
271      * @return string select link html
272          * @param echo Bool set true if you want it echo'd, set false to have contents returned
273          */
274         function buildSelectLink($id = 'select_link', $total=0, $pageTotal=0) {
275                 global $app_strings;
276                 if ($pageTotal < 0)
277                         $pageTotal = $total;
278                 $plus = '';
279                 if (!empty($GLOBALS['sugar_config']['disable_count_query']) && $total > $pageTotal) {
280                         $plus = '+';
281                         $this->show_plus = true;
282                 }
283                 $script = "<script>
284                         function select_overlib() {
285                                 return overlib('<a style=\'width: 150px\' name=\"thispage\" class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'if (document.MassUpdate.select_entire_list.value==1){document.MassUpdate.select_entire_list.value=0;sListView.check_all(document.MassUpdate, \"mass[]\", true, $pageTotal)}else {sListView.check_all(document.MassUpdate, \"mass[]\", true)};\' href=\'#\'>{$app_strings['LBL_LISTVIEW_OPTION_CURRENT']}&nbsp;&#x28;{$pageTotal}&#x29;&#x200E;</a>"
286                         . "<a style=\'width: 150px\' name=\"selectall\" class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'sListView.check_entire_list(document.MassUpdate, \"mass[]\",true,{$total});\' href=\'#\'>{$app_strings['LBL_LISTVIEW_OPTION_ENTIRE']}&nbsp;&#x28;{$total}&#x29;&#x200E;</a>"
287                         . "<a style=\'width: 150px\' name=\"deselect\" class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'sListView.clear_all(document.MassUpdate, \"mass[]\", false);\' href=\'#\'>{$app_strings['LBL_LISTVIEW_NONE']}</a>"
288                         . "', CENTER, '"
289                         . "', STICKY, MOUSEOFF, 3000, CLOSETEXT, '<img border=0 src=" . SugarThemeRegistry::current()->getImageURL('close_inline.gif')
290                         . ">', WIDTH, 150, CLOSETITLE, '" . $app_strings['LBL_ADDITIONAL_DETAILS_CLOSE_TITLE'] . "', CLOSECLICK, FGCLASS, 'olOptionsFgClass', "
291                         . "CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass', TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass', CLOSEFONTCLASS, 'olOptionsCloseFontClass',TIMEOUT,1000);
292                         }
293                         </script>";
294             $script .= "<a id='$id' onclick='return select_overlib();' href=\"#\"><img src='".SugarThemeRegistry::current()->getImageURL('MoreDetail.png')."' border='0''>"."</a>";
295
296                 return $script;
297         }
298
299         /**
300          * Display the actions link
301          *
302          * @param  string $id link id attribute, defaults to 'actions_link'
303          * @return string HTML source
304          */
305         protected function buildActionsLink(
306             $id = 'actions_link'
307             )
308         {
309             global $app_strings;
310                 $closeText = "<img border=0 src=" . SugarThemeRegistry::current()->getImageURL('close_inline.gif') . " />";
311                 $moreDetailImage = SugarThemeRegistry::current()->getImageURL('MoreDetail.png');
312                 $menuItems = '';
313
314                 // delete
315                 if ( ACLController::checkAccess($this->seed->module_dir,'delete',true) && $this->delete )
316                         $menuItems .= $this->buildDeleteLink();
317                 // compose email
318         if ( $this->email )
319                         $menuItems .= $this->buildComposeEmailLink($this->data['pageData']['offsets']['total']);
320                 // mass update
321                 $mass = new MassUpdate();
322                 $mass->setSugarBean($this->seed);
323                 if ( ACLController::checkAccess($this->seed->module_dir,'edit',true) && $this->showMassupdateFields && $mass->doMassUpdateFieldsExistForFocus() )
324             $menuItems .= $this->buildMassUpdateLink();
325                 // merge
326                 if ( $this->mailMerge )
327                     $menuItems .= $this->buildMergeLink();
328                 if ( $this->mergeduplicates )
329                     $menuItems .= $this->buildMergeDuplicatesLink();
330                 // add to target list
331                 if ( $this->targetList && ACLController::checkAccess('ProspectLists','edit',true) )
332                     $menuItems .= $this->buildTargetList();
333                 // export
334                 if ( ACLController::checkAccess($this->seed->module_dir,'export',true) && $this->export )
335                         $menuItems .= $this->buildExportLink();
336
337                 foreach ( $this->actionsMenuExtraItems as $item )
338                     $menuItems .= $item;
339
340                 $menuItems = str_replace('"','\"',$menuItems);
341                 $menuItems = str_replace(array("\r","\n"),'',$menuItems);
342
343                 if ( empty($menuItems) )
344                     return '';
345
346                 return <<<EOHTML
347 <script type="text/javascript">
348 <!--
349 function actions_overlib()
350 {
351     return overlib("{$menuItems}", CENTER, '', STICKY, MOUSEOFF, 3000, CLOSETEXT, "{$closeText}", WIDTH, 150,
352         CLOSETITLE, "{$app_strings['LBL_ADDITIONAL_DETAILS_CLOSE_TITLE']}", CLOSECLICK,
353         FGCLASS, 'olOptionsFgClass', CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass',
354         TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass',
355         CLOSEFONTCLASS, 'olOptionsCloseFontClass');
356 }
357 -->
358 </script>
359 <a id='$id' onclick='return actions_overlib();' href="#">
360     {$app_strings['LBL_LINK_ACTIONS']}&nbsp;<img src='{$moreDetailImage}' border='0' />
361 </a>
362 EOHTML;
363         }
364
365         /**
366          * Builds the export link
367          *
368          * @return string HTML
369          */
370         protected function buildExportLink()
371         {
372                 global $app_strings;
373                 return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"return sListView.send_form(true, '{$this->seed->module_dir}', 'index.php?entryPoint=export','{$app_strings['LBL_LISTVIEW_NO_SELECTED']}')\">{$app_strings['LBL_EXPORT']}</a>";
374         }
375
376         /**
377          * Builds the massupdate link
378          *
379          * @return string HTML
380          */
381         protected function buildMassUpdateLink()
382         {
383                 global $app_strings;
384
385                 return "<a href='#massupdate_form' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"document.getElementById('massupdate_form').style.display = '';\">{$app_strings['LBL_MASS_UPDATE']}</a>";
386         }
387
388         /**
389          * Builds the compose email link
390          *
391          * @return string HTML
392          */
393         protected function buildComposeEmailLink(
394             $totalCount
395             )
396         {
397                 global $app_strings,$dictionary;
398
399         if (!is_array($this->seed->field_defs)) {
400             return '';
401         }
402         $foundEmailField = false;
403         // Search for fields that look like an email address
404         foreach ($this->seed->field_defs as $field) {
405             if(isset($field['type'])&&$field['type']=='link'
406                &&isset($field['relationship'])&&isset($dictionary[$this->seed->object_name]['relationships'][$field['relationship']])
407                &&$dictionary[$this->seed->object_name]['relationships'][$field['relationship']]['rhs_module']=='EmailAddresses') {
408                 $foundEmailField = true;
409                 break;
410             }
411         }
412         if (!$foundEmailField) {
413             return '';
414         }
415
416
417                 $userPref = $GLOBALS['current_user']->getPreference('email_link_type');
418                 $defaultPref = $GLOBALS['sugar_config']['email_default_client'];
419                 if($userPref != '')
420                         $client = $userPref;
421                 else
422                         $client = $defaultPref;
423
424                 if($client == 'sugar')
425                         $script = "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
426                                         'onclick="return sListView.send_form_for_emails(true, \''."Emails".'\', \'index.php?module=Emails&action=Compose&ListView=true\',\''.$app_strings['LBL_LISTVIEW_NO_SELECTED'].'\', \''.$this->seed->module_dir.'\', \''.$totalCount.'\', \''.$app_strings['LBL_LISTVIEW_LESS_THAN_TEN_SELECT'].'\')">' .
427                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
428                 else
429                         $script = "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
430                                         "onclick=\"return sListView.use_external_mail_client('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', '{$_REQUEST['module']}');\">" .
431                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
432
433                 return $script;
434         } // fn
435         /**
436          * Builds the delete link
437          *
438          * @return string HTML
439          */
440         protected function buildDeleteLink()
441         {
442                 global $app_strings;
443
444                 return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"return sListView.send_mass_update('selected', '{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', 1)\">{$app_strings['LBL_DELETE_BUTTON_LABEL']}</a>";
445         }
446         /**
447          * Display the selected object span object
448          *
449      * @return string select object span
450          */
451         function buildSelectedObjectsSpan($echo = true, $total=0) {
452                 global $app_strings;
453
454                 $selectedObjectSpan = "<span style='display: inline-block;'>{$app_strings['LBL_LISTVIEW_SELECTED_OBJECTS']}<input  style='border: 0px; background: transparent; font-size: inherit; color: inherit' type='text' id='selectCountTop' readonly name='selectCount[]' value='{$total}' /></span>";
455
456         return $selectedObjectSpan;
457         }
458     /**
459          * Builds the mail merge link
460          * The link can be disabled by setting module level duplicate_merge property to false
461          * in the moudle's vardef file.
462          *
463          * @return string HTML
464          */
465         protected function buildMergeDuplicatesLink()
466         {
467         global $app_strings, $dictionary;
468
469         $return_string='';
470         $return_string.= isset($_REQUEST['module']) ? "&return_module={$_REQUEST['module']}" : "";
471         $return_string.= isset($_REQUEST['action']) ? "&return_action={$_REQUEST['action']}" : "";
472         $return_string.= isset($_REQUEST['record']) ? "&return_id={$_REQUEST['record']}" : "";
473         //need delete and edit access.
474                 if (!(ACLController::checkAccess($this->seed->module_dir, 'edit', true)) or !(ACLController::checkAccess($this->seed->module_dir, 'delete', true))) {
475                         return '';
476                 }
477
478         if (isset($dictionary[$this->seed->object_name]['duplicate_merge']) && $dictionary[$this->seed->object_name]['duplicate_merge']==true ) {
479             return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' ".
480                 "onclick='if (sugarListView.get_checks_count()> 1) {sListView.send_form(true, \"MergeRecords\", \"index.php\", \"{$app_strings['LBL_LISTVIEW_NO_SELECTED']}\", \"{$this->seed->module_dir}\",\"$return_string\");} else {alert(\"{$app_strings['LBL_LISTVIEW_TWO_REQUIRED']}\");return false;}'>".
481                 $app_strings['LBL_MERGE_DUPLICATES'].'</a>';
482         }
483
484         return '';
485      }
486     /**
487          * Builds the mail merge link
488          *
489          * @return string HTML
490          */
491         protected function buildMergeLink(array $modules_array = null)
492         {
493         if ( empty($modules_array) ) {
494             require('modules/MailMerge/modules_array.php');
495         }
496         global $current_user, $app_strings;
497
498         $admin = new Administration();
499         $admin->retrieveSettings('system');
500         $user_merge = $current_user->getPreference('mailmerge_on');
501         $module_dir = (!empty($this->seed->module_dir) ? $this->seed->module_dir : '');
502         $str = '';
503         
504         if ($user_merge == 'on' && isset($admin->settings['system_mailmerge_on']) && $admin->settings['system_mailmerge_on'] && !empty($modules_array[$module_dir])) {
505             $str = "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
506                                         'onclick="if (document.MassUpdate.select_entire_list.value==1){document.location.href=\'index.php?action=index&module=MailMerge&entire=true\'} else {return sListView.send_form(true, \'MailMerge\',\'index.php\',\''.$app_strings['LBL_LISTVIEW_NO_SELECTED'].'\');}">' .
507                                         $app_strings['LBL_MAILMERGE'].'</a>';
508         }
509         return $str;
510         }
511
512         /**
513          * Builds the add to target list link
514          *
515      * @return string HTML
516          */
517         protected function buildTargetList()
518         {
519         global $app_strings;
520                 unset($_REQUEST[session_name()]);
521                 unset($_REQUEST['PHPSESSID']);
522         $current_query_by_page = base64_encode(serialize($_REQUEST));
523
524                 $js = <<<EOF
525             if(sugarListView.get_checks_count() < 1) {
526                 alert('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}');
527                 return false;
528             }
529                         if ( document.forms['targetlist_form'] ) {
530                                 var form = document.forms['targetlist_form'];
531                                 form.reset;
532                         } else
533                                 var form = document.createElement ( 'form' ) ;
534                         form.setAttribute ( 'name' , 'targetlist_form' );
535                         form.setAttribute ( 'method' , 'post' ) ;
536                         form.setAttribute ( 'action' , 'index.php' );
537                         document.body.appendChild ( form ) ;
538                         if ( !form.module ) {
539                             var input = document.createElement('input');
540                             input.setAttribute ( 'name' , 'module' );
541                             input.setAttribute ( 'value' , '{$this->seed->module_dir}' );
542                             input.setAttribute ( 'type' , 'hidden' );
543                             form.appendChild ( input ) ;
544                             var input = document.createElement('input');
545                             input.setAttribute ( 'name' , 'action' );
546                             input.setAttribute ( 'value' , 'TargetListUpdate' );
547                             input.setAttribute ( 'type' , 'hidden' );
548                             form.appendChild ( input ) ;
549                         }
550                         if ( !form.uids ) {
551                             var input = document.createElement('input');
552                             input.setAttribute ( 'name' , 'uids' );
553                             input.setAttribute ( 'type' , 'hidden' );
554                             form.appendChild ( input ) ;
555                         }
556                         if ( !form.prospect_list ) {
557                             var input = document.createElement('input');
558                             input.setAttribute ( 'name' , 'prospect_list' );
559                             input.setAttribute ( 'type' , 'hidden' );
560                             form.appendChild ( input ) ;
561                         }
562                         if ( !form.return_module ) {
563                             var input = document.createElement('input');
564                             input.setAttribute ( 'name' , 'return_module' );
565                             input.setAttribute ( 'type' , 'hidden' );
566                             form.appendChild ( input ) ;
567                         }
568                         if ( !form.return_action ) {
569                             var input = document.createElement('input');
570                             input.setAttribute ( 'name' , 'return_action' );
571                             input.setAttribute ( 'type' , 'hidden' );
572                             form.appendChild ( input ) ;
573                         }
574                         if ( !form.select_entire_list ) {
575                             var input = document.createElement('input');
576                             input.setAttribute ( 'name' , 'select_entire_list' );
577                             input.setAttribute ( 'value', document.MassUpdate.select_entire_list.value);
578                             input.setAttribute ( 'type' , 'hidden' );
579                             form.appendChild ( input ) ;
580                         }
581                         if ( !form.current_query_by_page ) {
582                             var input = document.createElement('input');
583                             input.setAttribute ( 'name' , 'current_query_by_page' );
584                             input.setAttribute ( 'value', '{$current_query_by_page}' );
585                             input.setAttribute ( 'type' , 'hidden' );
586                             form.appendChild ( input ) ;
587                         }
588                         open_popup('ProspectLists','600','400','',true,false,{ 'call_back_function':'set_return_and_save_targetlist','form_name':'targetlist_form','field_to_name_array':{'id':'prospect_list'} } );
589 EOF;
590         $js = str_replace(array("\r","\n"),'',$js);
591         return "<a href='#' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick=\"$js\">{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}</a>";
592         }
593         /**
594          * Display the bottom of the ListView (ie MassUpdate
595          * @return string contents
596          */
597         public function displayEnd() 
598         {
599                 $str = '';
600                 if($this->show_mass_update_form) {
601                         $str .= $this->mass->getMassUpdateForm(true);
602                         $str .= $this->mass->endMassUpdateForm();
603                 }
604
605                 return $str;
606         }
607
608     /**
609      * Display the multi select data box etc.
610      * @return string contents
611      */
612         public function getMultiSelectData() 
613         {
614                 $str = "<script>YAHOO.util.Event.addListener(window, \"load\", sListView.check_boxes);</script>\n";
615
616                 $massUpdateRun = isset($_REQUEST['massupdate']) && $_REQUEST['massupdate'] == 'true';
617                 $uids = empty($_REQUEST['uid']) || $massUpdateRun ? '' : $_REQUEST['uid'];
618                 $select_entire_list = isset($_REQUEST['select_entire_list']) && !$massUpdateRun ? $_REQUEST['select_entire_list'] : 0;
619
620                 $str .= "<textarea style='display: none' name='uid'>{$uids}</textarea>\n" .
621                                 "<input type='hidden' name='select_entire_list' value='{$select_entire_list}'>\n".
622                                 "<input type='hidden' name='{$this->moduleString}' value='0'>\n".
623                         "<input type='hidden' name='show_plus' value='{$this->show_plus}'>\n";
624                 return $str;
625         }
626
627 }
628 ?>