]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/ListView/ListViewDisplay.php
Release 6.3.0beta5
[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                 if(!empty($GLOBALS['sugar_config']['save_query']) && $GLOBALS['sugar_config']['save_query'] == 'populate_only'){
76                     if(empty($GLOBALS['displayListView']) 
77                             && (!empty($_REQUEST['clear_query']) 
78                                 || $_REQUEST['module'] == $moduleDir 
79                                     && ((empty($_REQUEST['query']) || $_REQUEST['query'] == 'MSI' )
80                                         && (empty($_SESSION['last_search_mod']) || $_SESSION['last_search_mod'] != $moduleDir ) ))){
81                                 $_SESSION['last_search_mod'] = $_REQUEST['module'] ;
82                                 $this->should_process = false;
83                                 return false;
84                         }
85                 }
86                 $this->should_process = true;
87                 return true;
88         }
89
90         /**
91          * Setup the class
92          * @param seed SugarBean Seed SugarBean to use
93          * @param file File Template file to use
94          * @param string $where
95          * @param offset:0 int offset to start at
96          * @param int:-1 $limit
97          * @param string[]:array() $filter_fields
98          * @param array:array() $params
99          *      Potential $params are
100                 $params['distinct'] = use distinct key word
101                 $params['include_custom_fields'] = (on by default)
102                 $params['massupdate'] = true by default;
103         $params['handleMassupdate'] = true by default, have massupdate.php handle massupdates?
104          * @param string:'id' $id_field
105          */
106         function setup($seed, $file, $where, $params = array(), $offset = 0, $limit = -1,  $filter_fields = array(), $id_field = 'id') {
107         $this->should_process = true;
108         if(isset($seed->module_dir) && !$this->shouldProcess($seed->module_dir)){
109                         return false;
110         }
111         if(isset($params['export'])) {
112           $this->export = $params['export'];
113         }
114         if(!empty($params['multiSelectPopup'])) {
115                   $this->multi_select_popup = $params['multiSelectPopup'];
116         }
117                 if(!empty($params['massupdate']) && $params['massupdate'] != false) {
118                         $this->show_mass_update_form = true;
119                         $this->mass = new MassUpdate();
120                         $this->mass->setSugarBean($seed);
121                         if(!empty($params['handleMassupdate']) || !isset($params['handleMassupdate'])) {
122                 $this->mass->handleMassUpdate();
123             }
124                 }
125                 $this->seed = $seed;
126
127         $filter_fields = $this->setupFilterFields($filter_fields);
128
129         $data = $this->lvd->getListViewData($seed, $where, $offset, $limit, $filter_fields, $params, $id_field);
130
131                 foreach($this->displayColumns as $columnName => $def)
132                 {
133                         $seedName =  strtolower($columnName);
134             if(!empty($this->lvd->seed->field_defs[$seedName])){
135                 $seedDef = $this->lvd->seed->field_defs[$seedName];
136             }
137
138                         if(empty($this->displayColumns[$columnName]['type'])){
139                                 if(!empty($seedDef['type'])){
140                             $this->displayColumns[$columnName]['type'] = (!empty($seedDef['custom_type']))?$seedDef['custom_type']:$seedDef['type'];
141                         }else{
142                                 $this->displayColumns[$columnName]['type'] = '';
143                         }
144                         }//fi empty(...)
145
146                         if(!empty($seedDef['options'])){
147                                         $this->displayColumns[$columnName]['options'] = $seedDef['options'];
148                         }
149
150                 //C.L. Fix for 11177
151                 if($this->displayColumns[$columnName]['type'] == 'html') {
152                     $cField = $this->seed->custom_fields;
153                        if(isset($cField) && isset($cField->bean->$seedName)) {
154                                 $seedName2 = strtoupper($columnName);
155                                 $htmlDisplay = html_entity_decode($cField->bean->$seedName);
156                                 $count = 0;
157                                 while($count < count($data['data'])) {
158                                         $data['data'][$count][$seedName2] = &$htmlDisplay;
159                                     $count++;
160                                 }
161                         }
162                 }//fi == 'html'
163
164             //Bug 40511, make sure relate fields have the correct module defined
165             if ($this->displayColumns[$columnName]['type'] == "relate" && !empty($seedDef['link']) && empty( $this->displayColumns[$columnName]['module']))
166             {
167                 $link = $seedDef['link'];
168                 if (!empty($this->lvd->seed->field_defs[$link]) && !empty($this->lvd->seed->field_defs[$seedDef['link']]['module']))
169                 {
170                     $this->displayColumns[$columnName]['module'] = $this->lvd->seed->field_defs[$seedDef['link']]['module'];
171                 }
172             }
173
174                         if (!empty($seedDef['sort_on'])) {
175                         $this->displayColumns[$columnName]['orderBy'] = $seedDef['sort_on'];
176                     }
177
178             if(isset($seedDef)){
179                 // Merge the two arrays together, making sure the seedDef doesn't override anything explicitly set in the displayColumns array.
180                 $this->displayColumns[$columnName] = $this->displayColumns[$columnName] + $seedDef;
181             }
182
183                     //C.L. Bug 38388 - ensure that ['id'] is set for related fields
184             if(!isset($this->displayColumns[$columnName]['id']) && isset($this->displayColumns[$columnName]['id_name'])) {
185                $this->displayColumns[$columnName]['id'] = strtoupper($this->displayColumns[$columnName]['id_name']);
186             }
187                 }
188
189                 $this->process($file, $data, $seed->object_name);
190                 return true;
191         }
192
193         function setupFilterFields($filter_fields = array())
194         {
195                 // create filter fields based off of display columns
196         if(empty($filter_fields) || $this->mergeDisplayColumns) {
197             foreach($this->displayColumns as $columnName => $def) {
198
199                $filter_fields[strtolower($columnName)] = true;
200
201             if(isset($this->seed->field_defs[strtolower($columnName)]['type']) &&
202                strtolower($this->seed->field_defs[strtolower($columnName)]['type']) == 'currency' &&
203                isset($this->seed->field_defs['currency_id'])) {
204                     $filter_fields['currency_id'] = true;
205             }
206
207                if(!empty($def['related_fields'])) {
208                     foreach($def['related_fields'] as $field) {
209                         //id column is added by query construction function. This addition creates duplicates
210                         //and causes issues in oracle. #10165
211                         if ($field != 'id') {
212                             $filter_fields[$field] = true;
213                         }
214                     }
215                 }
216                 if (!empty($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'])) {
217                     foreach($this->seed->field_defs[strtolower($columnName)]['db_concat_fields'] as $index=>$field){
218                         if(!isset($filter_fields[strtolower($field)]) || !$filter_fields[strtolower($field)])
219                         {
220                             $filter_fields[strtolower($field)] = true;
221                         }
222                     }
223                 }
224             }
225             foreach ($this->searchColumns as $columnName => $def )
226             {
227                 $filter_fields[strtolower($columnName)] = true;
228             }
229         }
230
231
232         return $filter_fields;
233         }
234
235
236         /**
237          * Any additional processing
238          * @param file File template file to use
239          * @param data array row data
240          * @param html_var string html string to be passed back and forth
241          */
242         function process($file, $data, $htmlVar) {
243                 $this->rowCount = count($data['data']);
244                 $this->moduleString = $data['pageData']['bean']['moduleDir'] . '2_' . strtoupper($htmlVar) . '_offset';
245         }
246
247         /**
248          * Display the listview
249          * @return string ListView contents
250          */
251         public function display() 
252         {
253                 if (!$this->should_process) {
254                     return '';
255                 }
256                 
257                 $str = '';
258                 if ($this->show_mass_update_form) {
259                         $str = $this->mass->getDisplayMassUpdateForm(true, $this->multi_select_popup).$this->mass->getMassUpdateFormHeader($this->multi_select_popup);
260                 }
261         
262                 return $str;
263         }
264         /**
265          * Display the select link
266      * @return string select link html
267          * @param echo Bool set true if you want it echo'd, set false to have contents returned
268          */
269         function buildSelectLink($id = 'select_link', $total=0, $pageTotal=0) {
270                 global $app_strings;
271                 if ($pageTotal < 0)
272                         $pageTotal = $total;
273                 $plus = '';
274                 if (!empty($GLOBALS['sugar_config']['disable_count_query']) && $total > $pageTotal) {
275                         $plus = '+';
276                         $this->show_plus = true;
277                 }
278                 $script = "<script>
279                         function select_overlib() {
280                                 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=\'javascript:void(0)\'>{$app_strings['LBL_LISTVIEW_OPTION_CURRENT']}&nbsp;&#x28;{$pageTotal}&#x29;&#x200E;</a>"
281                         . "<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=\'javascript:void(0)\'>{$app_strings['LBL_LISTVIEW_OPTION_ENTIRE']}&nbsp;&#x28;{$total}&#x29;&#x200E;</a>"
282                         . "<a style=\'width: 150px\' name=\"deselect\" class=\'menuItem\' onmouseover=\'hiliteItem(this,\"yes\");\' onmouseout=\'unhiliteItem(this);\' onclick=\'sListView.clear_all(document.MassUpdate, \"mass[]\", false);\' href=\'javascript:void(0)\'>{$app_strings['LBL_LISTVIEW_NONE']}</a>"
283                         . "', CENTER, '"
284                         . "', STICKY, MOUSEOFF, 3000, CLOSETEXT, '<img border=0 src=" . SugarThemeRegistry::current()->getImageURL('close_inline.gif')
285                         . ">', WIDTH, 150, CLOSETITLE, '" . $app_strings['LBL_ADDITIONAL_DETAILS_CLOSE_TITLE'] . "', CLOSECLICK, FGCLASS, 'olOptionsFgClass', "
286                         . "CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass', TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass', CLOSEFONTCLASS, 'olOptionsCloseFontClass',TIMEOUT,1000);
287                         }
288                         </script>";
289                 $script .= "<a id='$id' onclick='return select_overlib();' href=\"javascript:void(0)\"><img src='".SugarThemeRegistry::current()->getImageURL('MoreDetail.png')."' border='0'>"."</a>";
290
291                 return $script;
292         }
293
294         /**
295          * Display the actions link
296          *
297          * @param  string $id link id attribute, defaults to 'actions_link'
298          * @return string HTML source
299          */
300         protected function buildActionsLink(
301             $id = 'actions_link'
302             )
303         {
304             global $app_strings;
305                 $closeText = "<img border=0 src=" . SugarThemeRegistry::current()->getImageURL('close_inline.gif') . " />";
306                 $moreDetailImage = SugarThemeRegistry::current()->getImageURL('MoreDetail.png');
307                 $menuItems = '';
308
309                 // delete
310                 if ( ACLController::checkAccess($this->seed->module_dir,'delete',true) && $this->delete )
311                         $menuItems .= $this->buildDeleteLink();
312                 // compose email
313         if ( $this->email )
314                         $menuItems .= $this->buildComposeEmailLink($this->data['pageData']['offsets']['total']);
315                 // mass update
316                 $mass = new MassUpdate();
317                 $mass->setSugarBean($this->seed);
318                 if ( ( ACLController::checkAccess($this->seed->module_dir,'edit',true) && ACLController::checkAccess($this->seed->module_dir,'massupdate',true) ) && $this->showMassupdateFields && $mass->doMassUpdateFieldsExistForFocus() )
319             $menuItems .= $this->buildMassUpdateLink();
320                 // merge
321                 if ( $this->mailMerge )
322                     $menuItems .= $this->buildMergeLink();
323                 if ( $this->mergeduplicates )
324                     $menuItems .= $this->buildMergeDuplicatesLink();
325                 // add to target list
326                 if ( $this->targetList && ACLController::checkAccess('ProspectLists','edit',true) )
327                     $menuItems .= $this->buildTargetList();
328                 // export
329                 if ( ACLController::checkAccess($this->seed->module_dir,'export',true) && $this->export )
330                         $menuItems .= $this->buildExportLink();
331
332                 foreach ( $this->actionsMenuExtraItems as $item )
333                     $menuItems .= $item;
334
335                 $menuItems = str_replace('"','\"',$menuItems);
336                 $menuItems = str_replace(array("\r","\n"),'',$menuItems);
337
338                 if ( empty($menuItems) )
339                     return '';
340
341                 return <<<EOHTML
342 <script type="text/javascript">
343 function actions_overlib()
344 {
345     return overlib("{$menuItems}", CENTER, '', STICKY, MOUSEOFF, 3000, CLOSETEXT, "{$closeText}", WIDTH, 150,
346         CLOSETITLE, "{$app_strings['LBL_ADDITIONAL_DETAILS_CLOSE_TITLE']}", CLOSECLICK,
347         FGCLASS, 'olOptionsFgClass', CGCLASS, 'olOptionsCgClass', BGCLASS, 'olBgClass',
348         TEXTFONTCLASS, 'olFontClass', CAPTIONFONTCLASS, 'olOptionsCapFontClass',
349         CLOSEFONTCLASS, 'olOptionsCloseFontClass');
350 }
351 </script>
352 <a id='$id' onclick='return actions_overlib();' href="javascript:void(0)">
353     {$app_strings['LBL_LINK_ACTIONS']}&nbsp;<img src='{$moreDetailImage}' border='0' />
354 </a>
355 EOHTML;
356         }
357
358         /**
359          * Builds the export link
360          *
361          * @return string HTML
362          */
363         protected function buildExportLink()
364         {
365                 global $app_strings;
366                 return "<a href='javascript:void(0)' 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>";
367         }
368
369         /**
370          * Builds the massupdate link
371          *
372          * @return string HTML
373          */
374         protected function buildMassUpdateLink()
375         {
376                 global $app_strings;
377
378                 return "<a href='javascript:void(0)' 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>";
379         }
380
381         /**
382          * Builds the compose email link
383          *
384          * @return string HTML
385          */
386         protected function buildComposeEmailLink(
387             $totalCount
388             )
389         {
390                 global $app_strings,$dictionary;
391
392         if (!is_array($this->seed->field_defs)) {
393             return '';
394         }
395         $foundEmailField = false;
396         // Search for fields that look like an email address
397         foreach ($this->seed->field_defs as $field) {
398             if(isset($field['type'])&&$field['type']=='link'
399                &&isset($field['relationship'])&&isset($dictionary[$this->seed->object_name]['relationships'][$field['relationship']])
400                &&$dictionary[$this->seed->object_name]['relationships'][$field['relationship']]['rhs_module']=='EmailAddresses') {
401                 $foundEmailField = true;
402                 break;
403             }
404         }
405         if (!$foundEmailField) {
406             return '';
407         }
408
409
410                 $userPref = $GLOBALS['current_user']->getPreference('email_link_type');
411                 $defaultPref = $GLOBALS['sugar_config']['email_default_client'];
412                 if($userPref != '')
413                         $client = $userPref;
414                 else
415                         $client = $defaultPref;
416
417                 if($client == 'sugar')
418                         $script = "<a href='javascript:void(0)' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
419                                         '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'].'\')">' .
420                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
421                 else
422                         $script = "<a href='javascript:void(0)' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
423                                         "onclick=\"return sListView.use_external_mail_client('{$app_strings['LBL_LISTVIEW_NO_SELECTED']}', '{$_REQUEST['module']}');\">" .
424                                         $app_strings['LBL_EMAIL_COMPOSE'] . '</a>';
425
426                 return $script;
427         } // fn
428         /**
429          * Builds the delete link
430          *
431          * @return string HTML
432          */
433         protected function buildDeleteLink()
434         {
435                 global $app_strings;
436
437                 return "<a href='javascript:void(0)' 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>";
438         }
439         /**
440          * Display the selected object span object
441          *
442      * @return string select object span
443          */
444         function buildSelectedObjectsSpan($echo = true, $total=0) {
445                 global $app_strings;
446
447                 $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>";
448
449         return $selectedObjectSpan;
450         }
451     /**
452          * Builds the mail merge link
453          * The link can be disabled by setting module level duplicate_merge property to false
454          * in the moudle's vardef file.
455          *
456          * @return string HTML
457          */
458         protected function buildMergeDuplicatesLink()
459         {
460         global $app_strings, $dictionary;
461
462         $return_string='';
463         $return_string.= isset($_REQUEST['module']) ? "&return_module={$_REQUEST['module']}" : "";
464         $return_string.= isset($_REQUEST['action']) ? "&return_action={$_REQUEST['action']}" : "";
465         $return_string.= isset($_REQUEST['record']) ? "&return_id={$_REQUEST['record']}" : "";
466         //need delete and edit access.
467                 if (!(ACLController::checkAccess($this->seed->module_dir, 'edit', true)) or !(ACLController::checkAccess($this->seed->module_dir, 'delete', true))) {
468                         return '';
469                 }
470
471         if (isset($dictionary[$this->seed->object_name]['duplicate_merge']) && $dictionary[$this->seed->object_name]['duplicate_merge']==true ) {
472             return "<a href='javascript:void(0)' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' ".
473                 "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;}'>".
474                 $app_strings['LBL_MERGE_DUPLICATES'].'</a>';
475         }
476
477         return '';
478      }
479     /**
480          * Builds the mail merge link
481          *
482          * @return string HTML
483          */
484         protected function buildMergeLink(array $modules_array = null)
485         {
486         if ( empty($modules_array) ) {
487             require('modules/MailMerge/modules_array.php');
488         }
489         global $current_user, $app_strings;
490
491         $admin = new Administration();
492         $admin->retrieveSettings('system');
493         $user_merge = $current_user->getPreference('mailmerge_on');
494         $module_dir = (!empty($this->seed->module_dir) ? $this->seed->module_dir : '');
495         $str = '';
496         
497         if ($user_merge == 'on' && isset($admin->settings['system_mailmerge_on']) && $admin->settings['system_mailmerge_on'] && !empty($modules_array[$module_dir])) {
498             $str = "<a href='javascript:void(0)' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' " .
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()
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)' style='width: 150px' class='menuItem' onmouseover='hiliteItem(this,\"yes\");' onmouseout='unhiliteItem(this);' 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 = isset($_REQUEST['select_entire_list']) && !$massUpdateRun ? $_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 ?>