]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ListView/ListViewDisplay.php
Release 6.5.0RC2
[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-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39
40
41 require_once('include/ListView/ListViewData.php');
42 require_once('include/MassUpdate.php');
43
44 class ListViewDisplay {
45     static $listViewCounter = 0;
46
47         var $show_mass_update_form = false;
48         var $show_action_dropdown = true;
49         var $rowCount;
50         var $mass = null;
51         var $seed;
52         var $multi_select_popup;
53         var $lvd;
54         var $moduleString;
55         var $export = true;
56         var $multiSelect = true;
57         var $mailMerge = true;
58         var $should_process = true;
59         var $show_plus = false;
60         /*
61          * Used in view.popup.php. Sometimes there are fields on the search form that are not referenced in the listviewdefs. If this
62          * is the case, then the filterFields will be set and the related fields will not be referenced when calling create_new_list_query.
63          */
64         var $mergeDisplayColumns = false;
65     public $actionsMenuExtraItems = array();
66
67         /**
68          * Constructor
69          * @return null
70          */
71         function ListViewDisplay() {
72                 $this->lvd = new ListViewData();
73                 $this->searchColumns = array () ;
74         }
75         function shouldProcess($moduleDir){
76                 $searching = false;
77                 $sessionSearchQuery = "{$moduleDir}2_QUERY_QUERY";
78                 if (!empty($_SESSION[$sessionSearchQuery])) {
79                         $searching = true;
80                 }
81                 if(!empty($GLOBALS['sugar_config']['save_query']) && $GLOBALS['sugar_config']['save_query'] == 'populate_only'){
82                     if(empty($GLOBALS['displayListView']) 
83                             && (!empty($_REQUEST['clear_query']) 
84                                 || $_REQUEST['module'] == $moduleDir 
85                                     && ((empty($_REQUEST['query']) || $_REQUEST['query'] == 'MSI' )
86                                         && (!$searching)))) {
87                                 $_SESSION['last_search_mod'] = $_REQUEST['module'] ;
88                                 $this->should_process = false;
89                                 return false;
90                         }
91                 }
92                 $this->should_process = true;
93                 return true;
94         }
95
96         /**
97          * Setup the class
98          * @param seed SugarBean Seed SugarBean to use
99          * @param file File Template file to use
100          * @param string $where
101          * @param offset:0 int offset to start at
102          * @param int:-1 $limit
103          * @param string[]:array() $filter_fields
104          * @param array:array() $params
105          *      Potential $params are
106                 $params['distinct'] = use distinct key word
107                 $params['include_custom_fields'] = (on by default)
108                 $params['massupdate'] = true by default;
109         $params['handleMassupdate'] = true by default, have massupdate.php handle massupdates?
110          * @param string:'id' $id_field
111          */
112         function setup($seed, $file, $where, $params = array(), $offset = 0, $limit = -1,  $filter_fields = array(), $id_field = 'id') {
113         $this->should_process = true;
114         if(isset($seed->module_dir) && !$this->shouldProcess($seed->module_dir)){
115                         return false;
116         }
117         if(isset($params['export'])) {
118           $this->export = $params['export'];
119         }
120         if(!empty($params['multiSelectPopup'])) {
121                   $this->multi_select_popup = $params['multiSelectPopup'];
122         }
123                 if(!empty($params['massupdate']) && $params['massupdate'] != false) {
124                         $this->show_mass_update_form = true;
125                         $this->mass = $this->getMassUpdate();
126                         $this->mass->setSugarBean($seed);
127                         if(!empty($params['handleMassupdate']) || !isset($params['handleMassupdate'])) {
128                 $this->mass->handleMassUpdate();
129             }
130                 }
131                 $this->seed = $seed;
132
133         $filter_fields = $this->setupFilterFields($filter_fields);
134
135         $data = $this->lvd->getListViewData($seed, $where, $offset, $limit, $filter_fields, $params, $id_field);
136
137                 foreach($this->displayColumns as $columnName => $def)
138                 {
139                         $seedName =  strtolower($columnName);
140             if(!empty($this->lvd->seed->field_defs[$seedName])){
141                 $seedDef = $this->lvd->seed->field_defs[$seedName];
142             }
143
144                         if(empty($this->displayColumns[$columnName]['type'])){
145                                 if(!empty($seedDef['type'])){
146                             $this->displayColumns[$columnName]['type'] = (!empty($seedDef['custom_type']))?$seedDef['custom_type']:$seedDef['type'];
147                         }else{
148                                 $this->displayColumns[$columnName]['type'] = '';
149                         }
150                         }//fi empty(...)
151
152                         if(!empty($seedDef['options'])){
153                                         $this->displayColumns[$columnName]['options'] = $seedDef['options'];
154                         }
155
156                 //C.L. Fix for 11177
157                 if($this->displayColumns[$columnName]['type'] == 'html') {
158                     $cField = $this->seed->custom_fields;
159                        if(isset($cField) && isset($cField->bean->$seedName)) {
160                                 $seedName2 = strtoupper($columnName);
161                                 $htmlDisplay = html_entity_decode($cField->bean->$seedName);
162                                 $count = 0;
163                                 while($count < count($data['data'])) {
164                                         $data['data'][$count][$seedName2] = &$htmlDisplay;
165                                     $count++;
166                                 }
167                         }
168                 }//fi == 'html'
169
170             //Bug 40511, make sure relate fields have the correct module defined
171             if ($this->displayColumns[$columnName]['type'] == "relate" && !empty($seedDef['link']) && empty( $this->displayColumns[$columnName]['module']))
172             {
173                 $link = $seedDef['link'];
174                 if (!empty($this->lvd->seed->field_defs[$link]) && !empty($this->lvd->seed->field_defs[$seedDef['link']]['module']))
175                 {
176                     $this->displayColumns[$columnName]['module'] = $this->lvd->seed->field_defs[$seedDef['link']]['module'];
177                 }
178             }
179
180                         if (!empty($seedDef['sort_on'])) {
181                         $this->displayColumns[$columnName]['orderBy'] = $seedDef['sort_on'];
182                     }
183
184             if(isset($seedDef)){
185                 // Merge the two arrays together, making sure the seedDef doesn't override anything explicitly set in the displayColumns array.
186                 $this->displayColumns[$columnName] = $this->displayColumns[$columnName] + $seedDef;
187             }
188
189                     //C.L. Bug 38388 - ensure that ['id'] is set for related fields
190             if(!isset($this->displayColumns[$columnName]['id']) && isset($this->displayColumns[$columnName]['id_name'])) {
191                $this->displayColumns[$columnName]['id'] = strtoupper($this->displayColumns[$columnName]['id_name']);
192             }
193                 }
194
195                 $this->process($file, $data, $seed->object_name);
196                 return true;
197         }
198
199         function setupFilterFields($filter_fields = array())
200         {
201                 // create filter fields based off of display columns
202         if(empty($filter_fields) || $this->mergeDisplayColumns) {
203             foreach($this->displayColumns as $columnName => $def) {
204
205                $filter_fields[strtolower($columnName)] = true;
206
207             if(isset($this->seed->field_defs[strtolower($columnName)]['type']) &&
208                strtolower($this->seed->field_defs[strtolower($columnName)]['type']) == 'currency' &&
209                isset($this->seed->field_defs['currency_id'])) {
210                     $filter_fields['currency_id'] = true;
211             }
212
213                if(!empty($def['related_fields'])) {
214                     foreach($def['related_fields'] as $field) {
215                         //id column is added by query construction function. This addition creates duplicates
216                         //and causes issues in oracle. #10165
217                         if ($field != 'id') {
218                             $filter_fields[$field] = true;
219                         }
220                     }
221                 }
222                 if (!empty($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'])) {
223                     foreach($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'] as $index=>$field){
224                         if(!isset($filter_fields[strtolower($field)]) || !$filter_fields[strtolower($field)])
225                         {
226                             $filter_fields[strtolower($field)] = true;
227                         }
228                     }
229                 }
230             }
231             foreach ($this->searchColumns as $columnName => $def )
232             {
233                 $filter_fields[strtolower($columnName)] = true;
234             }
235         }
236
237
238         return $filter_fields;
239         }
240
241
242         /**
243          * Any additional processing
244          * @param file File template file to use
245          * @param data array row data
246          * @param html_var string html string to be passed back and forth
247          */
248         function process($file, $data, $htmlVar) {
249                 $this->rowCount = count($data['data']);
250                 $this->moduleString = $data['pageData']['bean']['moduleDir'] . '2_' . strtoupper($htmlVar) . '_offset';
251         }
252
253         /**
254          * Display the listview
255          * @return string ListView contents
256          */
257         public function display() 
258         {
259                 if (!$this->should_process) {
260                     return '';
261                 }
262                 
263                 $str = '';
264                 if ($this->show_mass_update_form) {
265                         $str = $this->mass->getDisplayMassUpdateForm(true, $this->multi_select_popup).$this->mass->getMassUpdateFormHeader($this->multi_select_popup);
266                 }
267         
268                 return $str;
269         }
270         /**
271          * Display the select link
272      * @return string select link html
273          * @param echo Bool set true if you want it echo'd, set false to have contents returned
274          */
275         function buildSelectLink($id = 'select_link', $total=0, $pageTotal=0, $location="top") {
276                 global $app_strings;
277                 if ($pageTotal < 0)
278                         $pageTotal = $total;
279                 $plus = '';
280                 if (!empty($GLOBALS['sugar_config']['disable_count_query']) && $total > $pageTotal) {
281                         $plus = '+';
282                         $this->show_plus = true;
283                 }
284
285
286                 $close_inline_img = SugarThemeRegistry::current()->getImage('close_inline', 'border=0', null, null, ".gif", $app_strings['LBL_CLOSEINLINE']);
287                 $menuItems = array(
288             "<input title=\"".$app_strings['LBL_SELECT_ALL_TITLE']."\" type='checkbox' class='checkbox massall' name='massall' id='massall_".$location."' value='' onclick='sListView.check_all(document.MassUpdate, \"mass[]\", this.checked);' /><a id='$id'  href='javascript: void(0);'></a>",
289             "<a  name='thispage' id='button_select_this_page_".$location."' 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>",
290             "<a  name='selectall' id='button_select_all_".$location."' 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>",
291             "<a name='deselect' id='button_deselect_".$location."' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' onclick='sListView.clear_all(document.MassUpdate, \"mass[]\", false);' href='#'>{$app_strings['LBL_LISTVIEW_NONE']}</a>",
292         );
293
294         $link = array(
295             'class' => 'clickMenu selectmenu',
296             'id' => 'selectLink',
297             'buttons' => $menuItems
298         );
299         return $link;
300         }
301
302         /**
303          * Display the actions link
304          *
305          * @param  string $id link id attribute, defaults to 'actions_link'
306          * @return string HTML source
307          */
308         protected function buildActionsLink($id = 'actions_link', $location = 'top')
309         {
310             global $app_strings;
311                 $closeText = SugarThemeRegistry::current()->getImage('close_inline', 'border=0', null, null, ".gif", $app_strings['LBL_CLOSEINLINE']);
312                 $moreDetailImage = SugarThemeRegistry::current()->getImageURL('MoreDetail.png');
313                 $menuItems = array();
314
315                 // delete
316                 if ( ACLController::checkAccess($this->seed->module_dir,'delete',true) && $this->delete )
317                         $menuItems[] = $this->buildDeleteLink($location);
318                 // compose email
319         if ( $this->email )
320                         $menuItems[] = $this->buildComposeEmailLink($this->data['pageData']['offsets']['total'], $location);
321                 // mass update
322                 $mass = $this->getMassUpdate();
323                 $mass->setSugarBean($this->seed);
324                 if ( ( ACLController::checkAccess($this->seed->module_dir,'edit',true) && ACLController::checkAccess($this->seed->module_dir,'massupdate',true) ) && $this->showMassupdateFields && $mass->doMassUpdateFieldsExistForFocus() )
325             $menuItems[] = $this->buildMassUpdateLink($location);
326                 // merge
327                 if ( $this->mailMerge )
328                     $menuItems[] = $this->buildMergeLink(null, $location);
329                 if ( $this->mergeduplicates )
330                     $menuItems[] = $this->buildMergeDuplicatesLink($location);
331                 // add to target list
332                 if ( $this->targetList && ACLController::checkAccess('ProspectLists','edit',true) )
333                     $menuItems[] = $this->buildTargetList($location);
334                 // export
335                 if ( ACLController::checkAccess($this->seed->module_dir,'export',true) && $this->export )
336                         $menuItems[] = $this->buildExportLink($location);
337
338                 foreach ( $this->actionsMenuExtraItems as $item )
339                     $menuItems[] = $item;
340
341         $link = array(
342             'class' => 'clickMenu selectActions fancymenu',
343             'id' => 'selectActions',
344             'name' => 'selectActions',
345             'buttons' => $menuItems
346         );
347         return $link;
348
349 }
350         /**
351          * Builds the export link
352          *
353          * @return string HTML
354          */
355         protected function buildExportLink($loc = 'top')
356         {
357                 global $app_strings;
358                 return "<a href='javascript:void(0)' id=\"export_listview_". $loc ." \" 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>";
359     }
360
361         /**
362          * Builds the massupdate link
363          *
364          * @return string HTML
365          */
366         protected function buildMassUpdateLink($loc = 'top')
367         {
368                 global $app_strings;
369
370         $onClick = "document.getElementById('massupdate_form').style.display = ''; var yLoc = YAHOO.util.Dom.getY('massupdate_form'); scroll(0,yLoc);";
371                 return "<a href='javascript:void(0)' id=\"massupdate_listview_". $loc ."\" onclick=\"$onClick\">{$app_strings['LBL_MASS_UPDATE']}</a>";
372
373         }
374
375         /**
376          * Builds the compose email link
377          *
378          * @return string HTML
379          */
380         protected function buildComposeEmailLink($totalCount, $loc = 'top')
381         {
382                 global $app_strings,$dictionary;
383
384         if (!is_array($this->seed->field_defs)) {
385             return '';
386         }
387         $foundEmailField = false;
388         // Search for fields that look like an email address
389         foreach ($this->seed->field_defs as $field) {
390             if(isset($field['type'])&&$field['type']=='link'
391                &&isset($field['relationship'])&&isset($dictionary[$this->seed->object_name]['relationships'][$field['relationship']])
392                &&$dictionary[$this->seed->object_name]['relationships'][$field['relationship']]['rhs_module']=='EmailAddresses') {
393                 $foundEmailField = true;
394                 break;
395             }
396         }
397         if (!$foundEmailField) {
398             return '';
399         }
400
401
402                 $userPref = $GLOBALS['current_user']->getPreference('email_link_type');
403                 $defaultPref = $GLOBALS['sugar_config']['email_default_client'];
404                 if($userPref != '')
405                         $client = $userPref;
406                 else
407                         $client = $defaultPref;
408
409                 if($client == 'sugar')
410                         $script = "<a href='javascript:void(0)' " .
411                     "id=\"composeemail_listview_". $loc ."\"".
412                                         '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'].'\')">' .
413                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
414                 else
415                         $script = "<a href='javascript:void(0)' " .
416                     "id=\"composeemail_listview_". $loc ."\"".
417                                         "onclick=\"return sListView.use_external_mail_client('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', '{$_REQUEST['module']}');\">" .
418                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
419
420         return $script;
421         } // fn
422         /**
423          * Builds the delete link
424          *
425          * @return string HTML
426          */
427         protected function buildDeleteLink($loc = 'top')
428         {
429                 global $app_strings;
430         return "<a href='javascript:void(0)' id=\"delete_listview_". $loc ."\" onclick=\"return sListView.send_mass_update('selected', '{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', 1)\">{$app_strings['LBL_DELETE_BUTTON_LABEL']}</a>";
431         }
432         /**
433          * Display the selected object span object
434          *
435      * @return string select object span
436          */
437         function buildSelectedObjectsSpan($echo = true, $total=0) {
438                 global $app_strings;
439
440         $displayStyle = $total > 0 ? "" : "display: none;";
441                 $selectedObjectSpan = "<span style='$displayStyle' id='selectedRecordsTop'>{$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>";
442
443         return $selectedObjectSpan;
444         }
445     /**
446          * Builds the mail merge link
447          * The link can be disabled by setting module level duplicate_merge property to false
448          * in the moudle's vardef file.
449          *
450          * @return string HTML
451          */
452         protected function buildMergeDuplicatesLink($loc = 'top')
453         {
454         global $app_strings, $dictionary;
455
456         $return_string='';
457         $return_string.= isset($_REQUEST['module']) ? "&return_module={$_REQUEST['module']}" : "";
458         $return_string.= isset($_REQUEST['action']) ? "&return_action={$_REQUEST['action']}" : "";
459         $return_string.= isset($_REQUEST['record']) ? "&return_id={$_REQUEST['record']}" : "";
460         //need delete and edit access.
461                 if (!(ACLController::checkAccess($this->seed->module_dir, 'edit', true)) or !(ACLController::checkAccess($this->seed->module_dir, 'delete', true))) {
462                         return "";
463                 }
464
465         if (isset($dictionary[$this->seed->object_name]['duplicate_merge']) && $dictionary[$this->seed->object_name]['duplicate_merge']==true ) {
466             return "<a href='javascript:void(0)' ".
467                             "id='mergeduplicates_listview_". $loc ."'".
468                             "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;}'>".
469                             $app_strings['LBL_MERGE_DUPLICATES'].'</a>';
470         }
471
472         return "";
473      }
474     /**
475          * Builds the mail merge link
476          *
477          * @return string HTML
478          */
479         protected function buildMergeLink(array $modules_array = null, $loc = 'top')
480         {
481         if ( empty($modules_array) ) {
482             require('modules/MailMerge/modules_array.php');
483         }
484         global $current_user, $app_strings;
485
486         $admin = new Administration();
487         $admin->retrieveSettings('system');
488         $user_merge = $current_user->getPreference('mailmerge_on');
489         $module_dir = (!empty($this->seed->module_dir) ? $this->seed->module_dir : '');
490         $str = '';
491         
492         if ($user_merge == 'on' && isset($admin->settings['system_mailmerge_on']) && $admin->settings['system_mailmerge_on'] && !empty($modules_array[$module_dir])) {
493             return "<a href='javascript:void(0)'  " .
494                     "id='merge_listview_". $loc ."'"  .
495                                         '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'].'\');}">' .
496                                         $app_strings['LBL_MAILMERGE'].'</a>';
497         }
498         return $str;
499         }
500
501         /**
502          * Builds the add to target list link
503          *
504      * @return string HTML
505          */
506         protected function buildTargetList($loc = 'top')
507         {
508         global $app_strings;
509                 unset($_REQUEST[session_name()]);
510                 unset($_REQUEST['PHPSESSID']);
511         $current_query_by_page = base64_encode(serialize($_REQUEST));
512
513                 $js = <<<EOF
514             if(sugarListView.get_checks_count() < 1) {
515                 alert('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}');
516                 return false;
517             }
518                         if ( document.forms['targetlist_form'] ) {
519                                 var form = document.forms['targetlist_form'];
520                                 form.reset;
521                         } else
522                                 var form = document.createElement ( 'form' ) ;
523                         form.setAttribute ( 'name' , 'targetlist_form' );
524                         form.setAttribute ( 'method' , 'post' ) ;
525                         form.setAttribute ( 'action' , 'index.php' );
526                         document.body.appendChild ( form ) ;
527                         if ( !form.module ) {
528                             var input = document.createElement('input');
529                             input.setAttribute ( 'name' , 'module' );
530                             input.setAttribute ( 'value' , '{$this->seed->module_dir}' );
531                             input.setAttribute ( 'type' , 'hidden' );
532                             form.appendChild ( input ) ;
533                             var input = document.createElement('input');
534                             input.setAttribute ( 'name' , 'action' );
535                             input.setAttribute ( 'value' , 'TargetListUpdate' );
536                             input.setAttribute ( 'type' , 'hidden' );
537                             form.appendChild ( input ) ;
538                         }
539                         if ( !form.uids ) {
540                             var input = document.createElement('input');
541                             input.setAttribute ( 'name' , 'uids' );
542                             input.setAttribute ( 'type' , 'hidden' );
543                             form.appendChild ( input ) ;
544                         }
545                         if ( !form.prospect_list ) {
546                             var input = document.createElement('input');
547                             input.setAttribute ( 'name' , 'prospect_list' );
548                             input.setAttribute ( 'type' , 'hidden' );
549                             form.appendChild ( input ) ;
550                         }
551                         if ( !form.return_module ) {
552                             var input = document.createElement('input');
553                             input.setAttribute ( 'name' , 'return_module' );
554                             input.setAttribute ( 'type' , 'hidden' );
555                             form.appendChild ( input ) ;
556                         }
557                         if ( !form.return_action ) {
558                             var input = document.createElement('input');
559                             input.setAttribute ( 'name' , 'return_action' );
560                             input.setAttribute ( 'type' , 'hidden' );
561                             form.appendChild ( input ) ;
562                         }
563                         if ( !form.select_entire_list ) {
564                             var input = document.createElement('input');
565                             input.setAttribute ( 'name' , 'select_entire_list' );
566                             input.setAttribute ( 'value', document.MassUpdate.select_entire_list.value);
567                             input.setAttribute ( 'type' , 'hidden' );
568                             form.appendChild ( input ) ;
569                         }
570                         if ( !form.current_query_by_page ) {
571                             var input = document.createElement('input');
572                             input.setAttribute ( 'name' , 'current_query_by_page' );
573                             input.setAttribute ( 'value', '{$current_query_by_page}' );
574                             input.setAttribute ( 'type' , 'hidden' );
575                             form.appendChild ( input ) ;
576                         }
577                         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'} } );
578 EOF;
579         $js = str_replace(array("\r","\n"),'',$js);
580         return "<a href='javascript:void(0)' id=\"targetlist_listview_". $loc ." \" onclick=\"$js\">{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}</a>";
581         }
582         /**
583          * Display the bottom of the ListView (ie MassUpdate
584          * @return string contents
585          */
586         public function displayEnd() 
587         {
588                 $str = '';
589                 if($this->show_mass_update_form) {
590                         $str .= $this->mass->getMassUpdateForm(true);
591                         $str .= $this->mass->endMassUpdateForm();
592                 }
593
594                 return $str;
595         }
596
597     /**
598      * Display the multi select data box etc.
599      * @return string contents
600      */
601         public function getMultiSelectData() 
602         {
603                 $str = "<script>YAHOO.util.Event.addListener(window, \"load\", sListView.check_boxes);</script>\n";
604
605                 $massUpdateRun = isset($_REQUEST['massupdate']) && $_REQUEST['massupdate'] == 'true';
606                 $uids = empty($_REQUEST['uid']) || $massUpdateRun ? '' : $_REQUEST['uid'];
607                 $select_entire_list = isset($_REQUEST['select_entire_list']) && !$massUpdateRun ? $_REQUEST['select_entire_list'] : 0;
608
609                 $str .= "<textarea style='display: none' name='uid'>{$uids}</textarea>\n" .
610                                 "<input type='hidden' name='select_entire_list' value='{$select_entire_list}'>\n".
611                                 "<input type='hidden' name='{$this->moduleString}' value='0'>\n".
612                         "<input type='hidden' name='show_plus' value='{$this->show_plus}'>\n";
613                 return $str;
614         }
615
616      /**
617      * @return MassUpdate instance
618      */
619     protected function getMassUpdate()
620     {
621         return new MassUpdate();
622     }
623 }