]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/Contacts/Popup_picker.php
Release 6.4.0
[Github/sugarcrm.git] / modules / Contacts / Popup_picker.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 global $theme;
42
43
44 require_once('modules/Contacts/ContactFormBase.php');
45
46
47
48
49
50
51
52 class Popup_Picker
53 {
54         
55         
56         /*
57          * 
58          */
59         function Popup_Picker()
60         {
61                 
62         }
63         
64         /*
65          * 
66          */
67         function _get_where_clause()
68         {
69                 $where = '';
70                 if(isset($_REQUEST['query']))
71                 {
72                         $where_clauses = array();
73                         append_where_clause($where_clauses, "first_name", "contacts.first_name");
74                         append_where_clause($where_clauses, "last_name", "contacts.last_name");
75                         append_where_clause($where_clauses, "account_name", "accounts.name");
76                         append_where_clause($where_clauses, "account_id", "accounts.id");
77                         $where = generate_where_statement($where_clauses);
78                 }
79                 return $where;
80         }
81
82         /**
83          *
84          */
85         function process_page_for_address()
86         {
87                 global $theme;
88                 global $mod_strings;
89                 global $app_strings;
90                 global $currentModule;
91                 global $sugar_version, $sugar_config;
92                 
93                 $output_html = '';
94                 $where = '';
95                 
96                 $where = $this->_get_where_clause();
97                 
98                 
99                 $formBase = new ContactFormBase();
100                 if(isset($_REQUEST['doAction']) && $_REQUEST['doAction'] == 'save')
101                 {
102                         $formBase->handleSave('', false, true);
103                 }
104
105                 $first_name = empty($_REQUEST['first_name']) ? '' : $_REQUEST['first_name'];
106                 $last_name = empty($_REQUEST['last_name']) ? '' : $_REQUEST['last_name'];
107                 $account_name = empty($_REQUEST['account_name']) ? '' : $_REQUEST['account_name'];
108                 $request_data = empty($_REQUEST['request_data']) ? '' : $_REQUEST['request_data'];
109                 $hide_clear_button = empty($_REQUEST['hide_clear_button']) ? false : true;
110                 $lbl_save_button_title = $app_strings['LBL_SAVE_BUTTON_TITLE'];
111                 $lbl_save_button_key = $app_strings['LBL_SAVE_BUTTON_KEY'];
112                 $lbl_save_button_label = $app_strings['LBL_SAVE_BUTTON_LABEL'];
113                 
114                 // TODO: cleanup the construction of $addform
115                 $formbody = $formBase->getFormBody('','','EmailEditView');
116                 $addform = '<table><tr><td nowrap="nowrap" valign="top">'
117                         .str_replace('<br>', '</td><td nowrap="nowrap" valign="top">&nbsp;', $formbody)
118                         . '</td></tr></table>'
119                         . '<input type="hidden" name="action" value="Popup" />';
120                 $formSave = <<<EOQ
121                 <input type="submit" name="button" class="button" title="$lbl_save_button_title" accesskey="$lbl_save_button_key" value="  $lbl_save_button_label  " />
122                 <input type="button" name="button" class="button" title="{$app_strings['LBL_CANCEL_BUTTON_TITLE']}" accesskey="{$app_strings['LBL_CANCEL_BUTTON_KEY']}" value="{$app_strings['LBL_CANCEL_BUTTON_LABEL']}" onclick="toggleDisplay('addform');" />
123 EOQ;
124                 $createContact = <<<EOQ
125                 <input type="button" id="showAdd" name="showAdd" class="button" value="{$mod_strings['LNK_NEW_CONTACT']}" onclick="toggleDisplay('addform');" />
126 EOQ;
127                 $addformheader = get_form_header($mod_strings['LNK_NEW_CONTACT'], $formSave, false);
128                 $button  = "<form action='index.php' method='post' name='form' id='form'>\n";
129                 if(!$hide_clear_button)
130                 {
131                         $button .= "<input type='button' name='button' class='button' onclick=\"send_back('','');\" title='"
132                                 .$app_strings['LBL_CLEAR_BUTTON_TITLE']."' accesskey='"
133                                 .$app_strings['LBL_CLEAR_BUTTON_KEY']."' value='  "
134                                 .$app_strings['LBL_CLEAR_BUTTON_LABEL']."  ' />\n";
135                 }
136                 $button .= "<input type='submit' name='button' class='button' onclick=\"window.close();\" title='"
137                         .$app_strings['LBL_CANCEL_BUTTON_TITLE']."' accesskey='"
138                         .$app_strings['LBL_CANCEL_BUTTON_KEY']."' value='  "
139                         .$app_strings['LBL_CANCEL_BUTTON_LABEL']."  ' />\n";
140                 $button .= "</form>\n";
141
142                 $form = new XTemplate('modules/Contacts/Address_picker.html');
143                 $form->assign('MOD', $mod_strings);
144                 $form->assign('APP', $app_strings);
145                 $form->assign('ADDFORMHEADER', $addformheader);
146                 $form->assign('ADDFORM', $addform);
147                 $form->assign('THEME', $theme);
148                 $form->assign('MODULE_NAME', $currentModule);
149                 $form->assign('FIRST_NAME', $first_name);
150                 $form->assign('LAST_NAME', $last_name);
151                 $form->assign('ACCOUNT_NAME', $account_name);
152                 $form->assign('request_data', $request_data);
153                 
154                 // fill in for mass update
155                 $button = "<input type='hidden' name='module' value='Contacts'>".
156                           "<input type='hidden' id='form_action' name='action' value='CloseContactAddressPopup'>".
157                           "<input type='hidden' name='massupdate' value='true'>".
158                           "<input type='hidden' name='delete' value='false'>".
159                           "<input type='hidden' name='mass' value='Array'>".
160                           "<input type='hidden' name='Update' value='Update'>";
161                           
162                 if(isset($_REQUEST['mass']) && is_array($_REQUEST['mass'])) {
163                         foreach(array_unique($_REQUEST['mass']) as $record) {
164                                 $button .= "<input style='display: none' checked type='checkbox' name='mass[]' value='$record'>\n";
165                         }               
166                 }
167                 
168                 $button .= "<input type='hidden' name='query' value='true'>";
169                 $button .= "<input type='hidden' name='saved_associated_data' value=''>";
170                 $button .= "<input type='hidden' name='close_window' value='true'>";
171                 $button .= "<input type='hidden' name='html' value='change_address'>";
172                 $button .= "<input type='hidden' name='account_name' value='$account_name'>";
173         // Added ID attribute to each element to use getElementById. To give ID attribute to an element is a good practice.
174                 $button .= "<span style='display: none'><textarea name='primary_address_street' id='primary_address_street'>" . str_replace("&lt;br&gt;", "\n", $_REQUEST["primary_address_street"]) . "</textarea></span>";
175                 $button .= "<input type='hidden' name='primary_address_city' id='primary_address_city' value='". $_REQUEST["primary_address_city"] ."'>";
176                 $button .= "<input type='hidden' name='primary_address_state' id='primary_address_state' value='". $_REQUEST["primary_address_state"] ."'>";
177                 $button .= "<input type='hidden' name='primary_address_postalcode' id='primary_address_postalcode' value='". $_REQUEST["primary_address_postalcode"] ."'>";
178                 $button .= "<input type='hidden' name='primary_address_country' id='primary_address_country' value='". $_REQUEST["primary_address_country"] ."'>";
179                 // Adding an onclick event to remove address for alternate address, as user has selected copy address to primary address
180                 $button .= "<input title='".$mod_strings['LBL_COPY_ADDRESS_CHECKED_PRIMARY']."'  class='button' LANGUAGE=javascript type='submit' name='button' value='  ".$mod_strings['LBL_COPY_ADDRESS_CHECKED_PRIMARY']."  ' onclick='clearAddress(\"alt\");'>\n";
181                 // Adding a new block of code copy the address to alternate address for contacts
182                 $button .= "<span style='display: none'><textarea name='alt_address_street' id='alt_address_street'>" . str_replace("&lt;br&gt;", "\n", $_REQUEST["primary_address_street"]) . "</textarea></span>";
183                 $button .= "<input type='hidden' name='alt_address_city' id='alt_address_city' value='". $_REQUEST["primary_address_city"] ."'>";
184                 $button .= "<input type='hidden' name='alt_address_state' id='alt_address_state' value='". $_REQUEST["primary_address_state"] ."'>";
185                 $button .= "<input type='hidden' name='alt_address_postalcode' id='alt_address_postalcode' value='". $_REQUEST["primary_address_postalcode"] ."'>";
186                 $button .= "<input type='hidden' name='alt_address_country' id='alt_address_country' value='". $_REQUEST["primary_address_country"] ."'>";
187                 // Adding an onclick event to remove address for primary address, as user has selected copy address to alternate address
188                 // NOTE => You need to change the label as as per SugarCRM way..
189                 $button .= "<input title='".$mod_strings['LBL_COPY_ADDRESS_CHECKED_ALT']."'  class='button' LANGUAGE=javascript type='submit' name='button' value='  ".$mod_strings['LBL_COPY_ADDRESS_CHECKED_ALT']."  ' onclick='clearAddress(\"primary\");'>\n";
190                 $button .= "<input title='".$app_strings['LBL_CANCEL_BUTTON_TITLE']."' accessKey='".$app_strings['LBL_CANCEL_BUTTON_KEY']."' class='button' LANGUAGE=javascript onclick=\"window.close()\" type='submit' name='button' value='  ".$app_strings['LBL_CANCEL_BUTTON_LABEL']."  '>\n";
191                 ob_start();
192                 insert_popup_header($theme);
193                 $output_html .= ob_get_contents();
194                 ob_end_clean();
195                                 
196                 // Reset the sections that are already in the page so that they do not print again later.
197                 $form->reset('main.SearchHeader');
198
199                 // create the listview
200                 $seed_bean = new Contact();
201                 $ListView = new ListView();
202                 $ListView->show_export_button = false;
203                 $ListView->process_for_popups = true;
204                 $ListView->show_delete_button = false;
205                 $ListView->show_select_menu = false;
206                 $ListView->setXTemplate($form);
207                 $ListView->setHeaderTitle($mod_strings['LBL_LIST_FORM_TITLE']);
208                 $ListView->setHeaderText($button);
209                 $ListView->setQuery($where, '', '', 'CONTACT');
210                 $ListView->setModStrings($mod_strings);
211                 
212                 ob_start();
213                 $ListView->processListViewMulti($seed_bean, 'main', 'CONTACT');
214                 $output_html .= ob_get_contents();
215                 ob_end_clean();
216        
217         // Regular Expression to override sListView 
218         $exp = '/sListView.save_checks/si'; 
219         $change = 'save_checks';
220         $output_html = preg_replace(array($exp), array($change), $output_html);
221         
222                 $output_html .= <<<EOJS
223         <script type="text/javascript">
224         <!--
225         // Function to clear address according to the buttons clicked.
226         function clearAddress(key)
227         {
228             document.getElementById(key+"_address_street").value = "";
229             document.getElementById(key+"_address_city").value = "";
230             document.getElementById(key+"_address_state").value = "";
231             document.getElementById(key+"_address_postalcode").value = "";
232             document.getElementById(key+"_address_country").value = "";
233         }
234         checked_items = Array();
235         inputs_array = document.MassUpdate.elements;
236         
237         for(wp = 0 ; wp < inputs_array.length; wp++) {
238             if(inputs_array[wp].name == "mass[]" && inputs_array[wp].style.display == "none") {
239                 checked_items.push(inputs_array[wp].value);
240             } 
241         }
242         for(i in checked_items) {
243             for(wp = 0 ; wp < inputs_array.length; wp++) {
244                 if(inputs_array[wp].name == "mass[]" && inputs_array[wp].value == checked_items[i]) {
245                     inputs_array[wp].checked = true;
246                 }
247             }
248         }
249         -->
250         </script>
251 EOJS;
252                 
253                 $output_html .= insert_popup_footer();
254                 return $output_html;
255         }
256         
257         function process_page_for_merge()
258         {
259                 global $theme;
260                 global $mod_strings;
261                 global $app_strings;
262                 global $currentModule;
263                 global $sugar_version, $sugar_config;
264                 
265                 $output_html = '';
266                 $where = '';
267                 
268                 $where = $this->_get_where_clause();
269                 
270                 
271                 
272                 $first_name = empty($_REQUEST['first_name']) ? '' : $_REQUEST['first_name'];
273                 $last_name = empty($_REQUEST['last_name']) ? '' : $_REQUEST['last_name'];
274                 $account_name = empty($_REQUEST['account_name']) ? '' : $_REQUEST['account_name'];
275                 $hide_clear_button = empty($_REQUEST['hide_clear_button']) ? false : true;
276                 $button  = "<form action='index.php' method='post' name='form' id='form'>\n";
277                 //START:FOR MULTI-SELECT
278                 $multi_select=false;
279                 if (!empty($_REQUEST['mode']) && strtoupper($_REQUEST['mode']) == 'MULTISELECT') {
280                         $multi_select=true;
281                         $button .= "<input type='button' name='button' class='button' onclick=\"send_back_selected('Contacts',document.MassUpdate,'mass[]','" .$app_strings['ERR_NOTHING_SELECTED']."');\" title='"
282                                 .$app_strings['LBL_SELECT_BUTTON_TITLE']."' accesskey='"
283                                 .$app_strings['LBL_SELECT_BUTTON_KEY']."' value='  "
284                                 .$app_strings['LBL_SELECT_BUTTON_LABEL']."  ' />\n";
285                 }
286                 //END:FOR MULTI-SELECT
287                 if(!$hide_clear_button)
288                 {
289                         $button .= "<input type='button' name='button' class='button' onclick=\"send_back('','');\" title='"
290                                 .$app_strings['LBL_CLEAR_BUTTON_TITLE']."' accesskey='"
291                                 .$app_strings['LBL_CLEAR_BUTTON_KEY']."' value='  "
292                                 .$app_strings['LBL_CLEAR_BUTTON_LABEL']."  ' />\n";
293                 }
294                 $button .= "<input type='submit' name='button' class='button' onclick=\"window.close();\" title='"
295                         .$app_strings['LBL_CANCEL_BUTTON_TITLE']."' accesskey='"
296                         .$app_strings['LBL_CANCEL_BUTTON_KEY']."' value='  "
297                         .$app_strings['LBL_CANCEL_BUTTON_LABEL']."  ' />\n";
298                 $button .= "</form>\n";
299
300                 $form = new XTemplate('modules/Contacts/MailMergePicker.html');
301                 $form->assign('MOD', $mod_strings);
302                 $form->assign('APP', $app_strings);
303                 $form->assign('THEME', $theme);
304                 $form->assign('MODULE_NAME', $currentModule);
305                 $form->assign('FIRST_NAME', $first_name);
306                 $form->assign('LAST_NAME', $last_name);
307                 $form->assign('ACCOUNT_NAME', $account_name);
308                 $request_data = empty($_REQUEST['request_data']) ? '' : $_REQUEST['request_data'];
309                 $form->assign('request_data', $request_data);
310
311                 ob_start();
312                 insert_popup_header($theme);
313                 $output_html .= ob_get_contents();
314                 ob_end_clean();
315                 
316                 $output_html .= get_form_header($mod_strings['LBL_SEARCH_FORM_TITLE'], '', false);
317                 
318                 $form->parse('main.SearchHeader');
319                 $output_html .= $form->text('main.SearchHeader');
320                 
321                 // Reset the sections that are already in the page so that they do not print again later.
322                 $form->reset('main.SearchHeader');
323                 
324                 // create the listview
325                 $seed_bean = new Contact();
326                 $ListView = new ListView();
327                 $ListView->display_header_and_footer=false;
328                 $ListView->show_export_button = false;
329                 $ListView->process_for_popups = true;
330                 $ListView->setXTemplate($form);
331                 $ListView->multi_select_popup=$multi_select;
332                 if ($multi_select) $ListView->xTemplate->assign("TAG_TYPE","SPAN"); else  $ListView->xTemplate->assign("TAG_TYPE","A");
333                 $ListView->setHeaderTitle($mod_strings['LBL_LIST_FORM_TITLE']);
334                 $ListView->setQuery($where, '', 'contacts.last_name, contacts.first_name', 'CONTACT');
335                 $ListView->setModStrings($mod_strings);
336
337                 ob_start();
338                 $output_html .= get_form_header($mod_strings['LBL_LIST_FORM_TITLE'], $button, false);
339                                 //BEGIN ATHENA CUSTOMIZATION - rsmith
340                         $query = $_REQUEST['select'].' WHERE '.$_REQUEST['where']."'".$_REQUEST['id']."'";
341                         
342                         //$response = $seed_bean->process_list_query($_REQUEST['select'], 0, -1, -1, $_REQUEST['where']."'".$_REQUEST['id']."'");
343                         
344                         $result = $seed_bean->db->query($query,true,"Error retrieving $seed_bean->object_name list: ");
345
346                         $list = Array();
347                                 while(($row = $seed_bean->db->fetchByAssoc($result)) != null)
348                                 {
349                                                 $seed_bean = new Contact();
350                                                 foreach($seed_bean->field_defs as $field=>$value)
351                                                 {
352                                                         if (isset($row[$field])) 
353                                                         {
354                                                                 $seed_bean->$field = $row[$field];
355                                                         }
356                                                         else if (isset($row[$seed_bean->table_name .'.'.$field])) 
357                                                         {
358                                                                 $seed_bean->$field = $row[$seed_bean->table_name .'.'.$field];
359                                                         }
360                                                         else
361                                                         {
362                                                                 $seed_bean->$field = "";
363                                                         }       
364                                                 }
365                                                 $seed_bean->fill_in_additional_list_fields();
366
367                                                 $list[] = $seed_bean;
368                                 }
369                                         
370                         $ListView->processListViewTwo($list, 'main', 'CONTACT');
371
372                 //END ATHENA CUSTOMIZATION - rsmith
373                 $output_html .= ob_get_contents();
374                 ob_end_clean();
375                                 
376                 $output_html .= insert_popup_footer();
377                 return $output_html;
378                 
379         }
380 }
381 ?>