]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ListView/ListViewDisplay.php
Release 6.5.0
[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
280
281         $total_label = "";
282         if (!empty($GLOBALS['sugar_config']['disable_count_query']) && $GLOBALS['sugar_config']['disable_count_query'] === true && $total > $pageTotal) {
283             $this->show_plus = true;
284             $total_label =  $pageTotal.'+';
285             $total = $pageTotal;
286         } else {
287             $total_label = $total;
288         }
289
290                 $close_inline_img = SugarThemeRegistry::current()->getImage('close_inline', 'border=0', null, null, ".gif", $app_strings['LBL_CLOSEINLINE']);
291                 $menuItems = array(
292             "<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>",
293             "<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>",
294             "<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_label}&#x29;&#x200E;</a>",
295             "<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>",
296         );
297
298         $link = array(
299             'class' => 'clickMenu selectmenu',
300             'id' => 'selectLink',
301             'buttons' => $menuItems
302         );
303         return $link;
304         }
305
306         /**
307          * Display the actions link
308          *
309          * @param  string $id link id attribute, defaults to 'actions_link'
310          * @return string HTML source
311          */
312         protected function buildActionsLink($id = 'actions_link', $location = 'top')
313         {
314             global $app_strings;
315                 $closeText = SugarThemeRegistry::current()->getImage('close_inline', 'border=0', null, null, ".gif", $app_strings['LBL_CLOSEINLINE']);
316                 $moreDetailImage = SugarThemeRegistry::current()->getImageURL('MoreDetail.png');
317                 $menuItems = array();
318
319                 // delete
320                 if ( ACLController::checkAccess($this->seed->module_dir,'delete',true) && $this->delete )
321                         $menuItems[] = $this->buildDeleteLink($location);
322                 // compose email
323         if ( $this->email )
324                         $menuItems[] = $this->buildComposeEmailLink($this->data['pageData']['offsets']['total'], $location);
325                 // mass update
326                 $mass = $this->getMassUpdate();
327                 $mass->setSugarBean($this->seed);
328                 if ( ( ACLController::checkAccess($this->seed->module_dir,'edit',true) && ACLController::checkAccess($this->seed->module_dir,'massupdate',true) ) && $this->showMassupdateFields && $mass->doMassUpdateFieldsExistForFocus() )
329             $menuItems[] = $this->buildMassUpdateLink($location);
330                 // merge
331                 if ( $this->mailMerge )
332                     $menuItems[] = $this->buildMergeLink(null, $location);
333                 if ( $this->mergeduplicates )
334                     $menuItems[] = $this->buildMergeDuplicatesLink($location);
335                 // add to target list
336                 if ( $this->targetList && ACLController::checkAccess('ProspectLists','edit',true) )
337                     $menuItems[] = $this->buildTargetList($location);
338                 // export
339                 if ( ACLController::checkAccess($this->seed->module_dir,'export',true) && $this->export )
340                         $menuItems[] = $this->buildExportLink($location);
341
342                 foreach ( $this->actionsMenuExtraItems as $item )
343                     $menuItems[] = $item;
344
345         $link = array(
346             'class' => 'clickMenu selectActions fancymenu',
347             'id' => 'selectActions',
348             'name' => 'selectActions',
349             'buttons' => $menuItems
350         );
351         return $link;
352
353 }
354         /**
355          * Builds the export link
356          *
357          * @return string HTML
358          */
359         protected function buildExportLink($loc = 'top')
360         {
361                 global $app_strings;
362                 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>";
363     }
364
365         /**
366          * Builds the massupdate link
367          *
368          * @return string HTML
369          */
370         protected function buildMassUpdateLink($loc = 'top')
371         {
372                 global $app_strings;
373
374         $onClick = "document.getElementById('massupdate_form').style.display = ''; var yLoc = YAHOO.util.Dom.getY('massupdate_form'); scroll(0,yLoc);";
375                 return "<a href='javascript:void(0)' id=\"massupdate_listview_". $loc ."\" onclick=\"$onClick\">{$app_strings['LBL_MASS_UPDATE']}</a>";
376
377         }
378
379         /**
380          * Builds the compose email link
381          *
382          * @return string HTML
383          */
384         protected function buildComposeEmailLink($totalCount, $loc = 'top')
385         {
386                 global $app_strings,$dictionary;
387
388         if (!is_array($this->seed->field_defs)) {
389             return '';
390         }
391         $foundEmailField = false;
392         // Search for fields that look like an email address
393         foreach ($this->seed->field_defs as $field) {
394             if(isset($field['type'])&&$field['type']=='link'
395                &&isset($field['relationship'])&&isset($dictionary[$this->seed->object_name]['relationships'][$field['relationship']])
396                &&$dictionary[$this->seed->object_name]['relationships'][$field['relationship']]['rhs_module']=='EmailAddresses') {
397                 $foundEmailField = true;
398                 break;
399             }
400         }
401         if (!$foundEmailField) {
402             return '';
403         }
404
405
406                 $userPref = $GLOBALS['current_user']->getPreference('email_link_type');
407                 $defaultPref = $GLOBALS['sugar_config']['email_default_client'];
408                 if($userPref != '')
409                         $client = $userPref;
410                 else
411                         $client = $defaultPref;
412
413                 if($client == 'sugar')
414                         $script = "<a href='javascript:void(0)' " .
415                     "id=\"composeemail_listview_". $loc ."\"".
416                                         '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'].'\')">' .
417                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
418                 else
419                         $script = "<a href='javascript:void(0)' " .
420                     "id=\"composeemail_listview_". $loc ."\"".
421                                         "onclick=\"return sListView.use_external_mail_client('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', '{$_REQUEST['module']}');\">" .
422                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
423
424         return $script;
425         } // fn
426         /**
427          * Builds the delete link
428          *
429          * @return string HTML
430          */
431         protected function buildDeleteLink($loc = 'top')
432         {
433                 global $app_strings;
434         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>";
435         }
436         /**
437          * Display the selected object span object
438          *
439      * @return string select object span
440          */
441         function buildSelectedObjectsSpan($echo = true, $total=0) {
442                 global $app_strings;
443
444         $displayStyle = $total > 0 ? "" : "display: none;";
445                 $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>";
446
447         return $selectedObjectSpan;
448         }
449     /**
450          * Builds the mail merge link
451          * The link can be disabled by setting module level duplicate_merge property to false
452          * in the moudle's vardef file.
453          *
454          * @return string HTML
455          */
456         protected function buildMergeDuplicatesLink($loc = 'top')
457         {
458         global $app_strings, $dictionary;
459
460         $return_string='';
461         $return_string.= isset($_REQUEST['module']) ? "&return_module={$_REQUEST['module']}" : "";
462         $return_string.= isset($_REQUEST['action']) ? "&return_action={$_REQUEST['action']}" : "";
463         $return_string.= isset($_REQUEST['record']) ? "&return_id={$_REQUEST['record']}" : "";
464         //need delete and edit access.
465                 if (!(ACLController::checkAccess($this->seed->module_dir, 'edit', true)) or !(ACLController::checkAccess($this->seed->module_dir, 'delete', true))) {
466                         return "";
467                 }
468
469         if (isset($dictionary[$this->seed->object_name]['duplicate_merge']) && $dictionary[$this->seed->object_name]['duplicate_merge']==true ) {
470             return "<a href='javascript:void(0)' ".
471                             "id='mergeduplicates_listview_". $loc ."'".
472                             "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;}'>".
473                             $app_strings['LBL_MERGE_DUPLICATES'].'</a>';
474         }
475
476         return "";
477      }
478     /**
479          * Builds the mail merge link
480          *
481          * @return string HTML
482          */
483         protected function buildMergeLink(array $modules_array = null, $loc = 'top')
484         {
485         if ( empty($modules_array) ) {
486             require('modules/MailMerge/modules_array.php');
487         }
488         global $current_user, $app_strings;
489
490         $admin = new Administration();
491         $admin->retrieveSettings('system');
492         $user_merge = $current_user->getPreference('mailmerge_on');
493         $module_dir = (!empty($this->seed->module_dir) ? $this->seed->module_dir : '');
494         $str = '';
495         
496         if ($user_merge == 'on' && isset($admin->settings['system_mailmerge_on']) && $admin->settings['system_mailmerge_on'] && !empty($modules_array[$module_dir])) {
497             return "<a href='javascript:void(0)'  " .
498                     "id='merge_listview_". $loc ."'"  .
499                                         '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'].'\');}">' .
500                                         $app_strings['LBL_MAILMERGE'].'</a>';
501         }
502         return $str;
503         }
504
505         /**
506          * Builds the add to target list link
507          *
508      * @return string HTML
509          */
510         protected function buildTargetList($loc = 'top')
511         {
512         global $app_strings;
513                 unset($_REQUEST[session_name()]);
514                 unset($_REQUEST['PHPSESSID']);
515         $current_query_by_page = base64_encode(serialize($_REQUEST));
516
517                 $js = <<<EOF
518             if(sugarListView.get_checks_count() < 1) {
519                 alert('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}');
520                 return false;
521             }
522                         if ( document.forms['targetlist_form'] ) {
523                                 var form = document.forms['targetlist_form'];
524                                 form.reset;
525                         } else
526                                 var form = document.createElement ( 'form' ) ;
527                         form.setAttribute ( 'name' , 'targetlist_form' );
528                         form.setAttribute ( 'method' , 'post' ) ;
529                         form.setAttribute ( 'action' , 'index.php' );
530                         document.body.appendChild ( form ) ;
531                         if ( !form.module ) {
532                             var input = document.createElement('input');
533                             input.setAttribute ( 'name' , 'module' );
534                             input.setAttribute ( 'value' , '{$this->seed->module_dir}' );
535                             input.setAttribute ( 'type' , 'hidden' );
536                             form.appendChild ( input ) ;
537                             var input = document.createElement('input');
538                             input.setAttribute ( 'name' , 'action' );
539                             input.setAttribute ( 'value' , 'TargetListUpdate' );
540                             input.setAttribute ( 'type' , 'hidden' );
541                             form.appendChild ( input ) ;
542                         }
543                         if ( !form.uids ) {
544                             var input = document.createElement('input');
545                             input.setAttribute ( 'name' , 'uids' );
546                             input.setAttribute ( 'type' , 'hidden' );
547                             form.appendChild ( input ) ;
548                         }
549                         if ( !form.prospect_list ) {
550                             var input = document.createElement('input');
551                             input.setAttribute ( 'name' , 'prospect_list' );
552                             input.setAttribute ( 'type' , 'hidden' );
553                             form.appendChild ( input ) ;
554                         }
555                         if ( !form.return_module ) {
556                             var input = document.createElement('input');
557                             input.setAttribute ( 'name' , 'return_module' );
558                             input.setAttribute ( 'type' , 'hidden' );
559                             form.appendChild ( input ) ;
560                         }
561                         if ( !form.return_action ) {
562                             var input = document.createElement('input');
563                             input.setAttribute ( 'name' , 'return_action' );
564                             input.setAttribute ( 'type' , 'hidden' );
565                             form.appendChild ( input ) ;
566                         }
567                         if ( !form.select_entire_list ) {
568                             var input = document.createElement('input');
569                             input.setAttribute ( 'name' , 'select_entire_list' );
570                             input.setAttribute ( 'value', document.MassUpdate.select_entire_list.value);
571                             input.setAttribute ( 'type' , 'hidden' );
572                             form.appendChild ( input ) ;
573                         }
574                         if ( !form.current_query_by_page ) {
575                             var input = document.createElement('input');
576                             input.setAttribute ( 'name' , 'current_query_by_page' );
577                             input.setAttribute ( 'value', '{$current_query_by_page}' );
578                             input.setAttribute ( 'type' , 'hidden' );
579                             form.appendChild ( input ) ;
580                         }
581                         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'} } );
582 EOF;
583         $js = str_replace(array("\r","\n"),'',$js);
584         return "<a href='javascript:void(0)' id=\"targetlist_listview_". $loc ." \" onclick=\"$js\">{$app_strings['LBL_ADD_TO_PROSPECT_LIST_BUTTON_LABEL']}</a>";
585         }
586         /**
587          * Display the bottom of the ListView (ie MassUpdate
588          * @return string contents
589          */
590         public function displayEnd() 
591         {
592                 $str = '';
593                 if($this->show_mass_update_form) {
594                         $str .= $this->mass->getMassUpdateForm(true);
595                         $str .= $this->mass->endMassUpdateForm();
596                 }
597
598                 return $str;
599         }
600
601     /**
602      * Display the multi select data box etc.
603      * @return string contents
604      */
605         public function getMultiSelectData() 
606         {
607                 $str = "<script>YAHOO.util.Event.addListener(window, \"load\", sListView.check_boxes);</script>\n";
608
609                 $massUpdateRun = isset($_REQUEST['massupdate']) && $_REQUEST['massupdate'] == 'true';
610                 $uids = empty($_REQUEST['uid']) || $massUpdateRun ? '' : $_REQUEST['uid'];
611         $select_entire_list = ($massUpdateRun) ? 0 : (isset($_POST['select_entire_list']) ? $_POST['select_entire_list'] : (isset($_REQUEST['select_entire_list']) ? $_REQUEST['select_entire_list'] : 0));
612
613                 $str .= "<textarea style='display: none' name='uid'>{$uids}</textarea>\n" .
614                                 "<input type='hidden' name='select_entire_list' value='{$select_entire_list}'>\n".
615                                 "<input type='hidden' name='{$this->moduleString}' value='0'>\n".
616                         "<input type='hidden' name='show_plus' value='{$this->show_plus}'>\n";
617                 return $str;
618         }
619
620      /**
621      * @return MassUpdate instance
622      */
623     protected function getMassUpdate()
624     {
625         return new MassUpdate();
626     }
627 }