]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/utils.php
Release 6.2.1
[Github/sugarcrm.git] / include / utils.php
1 <?php
2 /*********************************************************************************
3  * SugarCRM Community Edition is a customer relationship management program developed by
4  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
5  * 
6  * This program is free software; you can redistribute it and/or modify it under
7  * the terms of the GNU Affero General Public License version 3 as published by the
8  * Free Software Foundation with the addition of the following permission added
9  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
10  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
11  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
12  * 
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
16  * details.
17  * 
18  * You should have received a copy of the GNU Affero General Public License along with
19  * this program; if not, see http://www.gnu.org/licenses or write to the Free
20  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21  * 02110-1301 USA.
22  * 
23  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
24  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
25  * 
26  * The interactive user interfaces in modified source and object code versions
27  * of this program must display Appropriate Legal Notices, as required under
28  * Section 5 of the GNU Affero General Public License version 3.
29  * 
30  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
31  * these Appropriate Legal Notices must retain the display of the "Powered by
32  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
33  * technical reasons, the Appropriate Legal Notices must display the words
34  * "Powered by SugarCRM".
35  ********************************************************************************/
36
37 /*********************************************************************************
38
39  * Description:  Includes generic helper functions used throughout the application.
40  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
41  * All Rights Reserved.
42  * Contributor(s): ______________________________________..
43  ********************************************************************************/
44 require_once('include/SugarObjects/SugarConfig.php');
45 require_once('include/utils/security_utils.php');
46
47
48
49 function make_sugar_config(&$sugar_config)
50 {
51         /* used to convert non-array config.php file to array format */
52         global $admin_export_only;
53         global $cache_dir;
54         global $calculate_response_time;
55         global $create_default_user;
56         global $dateFormats;
57         global $dbconfig;
58         global $dbconfigoption;
59         global $default_action;
60         global $default_charset;
61         global $default_currency_name;
62         global $default_currency_symbol;
63         global $default_currency_iso4217;
64         global $defaultDateFormat;
65         global $default_language;
66         global $default_module;
67         global $default_password;
68         global $default_permission_mode;
69         global $default_theme;
70         global $defaultTimeFormat;
71         global $default_user_is_admin;
72         global $default_user_name;
73         global $disable_export;
74         global $disable_persistent_connections;
75         global $display_email_template_variable_chooser;
76         global $display_inbound_email_buttons;
77         global $history_max_viewed;
78         global $host_name;
79         global $import_dir;
80         global $languages;
81         global $list_max_entries_per_page;
82         global $lock_default_user_name;
83         global $log_memory_usage;
84         global $requireAccounts;
85         global $RSS_CACHE_TIME;
86         global $session_dir;
87         global $site_URL;
88         global $site_url;
89         global $sugar_version;
90         global $timeFormats;
91         global $tmp_dir;
92         global $translation_string_prefix;
93         global $unique_key;
94         global $upload_badext;
95         global $upload_dir;
96         global $upload_maxsize;
97         global $import_max_execution_time;
98         global $list_max_entries_per_subpanel;
99         global $passwordsetting;
100
101         // assumes the following variables must be set:
102         // $dbconfig, $dbconfigoption, $cache_dir, $import_dir, $session_dir, $site_URL, $tmp_dir, $upload_dir
103
104         $sugar_config = array (
105         'admin_export_only' => empty($admin_export_only) ? false : $admin_export_only,
106         'export_delimiter' => empty($export_delimiter) ? ',' : $export_delimiter,
107         'cache_dir' => empty($cache_dir) ? 'cache/' : $cache_dir,
108         'calculate_response_time' => empty($calculate_response_time) ? true : $calculate_response_time,
109         'create_default_user' => empty($create_default_user) ? false : $create_default_user,
110         'chartEngine' => 'Jit',
111         'date_formats' => empty($dateFormats) ? array(
112         'Y-m-d'=>'2010-12-23',
113         'd-m-Y' => '23-12-2010',
114         'm-d-Y'=>'12-23-2010',
115         'Y/m/d'=>'2010/12/23',
116         'd/m/Y' => '23/12/2010',
117         'm/d/Y'=>'12/23/2010',
118         'Y.m.d' => '2010.12.23',
119         'd.m.Y' => '23.12.2010',
120         'm.d.Y' => '12.23.2010'
121                 ) : $dateFormats,
122         'dbconfig' => $dbconfig,  // this must be set!!
123         'dbconfigoption' => $dbconfigoption,  // this must be set!!
124         'default_action' => empty($default_action) ? 'index' : $default_action,
125         'default_charset' => empty($default_charset) ? 'UTF-8' : $default_charset,
126         'default_currency_name' => empty($default_currency_name) ? 'US Dollar' : $default_currency_name,
127         'default_currency_symbol' => empty($default_currency_symbol) ? '$' : $default_currency_symbol,
128         'default_currency_iso4217' => empty($default_currency_iso4217) ? '$' : $default_currency_iso4217,
129         'default_date_format' => empty($defaultDateFormat) ? 'm/d/Y' : $defaultDateFormat,
130         'default_export_charset' => 'UTF-8',
131         'default_language' => empty($default_language) ? 'en_us' : $default_language,
132         'default_module' => empty($default_module) ? 'Home' : $default_module,
133         'default_password' => empty($default_password) ? '' : $default_password,
134         'default_permissions' => array (
135                 'dir_mode' => 02770,
136                 'file_mode' => 0660,
137                 'chown' => '',
138                 'chgrp' => '',
139         ),
140     'default_theme' => empty($default_theme) ? 'Sugar5' : $default_theme,
141     'default_time_format' => empty($defaultTimeFormat) ? 'h:ia' : $defaultTimeFormat,
142         'default_user_is_admin' => empty($default_user_is_admin) ? false : $default_user_is_admin,
143         'default_user_name' => empty($default_user_name) ? '' : $default_user_name,
144         'disable_export' => empty($disable_export) ? false : $disable_export,
145     'disable_persistent_connections' => empty($disable_persistent_connections) ? false : $disable_persistent_connections,
146     'display_email_template_variable_chooser' => empty($display_email_template_variable_chooser) ? false : $display_email_template_variable_chooser,
147         'display_inbound_email_buttons' => empty($display_inbound_email_buttons) ? false : $display_inbound_email_buttons,
148         'history_max_viewed' => empty($history_max_viewed) ? 50 : $history_max_viewed,
149         'host_name' => empty($host_name) ? 'localhost' : $host_name,
150         'import_dir' => $import_dir,  // this must be set!!
151         'import_max_records_per_file' => 100,
152         'languages' => empty($languages) ? array('en_us' => 'English (US)') : $languages,
153         'list_max_entries_per_page' => empty($list_max_entries_per_page) ? 20 : $list_max_entries_per_page,
154         'list_max_entries_per_subpanel' => empty($list_max_entries_per_subpanel) ? 10 : $list_max_entries_per_subpanel,
155         'lock_default_user_name' => empty($lock_default_user_name) ? false : $lock_default_user_name,
156         'log_memory_usage' => empty($log_memory_usage) ? false : $log_memory_usage,
157     'portal_view' => 'single_user',
158         'resource_management' => array (
159             'special_query_limit' => 50000,
160             'special_query_modules' => array('Reports', 'Export', 'Import', 'Administration', 'Sync'),
161             'default_limit' => 1000,
162     ),
163         'require_accounts' => empty($requireAccounts) ? true : $requireAccounts,
164         'rss_cache_time' => empty($RSS_CACHE_TIME) ? '10800' : $RSS_CACHE_TIME,
165         'session_dir' => $session_dir,  // this must be set!!
166         'site_url' => empty($site_URL) ? $site_url : $site_URL,  // this must be set!!
167         'showDetailData' => true, // if true, read-only ACL fields will still appear on EditViews as non-editable
168         'showThemePicker' => true,
169         'sugar_version' => empty($sugar_version) ? 'unknown' : $sugar_version,
170         'time_formats' => empty($timeFormats) ? array (
171         'H:i'=>'23:00', 'h:ia'=>'11:00 pm', 'h:iA'=>'11:00PM',
172         'H.i'=>'23.00', 'h.ia'=>'11.00 pm', 'h.iA'=>'11.00PM' ) : $timeFormats,
173         'tmp_dir' => $tmp_dir,  // this must be set!!
174         'translation_string_prefix' => empty($translation_string_prefix) ? false : $translation_string_prefix,
175         'unique_key' => empty($unique_key) ? md5(create_guid()) : $unique_key,
176         'upload_badext' => empty($upload_badext) ? array (
177         'php', 'php3', 'php4', 'php5', 'pl', 'cgi', 'py',
178         'asp', 'cfm', 'js', 'vbs', 'html', 'htm' ) : $upload_badext,
179         'upload_dir' => $upload_dir,  // this must be set!!
180         'upload_maxsize' => empty($upload_maxsize) ? 3000000 : $upload_maxsize,
181         'import_max_execution_time' => empty($import_max_execution_time) ? 3600 : $import_max_execution_time,
182         'lock_homepage' => false,
183         'lock_subpanels' => false,
184         'max_dashlets_homepage' => 15,
185         'dashlet_display_row_options' => array('1','3','5','10'),
186         'default_max_tabs' => empty($max_tabs) ? '7' : $max_tabs,
187         'default_subpanel_tabs' =>  empty($subpanel_tabs) ? true : $subpanel_tabs,
188         'default_subpanel_links' => empty($subpanel_links) ? false : $subpanel_links,
189         'default_swap_last_viewed' => empty($swap_last_viewed) ? false : $swap_last_viewed,
190         'default_swap_shortcuts' => empty($swap_shortcuts) ? false : $swap_shortcuts,
191         'default_navigation_paradigm' => empty($navigation_paradigm) ? 'gm' : $navigation_paradigm,
192     'default_call_status' => 'Planned',
193         'js_lang_version' => 1,
194         'passwordsetting' => empty($passwordsetting) ? array (
195             'SystemGeneratedPasswordON' => '',
196             'generatepasswordtmpl' => '',
197             'lostpasswordtmpl' => '',
198             'forgotpasswordON' => true,
199         'linkexpiration' => '1',
200         'linkexpirationtime' => '30',
201         'linkexpirationtype' => '1',
202             'systexpiration' => '0',
203             'systexpirationtime' => '',
204             'systexpirationtype' => '0',
205             'systexpirationlogin' => '',
206                 ) : $passwordsetting,
207         );
208 }
209
210 function get_sugar_config_defaults() {
211         global $locale;
212         /**
213          * used for getting base values for array style config.php.  used by the
214          * installer and to fill in new entries on upgrades.  see also:
215          * sugar_config_union
216          */
217
218         $sugar_config_defaults = array (
219         'admin_export_only' => false,
220         'export_delimiter' => ',',
221         'cache_dir' => 'cache/',
222         'calculate_response_time' => true,
223         'create_default_user' => false,
224         'chartEngine' => 'Jit',
225         'date_formats' => array (
226         'Y-m-d' => '2010-12-23', 'm-d-Y' => '12-23-2010', 'd-m-Y' => '23-12-2010',
227         'Y/m/d' => '2010/12/23', 'm/d/Y' => '12/23/2010', 'd/m/Y' => '23/12/2010',
228         'Y.m.d' => '2010.12.23', 'd.m.Y' => '23.12.2010', 'm.d.Y' => '12.23.2010',),
229         'dbconfigoption' => array (
230         'persistent' => true,
231         'autofree' => false,
232         'debug' => 0,
233         'seqname_format' => '%s_seq',
234         'portability' => 0,
235         'ssl' => false ),
236         'default_action' => 'index',
237         'default_charset' => return_session_value_or_default('default_charset',
238         'UTF-8'),
239         'default_currency_name' => return_session_value_or_default('default_currency_name', 'US Dollar'),
240         'default_currency_symbol' => return_session_value_or_default('default_currency_symbol', '$'),
241         'default_currency_iso4217' => return_session_value_or_default('default_currency_iso4217', 'USD'),
242         'default_currency_significant_digits' => return_session_value_or_default('default_currency_significant_digits', 2),
243         'default_number_grouping_seperator' => return_session_value_or_default('default_number_grouping_seperator', ','),
244         'default_decimal_seperator' => return_session_value_or_default('default_decimal_seperator', '.'),
245         'default_date_format' => 'm/d/Y',
246         'default_export_charset' => 'UTF-8',
247         'default_language' => return_session_value_or_default('default_language',
248         'en_us'),
249         'default_module' => 'Home',
250         'default_password' => '',
251         'default_permissions' => array (
252                 'dir_mode' => 02770,
253                 'file_mode' => 0660,
254                 'user' => '',
255                 'group' => '',
256         ),
257         'default_theme' => return_session_value_or_default('site_default_theme', 'Sugar5'),
258         'default_time_format' => 'h:ia',
259         'default_user_is_admin' => false,
260         'default_user_name' => '',
261         'disable_export' => false,
262         'disable_persistent_connections' =>
263         return_session_value_or_default('disable_persistent_connections',
264         'false'),
265     'display_email_template_variable_chooser' => false,
266         'display_inbound_email_buttons' => false,
267         'dump_slow_queries' => false,
268         'email_default_editor' => 'html',
269         'email_default_client' => 'sugar',
270         'email_default_delete_attachments' => true,
271         'history_max_viewed' => 50,
272         'installer_locked' => true,
273         'import_max_records_per_file' => 100,
274         'languages' => array('en_us' => 'English (US)'),
275         'large_scale_test' => false,
276         'list_max_entries_per_page' => 20,
277         'list_max_entries_per_subpanel' => 10,
278         'lock_default_user_name' => false,
279         'log_memory_usage' => false,
280         'portal_view' => 'single_user',
281     'resource_management' => array (
282             'special_query_limit' => 50000,
283             'special_query_modules' => array('Reports', 'Export', 'Import', 'Administration', 'Sync'),
284             'default_limit' => 1000,
285     ),
286         'require_accounts' => true,
287         'rss_cache_time' => return_session_value_or_default('rss_cache_time',
288         '10800'),
289         'save_query' => 'all',
290         'showDetailData' => true, // if true, read-only ACL fields will still appear on EditViews as non-editable
291         'showThemePicker' => true,
292         'slow_query_time_msec' => '100',
293     'sugarbeet' => true,
294     'time_formats' => array (
295         'H:i'=>'23:00', 'h:ia'=>'11:00pm', 'h:iA'=>'11:00PM',
296         'H.i'=>'23.00', 'h.ia'=>'11.00pm', 'h.iA'=>'11.00PM' ),
297     'tracker_max_display_length' => 15,
298         'translation_string_prefix' =>
299         return_session_value_or_default('translation_string_prefix', false),
300         'upload_badext' => array (
301         'php', 'php3', 'php4', 'php5', 'pl', 'cgi', 'py',
302         'asp', 'cfm', 'js', 'vbs', 'html', 'htm' ),
303         'upload_maxsize' => 3000000,
304         'import_max_execution_time' => 3600,
305 //      'use_php_code_json' => returnPhpJsonStatus(),
306         'verify_client_ip' => true,
307         'js_custom_version' => '',
308         'js_lang_version' => 1,
309         'default_number_grouping_seperator' => ',',
310         'default_decimal_seperator' => '.',
311         'lock_homepage' => false,
312         'lock_subpanels' => false,
313         'max_dashlets_homepage' => '15',
314         'default_max_tabs' => '7',
315         'dashlet_display_row_options' => array('1','3','5','10'),
316         'default_subpanel_tabs' =>  true,
317         'default_subpanel_links' => false,
318         'default_swap_last_viewed' => false,
319         'default_swap_shortcuts' => false,
320         'default_navigation_paradigm' => 'gm',
321         'admin_access_control' => false,
322         'use_common_ml_dir'     => false,
323         'common_ml_dir' => '',
324         'vcal_time' => '2',
325         'passwordsetting' => empty($passwordsetting) ? array (
326             'SystemGeneratedPasswordON' => '',
327             'generatepasswordtmpl' => '',
328             'lostpasswordtmpl' => '',
329             'forgotpasswordON' => false,
330         'linkexpiration' => '1',
331         'linkexpirationtime' => '30',
332         'linkexpirationtype' => '1',
333             'systexpiration' => '0',
334             'systexpirationtime' => '',
335             'systexpirationtype' => '0',
336             'systexpirationlogin' => '',
337                 ) : $passwordsetting,
338         'use_real_names' => true,
339         );
340
341         if(!is_object($locale)) {
342                 $locale = new Localization();
343         }
344
345         $sugar_config_defaults['default_currencies'] = $locale->getDefaultCurrencies();
346
347         $sugar_config_defaults = sugarArrayMerge($locale->getLocaleConfigDefaults(), $sugar_config_defaults);
348         return( $sugar_config_defaults );
349 }
350
351 /**
352  * @deprecated use SugarView::getMenu() instead
353  */
354 function load_menu($path){
355         global $module_menu;
356
357         if(file_exists($path . 'Menu.php'))
358         {
359                 require($path . 'Menu.php');
360         }
361         if(file_exists('custom/' . $path . 'Ext/Menus/menu.ext.php'))
362         {
363                 require('custom/' . $path . 'Ext/Menus/menu.ext.php');
364         }
365         if(file_exists('custom/application/Ext/Menus/menu.ext.php'))
366         {
367                 require('custom/application/Ext/Menus/menu.ext.php');
368         }
369         return $module_menu;
370 }
371
372 /**
373  * get_notify_template_file
374  * This function will return the location of the email notifications template to use
375  *
376  * @return string relative file path to email notifications template file
377  */
378 function get_notify_template_file($language){
379         /*
380          * Order of operation:
381          * 1) custom version of specified language
382          * 2) stock version of specified language
383          * 3) custom version of en_us template
384          * 4) stock en_us template
385          */
386
387         // set $file to the base code template so it's set if none of the conditions pass
388         $file = "include/language/en_us.notify_template.html";
389
390         if(file_exists("custom/include/language/{$language}.notify_template.html")){
391                 $file = "custom/include/language/{$language}.notify_template.html";
392         }
393         else if(file_exists("include/language/{$language}.notify_template.html")){
394                 $file = "include/language/{$language}.notify_template.html";
395         }
396         else if(file_exists("custom/include/language/en_us.notify_template.html")){
397                 $file = "custom/include/language/en_us.notify_template.html";
398         }
399
400         return $file;
401 }
402
403 function sugar_config_union( $default, $override ){
404         // a little different then array_merge and array_merge_recursive.  we want
405         // the second array to override the first array if the same value exists,
406         // otherwise merge the unique keys.  it handles arrays of arrays recursively
407         // might be suitable for a generic array_union
408         if( !is_array( $override ) ){
409                 $override = array();
410         }
411         foreach( $default as $key => $value ){
412                 if( !array_key_exists($key, $override) ){
413                         $override[$key] = $value;
414                 }
415                 else if( is_array( $key ) ){
416                         $override[$key] = sugar_config_union( $value, $override[$key] );
417                 }
418         }
419         return( $override );
420 }
421
422 function make_not_writable( $file ){
423         // Returns true if the given file/dir has been made not writable
424         $ret_val = false;
425         if( is_file($file) || is_dir($file) ){
426                 if( !is_writable($file) ){
427                         $ret_val = true;
428                 }
429                 else {
430                         $original_fileperms = fileperms($file);
431
432                         // take away writable permissions
433                         $new_fileperms = $original_fileperms & ~0x0092;
434                         @sugar_chmod($file, $new_fileperms);
435
436                         if( !is_writable($file) ){
437                                 $ret_val = true;
438                         }
439                 }
440         }
441         return $ret_val;
442 }
443
444
445 /** This function returns the name of the person.
446  * It currently returns "first last".  It should not put the space if either name is not available.
447  * It should not return errors if either name is not available.
448  * If no names are present, it will return ""
449  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
450  * All Rights Reserved.
451  * Contributor(s): ______________________________________..
452  */
453 function return_name($row, $first_column, $last_column)
454 {
455         $first_name = "";
456         $last_name = "";
457         $full_name = "";
458
459         if(isset($row[$first_column]))
460         {
461                 $first_name = stripslashes($row[$first_column]);
462         }
463
464         if(isset($row[$last_column]))
465         {
466                 $last_name = stripslashes($row[$last_column]);
467         }
468
469         $full_name = $first_name;
470
471         // If we have a first name and we have a last name
472         if($full_name != "" && $last_name != "")
473         {
474                 // append a space, then the last name
475                 $full_name .= " ".$last_name;
476         }
477         // If we have no first name, but we have a last name
478         else if($last_name != "")
479         {
480                 // append the last name without the space.
481                 $full_name .= $last_name;
482         }
483
484         return $full_name;
485 }
486
487
488 function get_languages()
489 {
490         global $sugar_config;
491         $lang = $sugar_config['languages'];
492     if(!empty($sugar_config['disabled_languages'])){
493         foreach(explode(',', $sugar_config['disabled_languages']) as $disable) {
494             unset($lang[$disable]);
495         }
496     }
497         return $lang;
498 }
499
500 function get_all_languages()
501 {
502         global $sugar_config;
503         return $sugar_config['languages'];
504 }
505
506
507 function get_language_display($key)
508 {
509         global $sugar_config;
510         return $sugar_config['languages'][$key];
511 }
512
513 function get_assigned_user_name($assigned_user_id, $is_group = '') {
514         static $saved_user_list = null;
515
516         if(empty($saved_user_list)) {
517                 $saved_user_list = get_user_array(false, '', '', false, null, $is_group);
518         }
519
520         if(isset($saved_user_list[$assigned_user_id])) {
521                 return $saved_user_list[$assigned_user_id];
522         }
523
524         return '';
525 }
526
527 /**
528  * retrieves the user_name column value (login)
529  * @param string id GUID of user
530  * @return string
531  */
532 function get_user_name($id) {
533         global $db;
534
535         if(empty($db))
536         $db = DBManagerFactory::getInstance();
537
538         $q = "SELECT user_name FROM users WHERE id='{$id}'";
539         $r = $db->query($q);
540         $a = $db->fetchByAssoc($r);
541
542         return (empty($a)) ? '' : $a['user_name'];
543 }
544
545
546 //TODO Update to use global cache
547 function get_user_array($add_blank=true, $status="Active", $assigned_user="", $use_real_name=false, $user_name_begins = null, $is_group=' AND portal_only=0 ', $from_cache = true) {
548         global $locale;
549         global $sugar_config;
550
551         if(empty($locale)) {
552
553                 $locale = new Localization();
554         }
555         if($from_cache)
556                 $user_array = get_register_value('user_array', $add_blank. $status . $assigned_user);
557
558         if(!isset($user_array)) {
559                 $db = DBManagerFactory::getInstance();
560                 $temp_result = Array();
561                 // Including deleted users for now.
562                 if (empty($status)) {
563                         $query = "SELECT id, first_name, last_name, user_name from users WHERE 1=1".$is_group;
564                 }
565                 else {
566                         $query = "SELECT id, first_name, last_name, user_name from users WHERE status='$status'".$is_group;
567                 }
568
569                 if (!empty($user_name_begins)) {
570                         $query .= " AND user_name LIKE '$user_name_begins%' ";
571                 }
572                 if (!empty($assigned_user)) {
573                         $query .= " OR id='$assigned_user'";
574                 }
575                 $query = $query.' ORDER BY user_name ASC';
576                 $GLOBALS['log']->debug("get_user_array query: $query");
577                 $result = $db->query($query, true, "Error filling in user array: ");
578
579                 if ($add_blank==true) {
580                         // Add in a blank row
581                         $temp_result[''] = '';
582                 }
583
584                 // Get the id and the name.
585                 while($row = $db->fetchByAssoc($result)) {
586                         if($use_real_name == true || showFullName()) {
587                                 if(isset($row['last_name'])) { // cn: we will ALWAYS have both first_name and last_name (empty value if blank in db)
588                                         $temp_result[$row['id']] = $locale->getLocaleFormattedName($row['first_name'],$row['last_name']);
589                                 } else {
590                                         $temp_result[$row['id']] = $row['user_name'];
591                                 }
592                         } else {
593                                 $temp_result[$row['id']] = $row['user_name'];
594                         }
595                 }
596
597                 $user_array = $temp_result;
598                 if($from_cache)
599                         set_register_value('user_array', $add_blank. $status . $assigned_user, $temp_result);
600         }
601
602
603         return $user_array;
604 }
605
606
607 /**
608  * uses a different query to return a list of users than get_user_array()
609  * @param args string where clause entry
610  * @return array Array of Users' details that match passed criteria
611  */
612 function getUserArrayFromFullName($args, $hide_portal_users = false) {
613         global $locale;
614         $db = DBManagerFactory::getInstance();
615
616         $argArray = array();
617         if(strpos($args, " ")) {
618                 $argArray = explode(" ", $args);
619         } else {
620                 $argArray[] = $args;
621         }
622
623         $inClause = '';
624         foreach($argArray as $arg) {
625                 if(!empty($inClause)) {
626                         $inClause .= ' OR ';
627                 }
628                 if(empty($arg))
629                 continue;
630
631                 $inClause .= "(first_name LIKE '{$arg}%' OR last_name LIKE '{$arg}%')";
632         }
633
634         $query  = "SELECT id, first_name, last_name, user_name FROM users WHERE status='Active' AND deleted=0 AND ";
635         if ( $hide_portal_users ) {
636             $query .= " portal_only=0 AND ";
637         }
638         $query .= $inClause;
639         $query .= " ORDER BY last_name ASC";
640
641         $r = $db->query($query);
642         $ret = array();
643         while($a = $db->fetchByAssoc($r)) {
644                 $ret[$a['id']] = $locale->getLocaleFormattedName($a['first_name'], $a['last_name']);
645         }
646
647         return $ret;
648 }
649
650 /**
651  *
652  * based on user pref then system pref
653  */
654 function showFullName() {
655         global $sugar_config;
656         global $current_user;
657         static $showFullName = null;
658
659         if (is_null($showFullName)) {
660                 $sysPref = !empty($sugar_config['use_real_names']);
661                 $userPref = (is_object($current_user)) ? $current_user->getPreference('use_real_names') : null;
662
663                 if($userPref != null) {
664                         $showFullName = ($userPref == 'on');
665                 } else {
666                         $showFullName = $sysPref;
667                 }
668         }
669
670         return $showFullName;
671 }
672
673 function clean($string, $maxLength)
674 {
675         $string = substr($string, 0, $maxLength);
676         return escapeshellcmd($string);
677 }
678
679 /**
680  * Copy the specified request variable to the member variable of the specified object.
681  * Do no copy if the member variable is already set.
682  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
683  * All Rights Reserved.
684  * Contributor(s): ______________________________________..
685  */
686 function safe_map($request_var, & $focus, $always_copy = false)
687 {
688         safe_map_named($request_var, $focus, $request_var, $always_copy);
689 }
690
691 /**
692  * Copy the specified request variable to the member variable of the specified object.
693  * Do no copy if the member variable is already set.
694  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
695  * All Rights Reserved.
696  * Contributor(s): ______________________________________..
697  */
698 function safe_map_named($request_var, & $focus, $member_var, $always_copy)
699 {
700         if (isset($_REQUEST[$request_var]) && ($always_copy || is_null($focus->$member_var))) {
701                 $GLOBALS['log']->debug("safe map named called assigning '{$_REQUEST[$request_var]}' to $member_var");
702                 $focus->$member_var = $_REQUEST[$request_var];
703         }
704 }
705
706 /**
707  * This function retrieves an application language file and returns the array of strings included in the $app_list_strings var.
708  *
709  * @param string $language specific language to load
710  * @return array lang strings
711  */
712 function return_app_list_strings_language($language)
713 {
714         global $app_list_strings;
715         global $sugar_config;
716
717         $cache_key = 'app_list_strings.'.$language;
718
719         // Check for cached value
720         $cache_entry = sugar_cache_retrieve($cache_key);
721         if(!empty($cache_entry))
722         {
723                 return $cache_entry;
724         }
725
726         $default_language = $sugar_config['default_language'];
727         $temp_app_list_strings = $app_list_strings;
728
729         $langs = array();
730         if ($language != 'en_us') {
731             $langs[] = 'en_us';
732         }
733         if ($default_language != 'en_us' && $language != $default_language) {
734             $langs[] = $default_language;
735         }
736         $langs[] = $language;
737
738         $app_list_strings_array = array();
739
740         foreach ( $langs as $lang ) {
741             $app_list_strings = array();
742             if(file_exists("include/language/$lang.lang.php")) {
743             include("include/language/$lang.lang.php");
744             $GLOBALS['log']->info("Found language file: $lang.lang.php");
745         }
746         if(file_exists("include/language/$lang.lang.override.php")) {
747             include("include/language/$lang.lang.override.php");
748             $GLOBALS['log']->info("Found override language file: $lang.lang.override.php");
749         }
750         if(file_exists("include/language/$lang.lang.php.override")) {
751             include("include/language/$lang.lang.php.override");
752             $GLOBALS['log']->info("Found override language file: $lang.lang.php.override");
753         }
754
755         $app_list_strings_array[] = $app_list_strings;
756     }
757
758     $app_list_strings = array();
759     foreach ( $app_list_strings_array as $app_list_strings_item ) {
760         $app_list_strings = sugarArrayMerge($app_list_strings, $app_list_strings_item);
761     }
762
763     foreach ( $langs as $lang ) {
764         if(file_exists("custom/application/Ext/Language/$lang.lang.ext.php")) {
765             $app_list_strings = _mergeCustomAppListStrings("custom/application/Ext/Language/$lang.lang.ext.php" , $app_list_strings);
766             $GLOBALS['log']->info("Found extended language file: $lang.lang.ext.php");
767         }
768         if(file_exists("custom/include/language/$lang.lang.php")) {
769             include("custom/include/language/$lang.lang.php");
770             $GLOBALS['log']->info("Found custom language file: $lang.lang.php");
771         }
772     }
773
774         if(!isset($app_list_strings)) {
775                 $GLOBALS['log']->fatal("Unable to load the application language file for the selected language ($language) or the default language ($default_language) or the en_us language");
776                 return null;
777         }
778
779         $return_value = $app_list_strings;
780         $app_list_strings = $temp_app_list_strings;
781
782         sugar_cache_put($cache_key, $return_value);
783
784         return $return_value;
785 }
786
787 /**
788 * The dropdown items in custom language files is $app_list_strings['$key']['$second_key'] = $value not
789 * $GLOBALS['app_list_strings']['$key'] = $value, so we have to delete the original ones in app_list_strings and relace it with the custom ones.
790  * @param file string the language that you want include,
791  * @param app_list_strings array the golbal strings
792  * @return array
793  */
794  //jchi 25347
795 function _mergeCustomAppListStrings($file , $app_list_strings){
796         $app_list_strings_original = $app_list_strings;
797         unset($app_list_strings);
798         include($file);
799         if(!isset($app_list_strings) || !is_array($app_list_strings)){
800                 return $app_list_strings_original;
801         }
802         //Bug 25347: We should not merge custom dropdown fields unless they relate to parent fields or the module list.
803         foreach($app_list_strings as $key=>$value)
804         {
805                 $exemptDropdowns = array("moduleList", "parent_type_display", "record_type_display", "record_type_display_notes");
806                 if (!in_array($key, $exemptDropdowns) && array_key_exists($key, $app_list_strings_original))
807                 {
808                         unset($app_list_strings_original["$key"]);
809                 }
810    }
811    $app_list_strings = sugarArrayMergeRecursive($app_list_strings_original , $app_list_strings);
812    return $app_list_strings;
813 }
814
815 /**
816  * This function retrieves an application language file and returns the array of strings included.
817  *
818  * @param string $language specific language to load
819  * @return array lang strings
820  */
821 function return_application_language($language)
822 {
823         global $app_strings, $sugar_config;
824
825         $cache_key = 'app_strings.'.$language;
826
827         // Check for cached value
828         $cache_entry = sugar_cache_retrieve($cache_key);
829         if(!empty($cache_entry))
830         {
831                 return $cache_entry;
832         }
833
834         $temp_app_strings = $app_strings;
835         $default_language = $sugar_config['default_language'];
836
837         $langs = array();
838         if ($language != 'en_us') {
839             $langs[] = 'en_us';
840         }
841         if ($default_language != 'en_us' && $language != $default_language) {
842             $langs[] = $default_language;
843         }
844
845         $langs[] = $language;
846
847         $app_strings_array = array();
848
849         foreach ( $langs as $lang ) {
850             $app_strings = array();
851             if(file_exists("include/language/$lang.lang.php")) {
852             include("include/language/$lang.lang.php");
853             $GLOBALS['log']->info("Found language file: $lang.lang.php");
854         }
855         if(file_exists("include/language/$lang.lang.override.php")) {
856             include("include/language/$lang.lang.override.php");
857             $GLOBALS['log']->info("Found override language file: $lang.lang.override.php");
858         }
859         if(file_exists("include/language/$lang.lang.php.override")) {
860             include("include/language/$lang.lang.php.override");
861             $GLOBALS['log']->info("Found override language file: $lang.lang.php.override");
862         }
863         if(file_exists("custom/application/Ext/Language/$lang.lang.ext.php")) {
864             include("custom/application/Ext/Language/$lang.lang.ext.php");
865             $GLOBALS['log']->info("Found extended language file: $lang.lang.ext.php");
866         }
867         if(file_exists("custom/include/language/$lang.lang.php")) {
868             include("custom/include/language/$lang.lang.php");
869             $GLOBALS['log']->info("Found custom language file: $lang.lang.php");
870         }
871         $app_strings_array[] = $app_strings;
872         }
873
874         $app_strings = array();
875     foreach ( $app_strings_array as $app_strings_item ) {
876         $app_strings = sugarArrayMerge($app_strings, $app_strings_item);
877     }
878
879         if(!isset($app_strings)) {
880                 $GLOBALS['log']->fatal("Unable to load the application language strings");
881                 return null;
882         }
883
884         // If we are in debug mode for translating, turn on the prefix now!
885         if($sugar_config['translation_string_prefix']) {
886                 foreach($app_strings as $entry_key=>$entry_value) {
887                         $app_strings[$entry_key] = $language.' '.$entry_value;
888                 }
889         }
890         if(isset($_SESSION['show_deleted'])) {
891                 $app_strings['LBL_DELETE_BUTTON'] = $app_strings['LBL_UNDELETE_BUTTON'];
892                 $app_strings['LBL_DELETE_BUTTON_LABEL'] = $app_strings['LBL_UNDELETE_BUTTON_LABEL'];
893                 $app_strings['LBL_DELETE_BUTTON_TITLE'] = $app_strings['LBL_UNDELETE_BUTTON_TITLE'];
894                 $app_strings['LBL_DELETE'] = $app_strings['LBL_UNDELETE'];
895         }
896
897         $app_strings['LBL_ALT_HOT_KEY'] = get_alt_hot_key();
898
899         $return_value = $app_strings;
900         $app_strings = $temp_app_strings;
901
902         sugar_cache_put($cache_key, $return_value);
903
904         return $return_value;
905 }
906
907 /**
908  * This function retrieves a module's language file and returns the array of strings included.
909  *
910  * @param string $language specific language to load
911  * @param string $module module name to load strings for
912  * @param bool $refresh optional, true if you want to rebuild the language strings
913  * @return array lang strings
914  */
915 function return_module_language($language, $module, $refresh=false)
916 {
917         global $mod_strings;
918         global $sugar_config;
919         global $currentModule;
920
921         // Jenny - Bug 8119: Need to check if $module is not empty
922         if (empty($module)) {
923                 $stack  = debug_backtrace();
924                 $GLOBALS['log']->warn("Variable module is not in return_module_language ". var_export($stack, true));
925                 return array();
926         }
927
928         $cache_key = LanguageManager::getLanguageCacheKey($module, $language);
929         // Check for cached value
930         $cache_entry = sugar_cache_retrieve($cache_key);
931         if(!empty($cache_entry))
932         {
933                 return $cache_entry;
934         }
935
936         // Store the current mod strings for later
937         $temp_mod_strings = $mod_strings;
938         $loaded_mod_strings = array();
939         $language_used = $language;
940         $default_language = $sugar_config['default_language'];
941
942         if(empty($language)) {
943                 $language = $default_language;
944         }
945
946         // Bug 21559 - So we can get all the strings defined in the template, refresh
947         // the vardefs file if the cached language file doesn't exist.
948     if(!file_exists($GLOBALS['sugar_config']['cache_dir'].'modules/'. $module . '/language/'.$language.'.lang.php')
949                         && !empty($GLOBALS['beanList'][$module])){
950                 $object = $GLOBALS['beanList'][$module];
951                 if ($object == 'aCase') {
952             $object = 'Case';
953                 }
954                 VardefManager::refreshVardefs($module,$object);
955         }
956
957         $loaded_mod_strings = LanguageManager::loadModuleLanguage($module, $language,$refresh);
958
959         // cn: bug 6048 - merge en_us with requested language
960         if($language != $sugar_config['default_language'])
961         $loaded_mod_strings = sugarArrayMerge(
962             LanguageManager::loadModuleLanguage($module, $sugar_config['default_language'],$refresh),
963                 $loaded_mod_strings
964             );
965
966     // Load in en_us strings by default
967     if($language != 'en_us' && $sugar_config['default_language'] != 'en_us')
968         $loaded_mod_strings = sugarArrayMerge(
969             LanguageManager::loadModuleLanguage($module, 'en_us', $refresh),
970                 $loaded_mod_strings
971             );
972
973         // If we are in debug mode for translating, turn on the prefix now!
974         if($sugar_config['translation_string_prefix']) {
975                 foreach($loaded_mod_strings as $entry_key=>$entry_value) {
976                         $loaded_mod_strings[$entry_key] = $language_used.' '.$entry_value;
977                 }
978         }
979
980         $return_value = $loaded_mod_strings;
981         if(!isset($mod_strings)){
982                 $mod_strings = $return_value;
983         }
984         else
985                 $mod_strings = $temp_mod_strings;
986
987     sugar_cache_put($cache_key, $return_value);
988         return $return_value;
989 }
990
991
992 /** This function retrieves an application language file and returns the array of strings included in the $mod_list_strings var.
993  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
994  * All Rights Reserved.
995  * Contributor(s): ______________________________________..
996  * If you are using the current language, do not call this function unless you are loading it for the first time */
997 function return_mod_list_strings_language($language,$module) {
998         global $mod_list_strings;
999         global $sugar_config;
1000         global $currentModule;
1001
1002         $cache_key = "mod_list_str_lang.".$language.$module;
1003
1004         // Check for cached value
1005         $cache_entry = sugar_cache_retrieve($cache_key);
1006         if(!empty($cache_entry))
1007         {
1008                 return $cache_entry;
1009         }
1010
1011         $language_used = $language;
1012         $temp_mod_list_strings = $mod_list_strings;
1013         $default_language = $sugar_config['default_language'];
1014
1015         if($currentModule == $module && isset($mod_list_strings) && $mod_list_strings != null) {
1016                 return $mod_list_strings;
1017         }
1018
1019         // cn: bug 6351 - include en_us if file langpack not available
1020         // cn: bug 6048 - merge en_us with requested language
1021         include("modules/$module/language/en_us.lang.php");
1022         $en_mod_list_strings = array();
1023         if($language_used != $default_language)
1024         $en_mod_list_strings = $mod_list_strings;
1025
1026         if(file_exists("modules/$module/language/$language.lang.php")) {
1027                 include("modules/$module/language/$language.lang.php");
1028         }
1029
1030         if(file_exists("modules/$module/language/$language.lang.override.php")){
1031                 include("modules/$module/language/$language.lang.override.php");
1032         }
1033
1034         if(file_exists("modules/$module/language/$language.lang.php.override")){
1035                 echo 'Please Change:<br>' . "modules/$module/language/$language.lang.php.override" . '<br>to<br>' . 'Please Change:<br>' . "modules/$module/language/$language.lang.override.php";
1036                 include("modules/$module/language/$language.lang.php.override");
1037         }
1038
1039         // cn: bug 6048 - merge en_us with requested language
1040         $mod_list_strings = sugarArrayMerge($en_mod_list_strings, $mod_list_strings);
1041
1042         // if we still don't have a language pack, then log an error
1043         if(!isset($mod_list_strings)) {
1044                 $GLOBALS['log']->fatal("Unable to load the application list language file for the selected language($language) or the default language($default_language) for module({$module})");
1045                 return null;
1046         }
1047
1048         $return_value = $mod_list_strings;
1049         $mod_list_strings = $temp_mod_list_strings;
1050
1051         sugar_cache_put($cache_key, $return_value);
1052         return $return_value;
1053 }
1054
1055
1056 /** This function retrieves a theme's language file and returns the array of strings included.
1057  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1058  * All Rights Reserved.
1059  * Contributor(s): ______________________________________..
1060  */
1061 function return_theme_language($language, $theme)
1062 {
1063         global $mod_strings, $sugar_config, $currentModule;
1064
1065         $language_used = $language;
1066         $default_language = $sugar_config['default_language'];
1067
1068         include(SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.php");
1069         if(file_exists(SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.override.php")){
1070                 include(SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.override.php");
1071         }
1072         if(file_exists(SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.php.override")){
1073                 echo 'Please Change:<br>' . SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.php.override" . '<br>to<br>' . 'Please Change:<br>' . SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.override.php";
1074                 include(SugarThemeRegistry::get($theme)->getFilePath()."/language/$current_language.lang.php.override");
1075         }
1076         if(!isset($theme_strings))
1077         {
1078                 $GLOBALS['log']->warn("Unable to find the theme file for language: ".$language." and theme: ".$theme);
1079                 require(SugarThemeRegistry::get($theme)->getFilePath()."/language/$default_language.lang.php");
1080                 $language_used = $default_language;
1081         }
1082
1083         if(!isset($theme_strings))
1084         {
1085                 $GLOBALS['log']->fatal("Unable to load the theme($theme) language file for the selected language($language) or the default language($default_language)");
1086                 return null;
1087         }
1088
1089         // If we are in debug mode for translating, turn on the prefix now!
1090         if($sugar_config['translation_string_prefix'])
1091         {
1092                 foreach($theme_strings as $entry_key=>$entry_value)
1093                 {
1094                         $theme_strings[$entry_key] = $language_used.' '.$entry_value;
1095                 }
1096         }
1097
1098         return $theme_strings;
1099 }
1100
1101
1102
1103 /** If the session variable is defined and is not equal to "" then return it.  Otherwise, return the default value.
1104  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1105  * All Rights Reserved.
1106  * Contributor(s): ______________________________________..
1107  */
1108 function return_session_value_or_default($varname, $default)
1109 {
1110         if(isset($_SESSION[$varname]) && $_SESSION[$varname] != "")
1111         {
1112                 return $_SESSION[$varname];
1113         }
1114
1115         return $default;
1116 }
1117
1118 /**
1119  * Creates an array of where restrictions.  These are used to construct a where SQL statement on the query
1120  * It looks for the variable in the $_REQUEST array.  If it is set and is not "" it will create a where clause out of it.
1121  * @param &$where_clauses - The array to append the clause to
1122  * @param $variable_name - The name of the variable to look for an add to the where clause if found
1123  * @param $SQL_name - [Optional] If specified, this is the SQL column name that is used.  If not specified, the $variable_name is used as the SQL_name.
1124  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1125  * All Rights Reserved.
1126  * Contributor(s): ______________________________________..
1127  */
1128 function append_where_clause(&$where_clauses, $variable_name, $SQL_name = null)
1129 {
1130         if($SQL_name == null)
1131         {
1132                 $SQL_name = $variable_name;
1133         }
1134
1135         if(isset($_REQUEST[$variable_name]) && $_REQUEST[$variable_name] != "")
1136         {
1137                 array_push($where_clauses, "$SQL_name like '".$GLOBALS['db']->quote($_REQUEST[$variable_name])."%'");
1138         }
1139 }
1140
1141 /**
1142  * Generate the appropriate SQL based on the where clauses.
1143  * @param $where_clauses - An Array of individual where clauses stored as strings
1144  * @returns string where_clause - The final SQL where clause to be executed.
1145  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1146  * All Rights Reserved.
1147  * Contributor(s): ______________________________________..
1148  */
1149 function generate_where_statement($where_clauses)
1150 {
1151         $where = "";
1152         foreach($where_clauses as $clause)
1153         {
1154                 if($where != "")
1155                 $where .= " and ";
1156                 $where .= $clause;
1157         }
1158
1159         $GLOBALS['log']->info("Here is the where clause for the list view: $where");
1160         return $where;
1161 }
1162
1163 /**
1164  * determines if a passed string matches the criteria for a Sugar GUID
1165  * @param string $guid
1166  * @return bool False on failure
1167  */
1168 function is_guid($guid) {
1169         if(strlen($guid) != 36) {
1170                 return false;
1171         }
1172
1173         if(preg_match("/\w{8}-\w{4}-\w{4}-\w{4}-\w{12}/i", $guid)) {
1174                 return true;
1175         }
1176
1177         return true;;
1178 }
1179
1180
1181 /**
1182  * A temporary method of generating GUIDs of the correct format for our DB.
1183  * @return String contianing a GUID in the format: aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
1184  *
1185  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1186  * All Rights Reserved.
1187  * Contributor(s): ______________________________________..
1188  */
1189 function create_guid()
1190 {
1191         $microTime = microtime();
1192         list($a_dec, $a_sec) = explode(" ", $microTime);
1193
1194         $dec_hex = dechex($a_dec* 1000000);
1195         $sec_hex = dechex($a_sec);
1196
1197         ensure_length($dec_hex, 5);
1198         ensure_length($sec_hex, 6);
1199
1200         $guid = "";
1201         $guid .= $dec_hex;
1202         $guid .= create_guid_section(3);
1203         $guid .= '-';
1204         $guid .= create_guid_section(4);
1205         $guid .= '-';
1206         $guid .= create_guid_section(4);
1207         $guid .= '-';
1208         $guid .= create_guid_section(4);
1209         $guid .= '-';
1210         $guid .= $sec_hex;
1211         $guid .= create_guid_section(6);
1212
1213         return $guid;
1214
1215 }
1216
1217 function create_guid_section($characters)
1218 {
1219         $return = "";
1220         for($i=0; $i<$characters; $i++)
1221         {
1222                 $return .= dechex(mt_rand(0,15));
1223         }
1224         return $return;
1225 }
1226
1227 function ensure_length(&$string, $length)
1228 {
1229         $strlen = strlen($string);
1230         if($strlen < $length)
1231         {
1232                 $string = str_pad($string,$length,"0");
1233         }
1234         else if($strlen > $length)
1235         {
1236                 $string = substr($string, 0, $length);
1237         }
1238 }
1239
1240 function microtime_diff($a, $b) {
1241         list($a_dec, $a_sec) = explode(" ", $a);
1242         list($b_dec, $b_sec) = explode(" ", $b);
1243         return $b_sec - $a_sec + $b_dec - $a_dec;
1244 }
1245
1246 // check if Studio is displayed.
1247 function displayStudioForCurrentUser()
1248 {
1249     global $current_user;
1250     if ( $current_user->isAdmin() ) {
1251         return true;
1252     }
1253
1254
1255
1256         return true;
1257
1258 }
1259
1260 function displayWorkflowForCurrentUser()
1261 {
1262     $_SESSION['display_workflow_for_user'] = false;
1263     return false;
1264 }
1265
1266 // return an array with all modules where the user is an admin.
1267 function get_admin_modules_for_user($user) {
1268     $GLOBALS['log']->deprecated("get_admin_modules_for_user() is deprecated as of 6.2.2 and may disappear in the future, use Users->getDeveloperModules() instead");
1269
1270     if(!isset($user)){
1271         $modules = array();
1272         return $modules;
1273     }
1274
1275     return($user->getDeveloperModules());
1276     
1277 }
1278
1279  function get_workflow_admin_modules_for_user($user){
1280     if (isset($_SESSION['get_workflow_admin_modules_for_user'])) {
1281         return $_SESSION['get_workflow_admin_modules_for_user'];
1282     }
1283
1284     global $moduleList;
1285     $workflow_mod_list = array();
1286     foreach($moduleList as $module){
1287                 $workflow_mod_list[$module] = $module;
1288         }
1289
1290         // This list is taken from teh previous version of workflow_utils.php
1291     $workflow_mod_list['Tasks'] = "Tasks";
1292     $workflow_mod_list['Calls'] = "Calls";
1293     $workflow_mod_list['Meetings'] = "Meetings";
1294     $workflow_mod_list['Notes'] = "Notes";
1295     $workflow_mod_list['ProjectTask'] = "Project Tasks";
1296         $workflow_mod_list['Leads'] = "Leads";
1297         $workflow_mod_list['Opportunities'] = "Opportunities";
1298         // End of list
1299
1300     $workflow_admin_modules = array();
1301     if(empty($user)) {
1302         return $workflow_admin_modules;
1303     }
1304     $actions = ACLAction::getUserActions($user->id);
1305     //check for ForecastSchedule because it doesn't exist in $workflow_mod_list
1306     if (isset($actions['ForecastSchedule']['module']['admin']['aclaccess']) && ($actions['ForecastSchedule']['module']['admin']['aclaccess']==ACL_ALLOW_DEV ||
1307         $actions['ForecastSchedule']['module']['admin']['aclaccess']==ACL_ALLOW_ADMIN_DEV)) {
1308         $workflow_admin_modules['Forecasts'] = 'Forecasts';
1309     }
1310     foreach ($workflow_mod_list as $key=>$val) {
1311         if(!in_array($val, $workflow_admin_modules) && ($val!='iFrames' && $val!='Feeds' && $val!='Home' && $val!='Dashboard'
1312             && $val!='Calendar' && $val!='Activities' && $val!='Reports') &&
1313            ($user->isDeveloperForModule($key))) {
1314                 $workflow_admin_modules[$key] = $val;
1315         }
1316     }
1317     $_SESSION['get_workflow_admin_modules_for_user'] = $workflow_admin_modules;
1318     return ($workflow_admin_modules);
1319 }
1320
1321 // Check if user is admin for at least one module.
1322 function is_admin_for_any_module($user) {
1323     if (!isset($user)){
1324         return false;
1325     }
1326     if($user->isAdmin()) {
1327         return true;
1328     }
1329     return false;
1330 }
1331
1332
1333 // Check if user is admin for a specific module.
1334 function is_admin_for_module($user,$module) {
1335     if (!isset($user)) {
1336         return false;
1337     }
1338     if ($user->isAdmin()) {
1339         return true;
1340     }
1341     return false;
1342 }
1343
1344
1345 /**
1346  * Check if user id belongs to a system admin.
1347  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1348  * All Rights Reserved.
1349  * Contributor(s): ______________________________________..
1350  */
1351 function is_admin($user) {
1352     if(empty($user)) {
1353         return false;
1354     }
1355     
1356         return $user->isAdmin();
1357 }
1358
1359 /**
1360  * Return the display name for a theme if it exists.
1361  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1362  * All Rights Reserved.
1363  * Contributor(s): ______________________________________..
1364  *
1365  * @deprecated use SugarThemeRegistry::get($theme)->name instead
1366  */
1367 function get_theme_display($theme)
1368 {
1369         return SugarThemeRegistry::get($theme)->name;
1370 }
1371
1372 /**
1373  * Return an array of directory names.
1374  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1375  * All Rights Reserved.
1376  * Contributor(s): ______________________________________..
1377  *
1378  * @deprecated use SugarThemeRegistry::availableThemes() instead.
1379  */
1380 function get_themes()
1381 {
1382     return SugarThemeRegistry::availableThemes();
1383 }
1384
1385 /**
1386  * THIS FUNCTION IS DEPRECATED AND SHOULD NOT BE USED; USE get_select_options_with_id()
1387  * Create HTML to display select options in a dropdown list.  To be used inside
1388  * of a select statement in a form.
1389  * param $option_list - the array of strings to that contains the option list
1390  * param $selected - the string which contains the default value
1391  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1392  * All Rights Reserved.
1393  * Contributor(s): ______________________________________..
1394  */
1395 function get_select_options ($option_list, $selected) {
1396         return get_select_options_with_id($option_list, $selected);
1397 }
1398
1399 /**
1400  * Create HTML to display select options in a dropdown list.  To be used inside
1401  * of a select statement in a form.   This method expects the option list to have keys and values.  The keys are the ids.  The values are the display strings.
1402  * param $option_list - the array of strings to that contains the option list
1403  * param $selected - the string which contains the default value
1404  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1405  * All Rights Reserved.
1406  * Contributor(s): ______________________________________..
1407  */
1408 function get_select_options_with_id ($option_list, $selected_key) {
1409         return get_select_options_with_id_separate_key($option_list, $option_list, $selected_key);
1410 }
1411
1412
1413 /**
1414  * Create HTML to display select options in a dropdown list.  To be used inside
1415  * of a select statement in a form.   This method expects the option list to have keys and values.  The keys are the ids.  The values are the display strings.
1416  * param $label_list - the array of strings to that contains the option list
1417  * param $key_list - the array of strings to that contains the values list
1418  * param $selected - the string which contains the default value
1419  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1420  * All Rights Reserved.
1421  * Contributor(s): ______________________________________..
1422  */
1423 function get_select_options_with_id_separate_key ($label_list, $key_list, $selected_key, $massupdate=false) {
1424         global $app_strings;
1425         $select_options = "";
1426
1427         //for setting null selection values to human readable --None--
1428         $pattern = "/'0?'></";
1429         $replacement = "''>".$app_strings['LBL_NONE']."<";
1430
1431         if (empty($key_list)) $key_list = array();
1432         //create the type dropdown domain and set the selected value if $opp value already exists
1433         foreach ($key_list as $option_key=>$option_value) {
1434
1435                 $selected_string = '';
1436                 // the system is evaluating $selected_key == 0 || '' to true.  Be very careful when changing this.  Test all cases.
1437                 // The bug was only happening with one of the users in the drop down.  It was being replaced by none.
1438                 if (($option_key != '' && $selected_key == $option_key) || ($selected_key == '' && $option_key == '' && !$massupdate) || (is_array($selected_key) &&  in_array($option_key, $selected_key)))
1439                 {
1440                         $selected_string = 'selected ';
1441                 }
1442
1443                 $html_value = $option_key;
1444
1445                 $select_options .= "\n<OPTION ".$selected_string."value='$html_value'>$label_list[$option_key]</OPTION>";
1446         }
1447         $select_options = preg_replace($pattern, $replacement, $select_options);
1448         return $select_options;
1449 }
1450
1451
1452 /**
1453  * Call this method instead of die().
1454  * Then we call the die method with the error message that is passed in.
1455  */
1456 function sugar_die($error_message)
1457 {
1458         global $focus;
1459         sugar_cleanup();
1460         die($error_message);
1461 }
1462
1463
1464 /**
1465  * Create javascript to clear values of all elements in a form.
1466  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1467  * All Rights Reserved.
1468  * Contributor(s): ______________________________________..
1469  */
1470 function get_clear_form_js () {
1471         $the_script = <<<EOQ
1472 <script type="text/javascript" language="JavaScript">
1473 function clear_form(form) {
1474         var newLoc = 'index.php?action=' + form.action.value + '&module=' + form.module.value + '&query=true&clear_query=true';
1475         if(typeof(form.advanced) != 'undefined'){
1476                 newLoc += '&advanced=' + form.advanced.value;
1477         }
1478         document.location.href= newLoc;
1479 }
1480 </script>
1481 EOQ;
1482
1483         return $the_script;
1484 }
1485
1486 /**
1487  * Create javascript to set the cursor focus to specific field in a form
1488  * when the screen is rendered.  The field name is currently hardcoded into the
1489  * the function.
1490  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1491  * All Rights Reserved.
1492  * Contributor(s): ______________________________________..
1493  */
1494 function get_set_focus_js () {
1495         //TODO Clint 5/20 - Make this function more generic so that it can take in the target form and field names as variables
1496         $the_script = <<<EOQ
1497 <script type="text/javascript" language="JavaScript">
1498 <!-- Begin
1499 function set_focus() {
1500         if (document.forms.length > 0) {
1501                 for (i = 0; i < document.forms.length; i++) {
1502                         for (j = 0; j < document.forms[i].elements.length; j++) {
1503                                 var field = document.forms[i].elements[j];
1504                                 if ((field.type == "text" || field.type == "textarea" || field.type == "password") &&
1505                                                 !field.disabled && (field.name == "first_name" || field.name == "name" || field.name == "user_name" || field.name=="document_name")) {
1506                                         field.focus();
1507                     if (field.type == "text") {
1508                         field.select();
1509                     }
1510                                         break;
1511                         }
1512                         }
1513         }
1514         }
1515 }
1516 //  End -->
1517 </script>
1518 EOQ;
1519
1520         return $the_script;
1521 }
1522
1523 /**
1524  * Very cool algorithm for sorting multi-dimensional arrays.  Found at http://us2.php.net/manual/en/function.array-multisort.php
1525  * Syntax: $new_array = array_csort($array [, 'col1' [, SORT_FLAG [, SORT_FLAG]]]...);
1526  * Explanation: $array is the array you want to sort, 'col1' is the name of the column
1527  * you want to sort, SORT_FLAGS are : SORT_ASC, SORT_DESC, SORT_REGULAR, SORT_NUMERIC, SORT_STRING
1528  * you can repeat the 'col',FLAG,FLAG, as often you want, the highest prioritiy is given to
1529  * the first - so the array is sorted by the last given column first, then the one before ...
1530  * Example: $array = array_csort($array,'town','age',SORT_DESC,'name');
1531  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1532  * All Rights Reserved.
1533  * Contributor(s): ______________________________________..
1534  */
1535 function array_csort() {
1536         $args = func_get_args();
1537         $marray = array_shift($args);
1538         $i = 0;
1539
1540         $msortline = "return(array_multisort(";
1541         foreach ($args as $arg) {
1542                 $i++;
1543                 if (is_string($arg)) {
1544                         foreach ($marray as $row) {
1545                                 $sortarr[$i][] = $row[$arg];
1546                         }
1547                 } else {
1548                         $sortarr[$i] = $arg;
1549                 }
1550                 $msortline .= "\$sortarr[".$i."],";
1551         }
1552         $msortline .= "\$marray));";
1553
1554         eval($msortline);
1555         return $marray;
1556 }
1557
1558 /**
1559  * Converts localized date format string to jscalendar format
1560  * Example: $array = array_csort($array,'town','age',SORT_DESC,'name');
1561  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
1562  * All Rights Reserved.
1563  * Contributor(s): ______________________________________..
1564  */
1565 function parse_calendardate($local_format) {
1566         preg_match('/\(?([^-]{1})[^-]*-([^-]{1})[^-]*-([^-]{1})[^-]*\)/', $local_format, $matches);
1567         $calendar_format = "%" . $matches[1] . "-%" . $matches[2] . "-%" . $matches[3];
1568         return str_replace(array("y", "ï¿„1�7", "a", "j"), array("Y", "Y", "Y", "d"), $calendar_format);
1569 }
1570
1571
1572
1573
1574
1575 function translate($string, $mod='', $selectedValue=''){
1576         //$test_start = microtime();
1577         //static $mod_strings_results = array();
1578         if(!empty($mod)){
1579                 global $current_language;
1580                 //Bug 31275
1581                 if(isset($_REQUEST['login_language'])){
1582                     $current_language = ($_REQUEST['login_language'] == $current_language)? $current_language : $_REQUEST['login_language'];
1583                 }
1584                 $mod_strings = return_module_language($current_language, $mod);
1585
1586         }else{
1587                 global $mod_strings;
1588         }
1589
1590         $returnValue = '';
1591         global $app_strings, $app_list_strings;
1592
1593         if(isset($mod_strings[$string]))
1594         $returnValue = $mod_strings[$string];
1595         else if(isset($app_strings[$string]))
1596         $returnValue = $app_strings[$string];
1597         else if(isset($app_list_strings[$string]))
1598         $returnValue = $app_list_strings[$string];
1599         else if(isset($app_list_strings['moduleList']) && isset($app_list_strings['moduleList'][$string]))
1600         $returnValue = $app_list_strings['moduleList'][$string];
1601
1602
1603         //$test_end = microtime();
1604         //
1605         //    $mod_strings_results[$mod] = microtime_diff($test_start,$test_end);
1606         //
1607         //    echo("translate results:");
1608         //    $total_time = 0;
1609         //    $total_strings = 0;
1610         //    foreach($mod_strings_results as $key=>$value)
1611         //    {
1612         //        echo("Module $key \t\t time $value \t\t<br>");
1613         //        $total_time += $value;
1614         //    }
1615         //
1616         //    echo("Total time: $total_time<br>");
1617
1618
1619
1620         if(empty($returnValue)){
1621                 return $string;
1622         }
1623
1624         if(is_array($returnValue) && ! empty($selectedValue) && isset($returnValue[$selectedValue]) ){
1625                 return $returnValue[$selectedValue];
1626         }
1627
1628         return $returnValue;
1629 }
1630
1631 function unTranslateNum($num) {
1632         static $dec_sep;
1633         static $num_grp_sep;
1634         global $current_user, $sugar_config;
1635
1636         if($dec_sep == null) {
1637             $user_dec_sep = $current_user->getPreference('dec_sep');
1638             $dec_sep = (empty($user_dec_sep) ? $sugar_config['default_decimal_seperator'] : $user_dec_sep);
1639         }
1640         if($num_grp_sep == null) {
1641             $user_num_grp_sep = $current_user->getPreference('num_grp_sep');
1642             $num_grp_sep = (empty($user_num_grp_sep) ? $sugar_config['default_number_grouping_seperator'] : $user_num_grp_sep);
1643         }
1644
1645         $num = preg_replace("'" . preg_quote($num_grp_sep) . "'", '', $num);
1646         $num = preg_replace("'" . preg_quote($dec_sep) . "'", '.', $num);
1647         return $num;
1648
1649 }
1650
1651 function add_http($url) {
1652         if(!preg_match("@://@i", $url)) {
1653                 $scheme = "http";
1654                 if(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') {
1655                         $scheme = 'https';
1656                 }
1657
1658                 return "{$scheme}://{$url}";
1659         }
1660
1661         return $url;
1662 }
1663
1664 /**
1665  * returns a default array of XSS tags to clean
1666  * @return array
1667  */
1668 function getDefaultXssTags() {
1669         $tmp = array(
1670         "applet" => "applet",
1671         "base" => "base",
1672         "embed" => "embed",
1673         "form" => "form",
1674         "frame" => "frame",
1675         "frameset" => "frameset",
1676         "iframe" => "iframe",
1677         "import" => "\?import",
1678         "layer" => "layer",
1679         "link" => "link",
1680         "object" => "object",
1681         "script" => "script",
1682         "xmp" => "xmp",
1683         );
1684
1685         $ret = base64_encode(serialize($tmp));
1686
1687         return $ret;
1688 }
1689
1690 /**
1691  * Remove potential xss vectors from strings
1692  * @param string str String to search for XSS attack vectors
1693  * @param bool cleanImg Flag to allow <img> tags to survive - only used by InboundEmail for inline images.
1694  * @return string
1695  */
1696 function remove_xss($str, $cleanImg=true)
1697 {
1698     $potentials = clean_xss($str, $cleanImg);
1699     if(is_array($potentials) && !empty($potentials)) {
1700         foreach($potentials as $bad) {
1701             $str = str_replace($bad, "", $str);
1702         }
1703     }
1704     return $str;
1705 }
1706
1707 /**
1708  * Detects typical XSS attack patterns
1709  * @param string str String to search for XSS attack vectors
1710  * @param bool cleanImg Flag to allow <img> tags to survive - only used by InboundEmail for inline images.
1711  * @return array Array of matches, empty on clean string
1712  */
1713 function clean_xss($str, $cleanImg=true) {
1714         global $sugar_config;
1715
1716         if(empty($sugar_config['email_xss']))
1717         $sugar_config['email_xss'] = getDefaultXssTags();
1718
1719         $arr = unserialize(base64_decode($sugar_config['email_xss']));
1720
1721         $regex = '';
1722         foreach($arr as $v) {
1723                 if(!empty($regex)) {
1724                         $regex .= "|";
1725                 }
1726                 $regex .= $v;
1727         }
1728
1729         $tag_regex        = "#<({$regex})[^>]*>?#sim";
1730
1731         // cn: bug 13079 - "on\w" matched too many non-events (cONTact, strONG, etc.)
1732         $jsEvents  = "onblur|onfocus|oncontextmenu|onresize|onscroll|onunload|ondblclick|onclick|";
1733         $jsEvents .= "onmouseup|onmouseover|onmousedown|onmouseenter|onmouseleave|onmousemove|onload|onchange|";
1734         $jsEvents .= "onreset|onselect|onsubmit|onkeydown|onkeypress|onkeyup|onabort|onerror|ondragdrop";
1735
1736         $attribute_regex        = "#<[^/>][^>]+({$jsEvents})[^=>]*=[^>]*>#sim";
1737         $javascript_regex       = '@<[^/>][^>]+(expression\(|j\W*a\W*v\W*a|v\W*b\W*s\W*c\W*r|&#|/\*|\*/)[^>]*>@sim';
1738         $imgsrc_regex           = '#<[^>]+src[^=]*=([^>]*?http://[^>]*)>#sim';
1739         $css_url                        = '#url\(.*\.\w+\)#';
1740
1741
1742         $str = str_replace("\t", "", $str);
1743
1744         $matches = array_merge(
1745         xss_check_pattern($tag_regex, $str),
1746         xss_check_pattern($javascript_regex, $str),
1747         xss_check_pattern($attribute_regex, $str)
1748         );
1749
1750         if($cleanImg) {
1751                 $matches = array_merge($matches,
1752                 xss_check_pattern($imgsrc_regex, $str)
1753                 );
1754         }
1755
1756         // cn: bug 13498 - custom white-list of allowed domains that vet remote images
1757         preg_match_all($css_url, $str, $cssUrlMatches, PREG_PATTERN_ORDER);
1758
1759         if(isset($sugar_config['security_trusted_domains']) && !empty($sugar_config['security_trusted_domains']) && is_array($sugar_config['security_trusted_domains'])) {
1760                 if(is_array($cssUrlMatches) && count($cssUrlMatches) > 0) {
1761                         // normalize whitelist
1762                         foreach($sugar_config['security_trusted_domains'] as $k => $v) {
1763                                 $sugar_config['security_trusted_domains'][$k] = strtolower($v);
1764                         }
1765
1766                         foreach($cssUrlMatches[0] as $match) {
1767                                 $domain = strtolower(substr(strstr($match, "://"), 3));
1768                                 $baseUrl = substr($domain, 0, strpos($domain, "/"));
1769
1770                                 if(!in_array($baseUrl, $sugar_config['security_trusted_domains'])) {
1771                                         $matches[] = $match;
1772                                 }
1773                         }
1774                 }
1775         } else {
1776                 $matches = array_merge($matches, $cssUrlMatches[0]);
1777         }
1778
1779         return $matches;
1780 }
1781
1782 /**
1783  * Helper function used by clean_xss() to parse for known-bad vectors
1784  * @param string pattern Regex pattern to use
1785  * @param string str String to parse for badness
1786  * @return array
1787  */
1788 function xss_check_pattern($pattern, $str) {
1789         preg_match_all($pattern, $str, $matches, PREG_PATTERN_ORDER);
1790         return $matches[1];
1791 }
1792
1793 // Designed to take a string passed in the URL as a parameter and clean all "bad" data from it
1794 // The second argument is a string, "filter," which corresponds to a regular expression
1795 function clean_string($str, $filter = "STANDARD") {
1796         global  $sugar_config;
1797
1798         $filters = Array(
1799         "STANDARD"        => '#[^A-Z0-9\-_\.\@]#i',
1800         "STANDARDSPACE"   => '#[^A-Z0-9\-_\.\@\ ]#i',
1801         "FILE"            => '#[^A-Z0-9\-_\.]#i',
1802         "NUMBER"          => '#[^0-9\-]#i',
1803         "SQL_COLUMN_LIST" => '#[^A-Z0-9,_\.]#i',
1804         "PATH_NO_URL"     => '#://#i',
1805         "SAFED_GET"               => '#[^A-Z0-9\@\=\&\?\.\/\-_~]#i', /* range of allowed characters in a GET string */
1806         "UNIFIED_SEARCH"        => "#[\\x00]#", /* cn: bug 3356 & 9236 - MBCS search strings */
1807         "AUTO_INCREMENT"        => '#[^0-9\-,\ ]#i',
1808         "ALPHANUM"        => '#[^A-Z0-9\-]#i',
1809         );
1810
1811         if (preg_match($filters[$filter], $str)) {
1812                 if (isset($GLOBALS['log']) && is_object($GLOBALS['log'])) {
1813                         $GLOBALS['log']->fatal("SECURITY: bad data passed in; string: {$str}");
1814                 }
1815                 die("Bad data passed in; <a href=\"{$sugar_config['site_url']}\">Return to Home</a>");
1816         }
1817         else {
1818                 return $str;
1819         }
1820 }
1821
1822 function clean_special_arguments() {
1823         if(isset($_SERVER['PHP_SELF'])) {
1824                 if (!empty($_SERVER['PHP_SELF'])) clean_string($_SERVER['PHP_SELF'], 'SAFED_GET');
1825         }
1826         if (!empty($_REQUEST) && !empty($_REQUEST['login_theme'])) clean_string($_REQUEST['login_theme'], "STANDARD");
1827         if (!empty($_REQUEST) && !empty($_REQUEST['login_module'])) clean_string($_REQUEST['login_module'], "STANDARD");
1828         if (!empty($_REQUEST) && !empty($_REQUEST['login_action'])) clean_string($_REQUEST['login_action'], "STANDARD");
1829         if (!empty($_REQUEST) && !empty($_REQUEST['ck_login_theme_20'])) clean_string($_REQUEST['ck_login_theme_20'], "STANDARD");
1830         if (!empty($_SESSION) && !empty($_SESSION['authenticated_user_theme'])) clean_string($_SESSION['authenticated_user_theme'], "STANDARD");
1831         if (!empty($_REQUEST) && !empty($_REQUEST['module_name'])) clean_string($_REQUEST['module_name'], "STANDARD");
1832         if (!empty($_REQUEST) && !empty($_REQUEST['module'])) clean_string($_REQUEST['module'], "STANDARD");
1833         if (!empty($_POST) && !empty($_POST['parent_type'])) clean_string($_POST['parent_type'], "STANDARD");
1834         if (!empty($_REQUEST) && !empty($_REQUEST['mod_lang'])) clean_string($_REQUEST['mod_lang'], "STANDARD");
1835         if (!empty($_SESSION) && !empty($_SESSION['authenticated_user_language'])) clean_string($_SESSION['authenticated_user_language'], "STANDARD");
1836         if (!empty($_SESSION) && !empty($_SESSION['dyn_layout_file'])) clean_string($_SESSION['dyn_layout_file'], "PATH_NO_URL");
1837         if (!empty($_GET) && !empty($_GET['from'])) clean_string($_GET['from']);
1838         if (!empty($_GET) && !empty($_GET['gmto'])) clean_string($_GET['gmto'], "NUMBER");
1839         if (!empty($_GET) && !empty($_GET['case_number'])) clean_string($_GET['case_number'], "AUTO_INCREMENT");
1840         if (!empty($_GET) && !empty($_GET['bug_number'])) clean_string($_GET['bug_number'], "AUTO_INCREMENT");
1841         if (!empty($_GET) && !empty($_GET['quote_num'])) clean_string($_GET['quote_num'], "AUTO_INCREMENT");
1842         clean_superglobals('stamp', 'ALPHANUM'); // for vcr controls
1843         clean_superglobals('offset', 'ALPHANUM');
1844         clean_superglobals('return_action');
1845         clean_superglobals('return_module');
1846         return TRUE;
1847 }
1848
1849 /**
1850  * cleans the given key in superglobals $_GET, $_POST, $_REQUEST
1851  */
1852 function clean_superglobals($key, $filter = 'STANDARD') {
1853         if(isset($_GET[$key])) clean_string($_GET[$key], $filter);
1854         if(isset($_POST[$key])) clean_string($_POST[$key], $filter);
1855         if(isset($_REQUEST[$key])) clean_string($_REQUEST[$key], $filter);
1856 }
1857
1858 function set_superglobals($key, $val){
1859         $_GET[$key] = $val;
1860         $_POST[$key] = $val;
1861         $_REQUEST[$key] = $val;
1862 }
1863
1864 // Works in conjunction with clean_string() to defeat SQL injection, file inclusion attacks, and XSS
1865 function clean_incoming_data() {
1866         global $sugar_config;
1867
1868         if (get_magic_quotes_gpc() == 1) {
1869                 $req  = array_map("preprocess_param", $_REQUEST);
1870                 $post = array_map("preprocess_param", $_POST);
1871                 $get  = array_map("preprocess_param", $_GET);
1872         } else {
1873
1874                 $req  = array_map("securexss", $_REQUEST);
1875                 $post = array_map("securexss", $_POST);
1876                 $get  = array_map("securexss", $_GET);
1877         }
1878
1879         // PHP cannot stomp out superglobals reliably
1880         foreach($post as $k => $v) { $_POST[$k] = $v; }
1881         foreach($get  as $k => $v) { $_GET[$k] = $v; }
1882         foreach($req  as $k => $v) {
1883                  $_REQUEST[$k] = $v;
1884                  //ensure the keys are safe as well
1885                  securexsskey($k);
1886         }
1887         // Any additional variables that need to be cleaned should be added here
1888         if (isset($_REQUEST['login_theme'])) clean_string($_REQUEST['login_theme']);
1889         if (isset($_REQUEST['login_module'])) clean_string($_REQUEST['login_module']);
1890         if (isset($_REQUEST['login_action'])) clean_string($_REQUEST['login_action']);
1891         if (isset($_REQUEST['login_language'])) clean_string($_REQUEST['login_language']);
1892         if (isset($_REQUEST['action'])) clean_string($_REQUEST['action']);
1893         if (isset($_REQUEST['module'])) clean_string($_REQUEST['module']);
1894         if (isset($_REQUEST['record'])) clean_string($_REQUEST['record'], 'STANDARDSPACE');
1895         if (isset($_SESSION['authenticated_user_theme'])) clean_string($_SESSION['authenticated_user_theme']);
1896         if (isset($_SESSION['authenticated_user_language'])) clean_string($_SESSION['authenticated_user_language']);
1897         if (isset($_REQUEST['language'])) clean_string($_REQUEST['language']);
1898         if (isset($sugar_config['default_theme'])) clean_string($sugar_config['default_theme']);
1899         if (isset($_REQUEST['offset'])) clean_string($_REQUEST['offset']);
1900         if (isset($_REQUEST['stamp'])) clean_string($_REQUEST['stamp']);
1901
1902         if(isset($_REQUEST['lvso'])){
1903                         set_superglobals('lvso', (strtolower($_REQUEST['lvso']) === 'desc')?'desc':'asc');
1904         }
1905         // Clean "offset" and "order_by" parameters in URL
1906         foreach ($_REQUEST as $key => $val) {
1907                 if (str_end($key, "_offset")) {
1908                         clean_string($_REQUEST[$key], "ALPHANUM"); // keep this ALPHANUM for disable_count_query
1909                         set_superglobals($key, $_REQUEST[$key]);
1910                 }
1911                 elseif (str_end($key, "_ORDER_BY")) {
1912                         clean_string($_REQUEST[$key], "SQL_COLUMN_LIST");
1913                         set_superglobals($key, $_REQUEST[$key]);
1914                 }
1915         }
1916
1917
1918         return 0;
1919 }
1920
1921 // Returns TRUE if $str begins with $begin
1922 function str_begin($str, $begin) {
1923         return (substr($str, 0, strlen($begin)) == $begin);
1924 }
1925
1926 // Returns TRUE if $str ends with $end
1927 function str_end($str, $end) {
1928         return (substr($str, strlen($str) - strlen($end)) == $end);
1929 }
1930
1931 function securexss($value) {
1932         if(is_array($value)){
1933         $new = array();
1934         foreach($value as $key=>$val){
1935                 $new[$key] = securexss($val);
1936         }
1937         return $new;
1938     }
1939         static $xss_cleanup=  array('"' =>'&quot;', "'" =>  '&#039;' , '<' =>'&lt;' , '>'=>'&gt;');
1940         $value = preg_replace(array('/javascript:/i', '/\0/'), array('java script:', ''), $value);
1941         $value = preg_replace('/javascript:/i', 'java script:', $value);
1942         return str_replace(array_keys($xss_cleanup), array_values($xss_cleanup), $value);
1943 }
1944
1945 function securexsskey($value, $die=true){
1946         global $sugar_config;
1947         $matches = array();
1948         preg_match("/[\'\"\<\>]/", $value, $matches);
1949         if(!empty($matches)){
1950                 if($die){
1951                         die("Bad data passed in; <a href=\"{$sugar_config['site_url']}\">Return to Home</a>");
1952                 }else{
1953                         unset($_REQUEST[$value]);
1954                         unset($_POST[$value]);
1955                         unset($_GET[$value]);
1956                 }
1957         }
1958 }
1959
1960 function preprocess_param($value){
1961         if(is_string($value)){
1962                 if(get_magic_quotes_gpc() == 1){
1963                         $value = stripslashes($value);
1964                 }
1965
1966                 $value = securexss($value);
1967         }
1968
1969
1970         return $value;
1971
1972
1973 }
1974
1975 function set_register_value($category, $name, $value){
1976     return sugar_cache_put("{$category}:{$name}", $value);
1977 }
1978
1979 function get_register_value($category,$name){
1980     return sugar_cache_retrieve("{$category}:{$name}");
1981 }
1982
1983 // this function cleans id's when being imported
1984 function convert_id($string)
1985 {
1986         return preg_replace_callback( '|[^A-Za-z0-9\-]|',
1987         create_function(
1988         // single quotes are essential here,
1989         // or alternative escape all $ as \$
1990         '$matches',
1991         'return ord($matches[0]);'
1992          ) ,$string);
1993 }
1994
1995 /**
1996  * @deprecated use SugarTheme::getImage()
1997  */
1998 function get_image($image,$other_attributes,$width="",$height="")
1999 {
2000     return SugarThemeRegistry::current()->getImage(basename($image),
2001         $other_attributes,
2002         empty($width) ? null : $width,
2003         empty($height) ? null : $height
2004         );
2005 }
2006 /**
2007  * @deprecated use SugarTheme::getImageURL()
2008  */
2009 function getImagePath($image_name)
2010 {
2011     return SugarThemeRegistry::current()->getImageURL($image_name);
2012 }
2013
2014 function getWebPath($relative_path){
2015         //if it has  a :// then it isn't a relative path
2016         if(substr_count($relative_path, '://') > 0) return $relative_path;
2017         if(defined('TEMPLATE_URL'))$relative_path = SugarTemplateUtilities::getWebPath($relative_path);
2018         return $relative_path;
2019 }
2020
2021 function getJSPath($relative_path, $additional_attrs=''){
2022         if(defined('TEMPLATE_URL'))$relative_path = SugarTemplateUtilities::getWebPath($relative_path);
2023         if(empty($GLOBALS['sugar_config']['js_custom_version']))$GLOBALS['sugar_config']['js_custom_version'] = 1;
2024         $js_version_key = isset($GLOBALS['js_version_key'])?$GLOBALS['js_version_key']:'';
2025         $path = $relative_path . '?s=' . $js_version_key . '&c=' . $GLOBALS['sugar_config']['js_custom_version'] ;
2026         if ( inDeveloperMode() ) $path .= '&developerMode='.mt_rand();
2027         if(!empty($additonal_attrs)) $path .= '&' . $additional_attrs;
2028         return $path;
2029 }
2030
2031 function getSWFPath($relative_path, $additional_params=''){
2032         $path = $relative_path;
2033         if (!empty($additional_params)){
2034                 $path .= '?' . $additional_params;
2035         }
2036         if (defined('TEMPLATE_URL')){
2037                 $path = TEMPLATE_URL . '/' . $path;
2038         }
2039         return $path;
2040 }
2041
2042
2043
2044
2045
2046 function getSQLDate($date_str)
2047 {
2048         if (preg_match('/^(\d{1,2})-(\d{1,2})-(\d{4})$/',$date_str,$match))
2049         {
2050                 if ( strlen($match[2]) == 1)
2051                 {
2052                         $match[2] = "0".$match[2];
2053                 }
2054                 if ( strlen($match[1]) == 1)
2055                 {
2056                         $match[1] = "0".$match[1];
2057                 }
2058                 return "{$match[3]}-{$match[1]}-{$match[2]}";
2059         }
2060         else if (preg_match('/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/',$date_str,$match))
2061         {
2062                 if ( strlen($match[2]) == 1)
2063                 {
2064                         $match[2] = "0".$match[2];
2065                 }
2066                 if ( strlen($match[1]) == 1)
2067                 {
2068                         $match[1] = "0".$match[1];
2069                 }
2070                 return "{$match[3]}-{$match[1]}-{$match[2]}";
2071         }
2072         else
2073         {
2074                 return "";
2075         }
2076 }
2077
2078 function clone_history(&$db, $from_id,$to_id, $to_type)
2079 {
2080         global $timedate;
2081         $old_note_id=null;
2082         $old_filename=null;
2083         require_once('include/upload_file.php');
2084         $tables = array('calls'=>'Call', 'meetings'=>'Meeting', 'notes'=>'Note', 'tasks'=>'Task');
2085
2086         $location=array('Email'=>"modules/Emails/Email.php",
2087         'Call'=>"modules/Calls/Call.php",
2088         'Meeting'=>"modules/Meetings/Meeting.php",
2089         'Note'=>"modules/Notes/Note.php",
2090         'Tasks'=>"modules/Tasks/Task.php",
2091         );
2092
2093
2094         foreach($tables as $table=>$bean_class)
2095         {
2096
2097                 if (!class_exists($bean_class))
2098                 {
2099                         require_once($location[$bean_class]);
2100                 }
2101
2102                 $bProcessingNotes=false;
2103                 if ($table=='notes')
2104                 {
2105                         $bProcessingNotes=true;
2106                 }
2107                 $query = "SELECT id FROM $table WHERE parent_id='$from_id'";
2108                 $results = $db->query($query);
2109                 while($row = $db->fetchByAssoc($results))
2110                 {
2111                         //retrieve existing record.
2112                         $bean= new $bean_class();
2113                         $bean->retrieve($row['id']);
2114                         //process for new instance.
2115                         if ($bProcessingNotes)
2116                         {
2117                                 $old_note_id=$row['id'];
2118                                 $old_filename=$bean->filename;
2119                         }
2120                         $bean->id=null;
2121                         $bean->parent_id=$to_id;
2122                         $bean->parent_type=$to_type;
2123                         if ($to_type=='Contacts' and in_array('contact_id',$bean->column_fields))
2124                         {
2125                                 $bean->contact_id=$to_id;
2126                         }
2127                         $bean->update_date_modified = false;
2128             $bean->update_modified_by = false;
2129             if(isset($bean->date_modified))
2130                 $bean->date_modified = $timedate->to_db($bean->date_modified);
2131             if(isset($bean->date_entered))
2132                 $bean->date_entered = $timedate->to_db($bean->date_entered);
2133                         //save
2134                         $new_id=$bean->save();
2135
2136                         //duplicate the file now. for notes.
2137                         if ($bProcessingNotes && !empty($old_filename))
2138                         {
2139                                 UploadFile::duplicate_file($old_note_id,$new_id,$old_filename);
2140                         }
2141                         //reset the values needed for attachment duplication.
2142                         $old_note_id=null;
2143                         $old_filename=null;
2144                 }
2145         }
2146 }
2147
2148 function values_to_keys($array)
2149 {
2150         $new_array = array();
2151         if(!is_array($array))
2152         {
2153                 return $new_array;
2154         }
2155         foreach($array as $arr){
2156                 $new_array[$arr] = $arr;
2157         }
2158         return $new_array;
2159 }
2160
2161 function clone_relationship(&$db, $tables = array(), $from_column, $from_id, $to_id)
2162 {
2163         foreach($tables as $table)
2164         {
2165
2166                 if ($table == 'emails_beans') {
2167                         $query = "SELECT * FROM $table WHERE $from_column='$from_id' and bean_module='Leads'";
2168                 } else {
2169                         $query = "SELECT * FROM $table WHERE $from_column='$from_id'";
2170                 }
2171                 $results = $db->query($query);
2172                 while($row = $db->fetchByAssoc($results))
2173                 {
2174                         $query = "INSERT INTO $table ";
2175                         $names = '';
2176                         $values = '';
2177                         $row[$from_column] = $to_id;
2178                         $row['id'] = create_guid();
2179                         if ($table=='emails_beans') {
2180                                 $row['bean_module'] =='Contacts';
2181                         }
2182
2183                         foreach($row as $name=>$value)
2184                         {
2185
2186                                 if(empty($names))
2187                                 {
2188                                         $names .= $name;
2189                                         $values .= "'$value'";
2190                                 } else
2191                                 {
2192                                         $names .= ', '. $name;
2193                                         $values .= ", '$value'";
2194                                 }
2195                         }
2196                         $query .= "($names)     VALUES ($values)";
2197                         $db->query($query);
2198                 }
2199         }
2200 }
2201
2202 function get_unlinked_email_query($type, $bean) {
2203     global $current_user;
2204
2205     $return_array['select']='SELECT emails.id ';
2206     $return_array['from']='FROM emails ';
2207     $return_array['where']="";
2208         $return_array['join'] = " JOIN (select distinct email_id from emails_email_addr_rel eear
2209
2210         join email_addr_bean_rel eabr on eabr.bean_id ='$bean->id' and eabr.bean_module = '$bean->module_dir' and
2211         eabr.email_address_id = eear.email_address_id and eabr.deleted=0
2212         where eear.deleted=0 and eear.email_id not in
2213         (select eb.email_id from emails_beans eb where eb.bean_module ='$bean->module_dir' and eb.bean_id = '$bean->id')
2214         ) derivedemails on derivedemails.email_id = emails.id";
2215     $return_array['join_tables'][0] = '';
2216
2217         if (isset($type) and isset($type['return_as_array']) and $type['return_as_array']==true) {
2218                 return $return_array;
2219         }
2220
2221         return $return_array['select'] . $return_array['from'] . $return_array['where'];
2222 } // fn
2223
2224 /**
2225  * Check to see if the number is empty or non-zero
2226  * @param $value
2227  * @return boolean
2228  **/
2229 function number_empty($value)
2230 {
2231         return empty($value) && $value != '0';
2232 }
2233
2234 function get_bean_select_array($add_blank=true, $bean_name, $display_columns, $where='', $order_by='', $blank_is_none=false)
2235 {
2236         global $beanFiles;
2237         require_once($beanFiles[$bean_name]);
2238         $focus = new $bean_name();
2239         $user_array = array();
2240         $user_array = get_register_value('select_array',$bean_name. $display_columns. $where . $order_by);
2241         if(!$user_array)
2242         {
2243
2244                 $db = DBManagerFactory::getInstance();
2245                 $temp_result = Array();
2246                 $query = "SELECT id, {$display_columns} as display from {$focus->table_name} ";
2247                 $query .= "where ";
2248                 if ( $where != '')
2249                 {
2250                         $query .= $where." AND ";
2251                 }
2252
2253                 $query .=  " deleted=0";
2254
2255                 if ( $order_by != '')
2256                 {
2257                         $query .= ' order by '.$order_by;
2258                 }
2259
2260                 $GLOBALS['log']->debug("get_user_array query: $query");
2261                 $result = $db->query($query, true, "Error filling in user array: ");
2262
2263                 if ($add_blank==true){
2264                         // Add in a blank row
2265                         if($blank_is_none == true) { // set 'blank row' to "--None--"
2266                                 global $app_strings;
2267                                 $temp_result[''] = $app_strings['LBL_NONE'];
2268                         } else {
2269                                 $temp_result[''] = '';
2270                         }
2271                 }
2272
2273                 // Get the id and the name.
2274                 while($row = $db->fetchByAssoc($result))
2275                 {
2276                         $temp_result[$row['id']] = $row['display'];
2277                 }
2278
2279                 $user_array = $temp_result;
2280                 set_register_value('select_array',$bean_name. $display_columns. $where . $order_by,$temp_result);
2281         }
2282
2283         return $user_array;
2284
2285 }
2286 /**
2287  *
2288  *
2289  * @param unknown_type $listArray
2290  */
2291 // function parse_list_modules
2292 // searches a list for items in a user's allowed tabs and returns an array that removes unallowed tabs from list
2293 function parse_list_modules(&$listArray)
2294 {
2295         global $modListHeader;
2296         $returnArray = array();
2297
2298         foreach($listArray as $optionName => $optionVal)
2299         {
2300                 if(array_key_exists($optionName, $modListHeader))
2301                 {
2302                         $returnArray[$optionName] = $optionVal;
2303                 }
2304
2305                 // special case for projects
2306                 if(array_key_exists('Project', $modListHeader))
2307                 {
2308                         $returnArray['ProjectTask'] = $listArray['ProjectTask'];
2309                 }
2310         }
2311         $acldenied = ACLController::disabledModuleList($listArray,false);
2312         foreach($acldenied as $denied){
2313                 unset($returnArray[$denied]);
2314         }
2315         asort($returnArray);
2316
2317         return $returnArray;
2318 }
2319
2320 function display_notice($msg = false){
2321         global $error_notice;
2322         //no error notice - lets just display the error to the user
2323         if(!isset($error_notice)){
2324                 echo '<br>'.$msg . '<br>';
2325         }else{
2326                 $error_notice .= $msg . '<br>';
2327         }
2328 }
2329
2330 /* checks if it is a number that atleast has the plus at the beggining
2331  */
2332 function skype_formatted($number){
2333         //kbrill - BUG #15375
2334         if(isset($_REQUEST['action']) && $_REQUEST['action']=="Popup") {
2335                 return false;
2336         } else {
2337                 return substr($number, 0, 1) == '+' || substr($number, 0, 2) == '00' || substr($number, 0, 3) == '011';
2338         }
2339 //      return substr($number, 0, 1) == '+' || substr($number, 0, 2) == '00' || substr($number, 0, 2) == '011';
2340 }
2341
2342 function format_skype($number) {
2343     return preg_replace('/[^\+0-9]/','',$number);
2344 }
2345
2346 function insert_charset_header() {
2347         header('Content-Type: text/html; charset=UTF-8');
2348 }
2349
2350 function getCurrentURL()
2351 {
2352         $href = "http:";
2353         if(!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on')
2354         {
2355                 $href = 'https:';
2356         }
2357
2358         $href.= "//".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME'].'?'.$_SERVER['QUERY_STRING'];
2359         return $href;
2360 }
2361
2362 function javascript_escape($str) {
2363         $new_str = '';
2364
2365         for($i = 0; $i < strlen($str); $i++) {
2366
2367                 if(ord(substr($str, $i, 1))==10){
2368                         $new_str .= '\n';
2369                 }elseif(ord(substr($str, $i, 1))==13){
2370                         $new_str .= '\r';
2371                 }
2372                 else {
2373                         $new_str .= $str{$i};
2374                 }
2375         }
2376
2377         $new_str = str_replace("'", "\\'", $new_str);
2378
2379         return $new_str;
2380 }
2381
2382 function js_escape($str, $keep=true){
2383         $str = html_entity_decode(str_replace("\\", "", $str), ENT_QUOTES);
2384
2385         if($keep){
2386                 $str = javascript_escape($str);
2387         }
2388         else {
2389                 $str = str_replace("'", " ", $str);
2390                 $str = str_replace('"', " ", $str);
2391         }
2392
2393         return $str;
2394
2395         //end function js_escape
2396 }
2397
2398 function br2nl($str) {
2399         $regex = "#<[^>]+br.+?>#i";
2400         preg_match_all($regex, $str, $matches);
2401
2402         foreach($matches[0] as $match) {
2403                 $str = str_replace($match, "<br>", $str);
2404         }
2405
2406         $brs = array('<br>','<br/>', '<br />');
2407         $str = str_replace("\r\n", "\n", $str); // make from windows-returns, *nix-returns
2408         $str = str_replace("\n\r", "\n", $str); // make from windows-returns, *nix-returns
2409         $str = str_replace("\r", "\n", $str); // make from windows-returns, *nix-returns
2410         $str = str_ireplace($brs, "\n", $str); // to retrieve it
2411
2412         return $str;
2413 }
2414
2415 /**
2416  * Private helper function for displaying the contents of a given variable.
2417  * This function is only intended to be used for SugarCRM internal development.
2418  * The ppd stands for Pre Print Die.
2419  */
2420 function _ppd($mixed)
2421 {
2422 }
2423
2424
2425 /**
2426  * Private helper function for displaying the contents of a given variable in
2427  * the Logger. This function is only intended to be used for SugarCRM internal
2428  * development. The pp stands for Pre Print.
2429  * @param $mixed var to print_r()
2430  * @param $die boolean end script flow
2431  * @param $displayStackTrace also show stack trace
2432  */
2433 function _ppl($mixed, $die=false, $displayStackTrace=false, $loglevel="fatal") {
2434 }
2435
2436 /**
2437  * private helper function to quickly show the major, direct, field attributes of a given bean.
2438  * The ppf stands for Pre[formatted] Print Focus [object]
2439  * @param object bean The focus bean
2440  */
2441 function _ppf($bean, $die=false) {
2442 }
2443
2444
2445
2446 /**
2447  * Private helper function for displaying the contents of a given variable.
2448  * This function is only intended to be used for SugarCRM internal development.
2449  * The pp stands for Pre Print.
2450  */
2451 function _pp($mixed)
2452 {
2453 }
2454
2455 /**
2456  * Private helper function for displaying the contents of a given variable.
2457  * This function is only intended to be used for SugarCRM internal development.
2458  * The pp stands for Pre Print.
2459  */
2460 function _pstack_trace($mixed=NULL)
2461 {
2462 }
2463
2464 /**
2465  * Private helper function for displaying the contents of a given variable.
2466  * This function is only intended to be used for SugarCRM internal development.
2467  * The pp stands for Pre Print Trace.
2468  */
2469 function _ppt($mixed, $textOnly=false)
2470 {
2471 }
2472
2473 /**
2474  * Private helper function for displaying the contents of a given variable.
2475  * This function is only intended to be used for SugarCRM internal development.
2476  * The pp stands for Pre Print Trace Die.
2477  */
2478 function _pptd($mixed)
2479 {
2480 }
2481
2482 /**
2483  * Private helper function for decoding javascript UTF8
2484  * This function is only intended to be used for SugarCRM internal development.
2485  */
2486 function decodeJavascriptUTF8($str) {
2487 }
2488
2489 /**
2490  * Will check if a given PHP version string is supported (tested on this ver),
2491  * unsupported (results unknown), or invalid (something will break on this
2492  * ver).  Do not pass in any pararameter to default to a check against the
2493  * current environment's PHP version.
2494  *
2495  * @return 1 implies supported, 0 implies unsupported, -1 implies invalid
2496  */
2497 function check_php_version($sys_php_version = '') {
2498         $sys_php_version = empty($sys_php_version) ? constant('PHP_VERSION') : $sys_php_version;
2499         // versions below $min_considered_php_version considered invalid by default,
2500         // versions equal to or above this ver will be considered depending
2501         // on the rules that follow
2502         $min_considered_php_version = '5.2.1';
2503
2504         // only the supported versions,
2505         // should be mutually exclusive with $invalid_php_versions
2506         $supported_php_versions = array (
2507         '5.2.1', '5.2.2', '5.2.3', '5.2.4', '5.2.5', '5.2.6', '5.2.8', '5.3.0'
2508         );
2509         //Find out what Database the system is using.
2510         global $sugar_config;
2511         $dbType = '';
2512         if (isset($_REQUEST['setup_db_type'])) {
2513                 $dbType = $_REQUEST['setup_db_type'];
2514         } else if (isset ($sugar_config['dbconfig']) && isset ($sugar_config['dbconfig']['db_type'])) {
2515                 $dbType = $sugar_config['dbconfig']['db_type'];
2516         }
2517
2518         // invalid versions above the $min_considered_php_version,
2519         // should be mutually exclusive with $supported_php_versions
2520
2521         // SugarCRM prohibits install on PHP 5.2.7 on all platforms
2522         $invalid_php_versions = array('5.2.7');
2523
2524         // default unsupported
2525         $retval = 0;
2526
2527         // versions below $min_considered_php_version are invalid
2528         if(1 == version_compare($sys_php_version, $min_considered_php_version, '<')) {
2529                 $retval = -1;
2530         }
2531
2532         // supported version check overrides default unsupported
2533         foreach($supported_php_versions as $ver) {
2534                 if(1 == version_compare($sys_php_version, $ver, 'eq') || strpos($sys_php_version,$ver) !== false) {
2535                         $retval = 1;
2536                         break;
2537                 }
2538         }
2539
2540         // invalid version check overrides default unsupported
2541         foreach($invalid_php_versions as $ver) {
2542                 if(1 == version_compare($sys_php_version, $ver, 'eq') && strpos($sys_php_version,$ver) !== false) {
2543                         $retval = -1;
2544                         break;
2545                 }
2546         }
2547
2548     //allow a redhat distro to install, regardless of version.  We are assuming the redhat naming convention is followed
2549     //and the php version contains 'rh' characters
2550     if(strpos($sys_php_version, 'rh') !== false) {
2551         $retval = 1;
2552     }
2553
2554         return $retval;
2555 }
2556
2557 /**
2558  * Will check if a given IIS version string is supported (tested on this ver),
2559  * unsupported (results unknown), or invalid (something will break on this
2560  * ver).
2561  *
2562  * @return 1 implies supported, 0 implies unsupported, -1 implies invalid
2563  */
2564 function check_iis_version($sys_iis_version = '') {
2565
2566         $server_software = $_SERVER["SERVER_SOFTWARE"];
2567         $iis_version = '';
2568         if(strpos($server_software,'Microsoft-IIS') !== false && preg_match_all("/^.*\/(\d+\.?\d*)$/",  $server_software, $out))
2569             $iis_version = $out[1][0];
2570
2571     $sys_iis_version = empty($sys_iis_version) ? $iis_version : $sys_iis_version;
2572
2573     // versions below $min_considered_iis_version considered invalid by default,
2574     // versions equal to or above this ver will be considered depending
2575     // on the rules that follow
2576     $min_considered_iis_version = '6.0';
2577
2578     // only the supported versions,
2579     // should be mutually exclusive with $invalid_iis_versions
2580     $supported_iis_versions = array ('6.0', '7.0',);
2581     $unsupported_iis_versions = array();
2582     $invalid_iis_versions = array('5.0',);
2583
2584     // default unsupported
2585     $retval = 0;
2586
2587     // versions below $min_considered_iis_version are invalid
2588     if(1 == version_compare($sys_iis_version, $min_considered_iis_version, '<')) {
2589         $retval = -1;
2590     }
2591
2592     // supported version check overrides default unsupported
2593     foreach($supported_iis_versions as $ver) {
2594         if(1 == version_compare($sys_iis_version, $ver, 'eq') || strpos($sys_iis_version,$ver) !== false) {
2595             $retval = 1;
2596             break;
2597         }
2598     }
2599
2600     // unsupported version check overrides default unsupported
2601     foreach($unsupported_iis_versions as $ver) {
2602         if(1 == version_compare($sys_iis_version, $ver, 'eq') && strpos($sys_iis_version,$ver) !== false) {
2603             $retval = 0;
2604             break;
2605         }
2606     }
2607
2608     // invalid version check overrides default unsupported
2609     foreach($invalid_iis_versions as $ver) {
2610         if(1 == version_compare($sys_iis_version, $ver, 'eq') && strpos($sys_iis_version,$ver) !== false) {
2611             $retval = -1;
2612             break;
2613         }
2614     }
2615
2616     return $retval;
2617 }
2618
2619 function pre_login_check(){
2620         global $action, $login_error;
2621         if(!empty($action)&& $action == 'Login'){
2622
2623                 if(!empty($login_error)){
2624                         $login_error = htmlentities($login_error);
2625                         $login_error = str_replace(array("&lt;pre&gt;","&lt;/pre&gt;","\r\n", "\n"), "<br>", $login_error);
2626                         $_SESSION['login_error'] = $login_error;
2627                         echo '<script>
2628                                                 function set_focus() {}
2629                                                 if(document.getElementById("post_error")) {
2630                                                         document.getElementById("post_error").innerHTML="'. $login_error. '";
2631                                                         document.getElementById("cant_login").value=1;
2632                                                         document.getElementById("login_button").disabled = true;
2633                                                         document.getElementById("user_name").disabled = true;
2634                                                         //document.getElementById("user_password").disabled = true;
2635                                                 }
2636                                                 </script>';
2637                 }
2638         }
2639 }
2640
2641
2642
2643 function sugar_cleanup($exit = false) {
2644         static $called = false;
2645         if($called)return;
2646         $called = true;
2647         set_include_path(realpath(dirname(__FILE__) . '/..') . PATH_SEPARATOR . get_include_path());
2648         chdir(realpath(dirname(__FILE__) . '/..'));
2649         global $sugar_config;
2650         require_once('include/utils/LogicHook.php');
2651         LogicHook::initialize();
2652         $GLOBALS['logic_hook']->call_custom_logic('', 'server_round_trip');
2653
2654         //added this check to avoid errors during install.
2655         if (empty($sugar_config['dbconfig'])) {
2656                 if ($exit) exit; else return;
2657         }
2658
2659     if (!class_exists('Tracker', true)) {
2660                 require_once 'modules/Trackers/Tracker.php';
2661         }
2662         Tracker::logPage();
2663         // Now write the cached tracker_queries
2664         if(!empty($GLOBALS['savePreferencesToDB']) && $GLOBALS['savePreferencesToDB']) {
2665             if ( isset($GLOBALS['current_user']) && $GLOBALS['current_user'] instanceOf User )
2666                 $GLOBALS['current_user']->savePreferencesToDB();
2667         }
2668
2669         //check to see if this is not an ajax call AND the user preference error flag is set
2670         if(
2671                 (isset($_SESSION['USER_PREFRENCE_ERRORS']) && $_SESSION['USER_PREFRENCE_ERRORS'])
2672                 && ($_REQUEST['action']!='modulelistmenu' && $_REQUEST['action']!='DynamicAction')
2673                 && (empty($_REQUEST['to_pdf']) || !$_REQUEST['to_pdf'] )
2674                 && (empty($_REQUEST['sugar_body_only']) || !$_REQUEST['sugar_body_only'] )
2675
2676         ){
2677                 global $app_strings;
2678                 //this is not an ajax call and the user preference error flag is set, so reset the flag and print js to flash message
2679                 $err_mess = $app_strings['ERROR_USER_PREFS'];
2680                 $_SESSION['USER_PREFRENCE_ERRORS'] = false;
2681                 echo "
2682                 <script>
2683                         ajaxStatus.flashStatus('$err_mess',7000);
2684                 </script>";
2685
2686         }
2687
2688         pre_login_check();
2689         if(class_exists('DBManagerFactory')) {
2690                 $db = DBManagerFactory::getInstance();
2691                 $db->disconnect();
2692                 if($exit) {
2693                         exit;
2694                 }
2695         }
2696 }
2697
2698 register_shutdown_function('sugar_cleanup');
2699
2700
2701 /*
2702  check_logic_hook - checks to see if your custom logic is in the logic file
2703  if not, it will add it. If the file isn't built yet, it will create the file
2704
2705  */
2706 function check_logic_hook_file($module_name, $event, $action_array){
2707         require_once('include/utils/logic_utils.php');
2708         $add_logic = false;
2709
2710         if(file_exists("custom/modules/$module_name/logic_hooks.php")){
2711
2712                 $hook_array = get_hook_array($module_name);
2713
2714                 if(check_existing_element($hook_array, $event, $action_array)==true){
2715                         //the hook at hand is present, so do nothing
2716                 } else {
2717                         $add_logic = true;
2718
2719             $logic_count = 0;
2720             if(!empty($hook_array[$event]))
2721             {
2722                             $logic_count = count($hook_array[$event]);
2723             }
2724             
2725                         if($action_array[0]==""){
2726                                 $action_array[0] = $logic_count  + 1;
2727                         }
2728                         $hook_array[$event][] = $action_array;
2729
2730                 }
2731                 //end if the file exists already
2732         } else {
2733                 $add_logic = true;
2734                 if($action_array[0]==""){
2735                         $action_array[0] = 1;
2736                 }
2737                 $hook_array = array();
2738                 $hook_array[$event][] = $action_array;
2739                 //end if else file exists already
2740         }
2741         if($add_logic == true){
2742
2743                 //reorder array by element[0]
2744                 //$hook_array = reorder_array($hook_array, $event);
2745                 //!!!Finish this above TODO
2746
2747                 $new_contents = replace_or_add_logic_type($hook_array);
2748                 write_logic_file($module_name, $new_contents);
2749
2750                 //end if add_element is true
2751         }
2752
2753         //end function check_logic_hook_file
2754 }
2755
2756 function remove_logic_hook($module_name, $event, $action_array) {
2757     require_once('include/utils/logic_utils.php');
2758         $add_logic = false;
2759
2760         if(file_exists("custom/modules/".$module_name."/logic_hooks.php")){
2761         // The file exists, let's make sure the hook is there
2762                 $hook_array = get_hook_array($module_name);
2763
2764                 if(check_existing_element($hook_array, $event, $action_array)==true){
2765             // The hook is there, time to take it out.
2766
2767             foreach ( $hook_array[$event] as $i => $hook ) {
2768                 // We don't do a full comparison below just in case the filename changes
2769                 if ( $hook[0] == $action_array[0]
2770                      && $hook[1] == $action_array[1]
2771                      && $hook[3] == $action_array[3]
2772                      && $hook[4] == $action_array[4] ) {
2773                     unset($hook_array[$event][$i]);
2774                 }
2775             }
2776
2777             $new_contents = replace_or_add_logic_type($hook_array);
2778             write_logic_file($module_name, $new_contents);
2779
2780         }
2781     }
2782 }
2783
2784 function display_stack_trace($textOnly=false){
2785
2786         $stack  = debug_backtrace();
2787
2788         echo "\n\n display_stack_trace caller, file: " . $stack[0]['file']. ' line#: ' .$stack[0]['line'];
2789
2790         if(!$textOnly)
2791         echo '<br>';
2792
2793         $first = true;
2794         $out = '';
2795
2796         foreach($stack as $item) {
2797                 $file  = '';
2798                 $class = '';
2799                 $line  = '';
2800                 $function  = '';
2801
2802                 if(isset($item['file']))
2803                 $file = $item['file'];
2804                 if(isset($item['class']))
2805                 $class = $item['class'];
2806                 if(isset($item['line']))
2807                 $line = $item['line'];
2808                 if(isset($item['function']))
2809                 $function = $item['function'];
2810
2811                 if(!$first) {
2812                         if(!$textOnly) {
2813                                 $out .= '<font color="black"><b>';
2814                         }
2815
2816                         $out .= $file;
2817
2818                         if(!$textOnly) {
2819                                 $out .= '</b></font><font color="blue">';
2820                         }
2821
2822                         $out .= "[L:{$line}]";
2823
2824                         if(!$textOnly) {
2825                                 $out .= '</font><font color="red">';
2826                         }
2827
2828                         $out .= "({$class}:{$function})";
2829
2830                         if(!$textOnly) {
2831                                 $out .= '</font><br>';
2832                         } else {
2833                                 $out .= "\n";
2834                         }
2835                 } else {
2836                         $first = false;
2837                 }
2838         }
2839
2840         echo $out;
2841 }
2842
2843 function StackTraceErrorHandler($errno, $errstr, $errfile,$errline, $errcontext) {
2844         $error_msg = " $errstr occured in <b>$errfile</b> on line $errline [" . date("Y-m-d H:i:s") . ']';
2845         $halt_script = true;
2846         switch($errno){
2847                 case 2048: return; //depricated we have lots of these ignore them
2848                 case E_USER_NOTICE:
2849                 case E_NOTICE:
2850                     if ( error_reporting() & E_NOTICE ) {
2851                         $halt_script = false;
2852                         $type = 'Notice';
2853                     }
2854                     else
2855                         return;
2856                         break;
2857                 case E_USER_WARNING:
2858                 case E_COMPILE_WARNING:
2859                 case E_CORE_WARNING:
2860                 case E_WARNING:
2861
2862                         $halt_script = false;
2863                         $type = "Warning";
2864                         break;
2865
2866                 case E_USER_ERROR:
2867                 case E_COMPILE_ERROR:
2868                 case E_CORE_ERROR:
2869                 case E_ERROR:
2870
2871                         $type = "Fatal Error";
2872                         break;
2873
2874                 case E_PARSE:
2875
2876                         $type = "Parse Error";
2877                         break;
2878
2879                 default:
2880                         //don't know what it is might not be so bad
2881                         $halt_script = false;
2882                         $type = "Unknown Error ($errno)";
2883                         break;
2884         }
2885         $error_msg = '<b>'.$type.'</b>:' . $error_msg;
2886         echo $error_msg;
2887         display_stack_trace();
2888         if($halt_script){
2889                 exit -1;
2890         }
2891
2892
2893
2894 }
2895
2896
2897 if(isset($sugar_config['stack_trace_errors']) && $sugar_config['stack_trace_errors']){
2898
2899         set_error_handler('StackTraceErrorHandler');
2900 }
2901 function get_sub_cookies($name){
2902         $cookies = array();
2903         if(isset($_COOKIE[$name])){
2904                 $subs = explode('#', $_COOKIE[$name]);
2905                 foreach($subs as $cookie){
2906                         if(!empty($cookie)){
2907                                 $cookie = explode('=', $cookie);
2908
2909                                 $cookies[$cookie[0]] = $cookie[1];
2910                         }
2911                 }
2912         }
2913         return $cookies;
2914
2915 }
2916
2917
2918 function mark_delete_components($sub_object_array, $run_second_level=false, $sub_sub_array=""){
2919
2920         if(!empty($sub_object_array)){
2921
2922                 foreach($sub_object_array as $sub_object){
2923
2924                         //run_second level is set to true if you need to remove sub-sub components
2925                         if($run_second_level==true){
2926
2927                                 mark_delete_components($sub_object->get_linked_beans($sub_sub_array['rel_field'],$sub_sub_array['rel_module']));
2928
2929                                 //end if run_second_level is true
2930                         }
2931                         $sub_object->mark_deleted($sub_object->id);
2932                         //end foreach sub component
2933                 }
2934                 //end if this is not empty
2935         }
2936
2937         //end function mark_delete_components
2938 }
2939
2940 /**
2941  * For translating the php.ini memory values into bytes.  e.g. input value of '8M' will return 8388608.
2942  */
2943 function return_bytes($val)
2944 {
2945         $val = trim($val);
2946         $last = strtolower($val{strlen($val)-1});
2947
2948         switch($last)
2949         {
2950                 // The 'G' modifier is available since PHP 5.1.0
2951                 case 'g':
2952                         $val *= 1024;
2953                 case 'm':
2954                         $val *= 1024;
2955                 case 'k':
2956                         $val *= 1024;
2957         }
2958
2959         return $val;
2960 }
2961
2962 /**
2963  * Adds the href HTML tags around any URL in the $string
2964  */
2965 function url2html($string) {
2966         //
2967         $return_string = preg_replace('/(\w+:\/\/)(\S+)/', ' <a href="\\1\\2" target="_new"  style="font-weight: normal;">\\1\\2</a>', $string);
2968         return $return_string;
2969 }
2970 // End customization by Julian
2971
2972 /**
2973  * tries to determine whether the Host machine is a Windows machine
2974  */
2975 function is_windows() {
2976     static $is_windows = null;
2977     if (!isset($is_windows)) {
2978         $is_windows = strtoupper(substr(PHP_OS, 0, 3)) == 'WIN';
2979     }
2980     return $is_windows;
2981 }
2982
2983 /**
2984  * equivalent for windows filesystem for PHP's is_writable()
2985  * @param string file Full path to the file/dir
2986  * @return bool true if writable
2987  */
2988 function is_writable_windows($file) {
2989         if($file{strlen($file)-1}=='/') {
2990                 return is_writable_windows($file.uniqid(mt_rand()).'.tmp');
2991         }
2992
2993         // the assumption here is that Windows has an inherited permissions scheme
2994         // any file that is a descendant of an unwritable directory will inherit
2995         // that property and will trigger a failure below.
2996         if(is_dir($file)) {
2997                 return true;
2998         }
2999
3000         $file = str_replace("/", '\\', $file);
3001
3002         if(file_exists($file)) {
3003                 if (!($f = @sugar_fopen($file, 'r+')))
3004                 return false;
3005                 fclose($f);
3006                 return true;
3007         }
3008
3009         if(!($f = @sugar_fopen($file, 'w')))
3010         return false;
3011         fclose($f);
3012         unlink($file);
3013         return true;
3014 }
3015
3016
3017 /**
3018  * best guesses Timezone based on webserver's TZ settings
3019  */
3020 function lookupTimezone($userOffset = 0)
3021 {
3022     return TimeDate::guessTimezone($userOffset);
3023 }
3024
3025 function convert_module_to_singular($module_array){
3026         global $beanList;
3027
3028         foreach($module_array as $key => $value){
3029                 if(!empty($beanList[$value])) $module_array[$key] = $beanList[$value];
3030
3031                 if($value=="Cases") {
3032                         $module_array[$key] = "Case";
3033                 }
3034                 if($key=="projecttask"){
3035                         $module_array['ProjectTask'] = "Project Task";
3036                         unset($module_array[$key]);
3037                 }
3038         }
3039
3040         return $module_array;
3041
3042         //end function convert_module_to_singular
3043 }
3044
3045 /*
3046  * Given the bean_name which may be plural or singular return the singular
3047  * bean_name. This is important when you need to include files.
3048  */
3049 function get_singular_bean_name($bean_name){
3050         global $beanFiles, $beanList;
3051         if(array_key_exists($bean_name, $beanList)){
3052                 return $beanList[$bean_name];
3053         }
3054         else{
3055                 return $bean_name;
3056         }
3057 }
3058
3059 function get_label($label_tag, $temp_module_strings){
3060         global $app_strings;
3061         if(!empty($temp_module_strings[$label_tag])){
3062
3063                 $label_name = $temp_module_strings[$label_tag];
3064         } else {
3065                 if(!empty($app_strings[$label_tag])){
3066                         $label_name = $app_strings[$label_tag];
3067                 } else {
3068                         $label_name = $label_tag;
3069                 }
3070         }
3071         return $label_name;
3072
3073         //end function get_label
3074 }
3075
3076
3077 function search_filter_rel_info(& $focus, $tar_rel_module, $relationship_name){
3078
3079         $rel_list = array();
3080
3081         foreach($focus->relationship_fields as $rel_key => $rel_value){
3082                 if($rel_value == $relationship_name){
3083                         $temp_bean = get_module_info($tar_rel_module);
3084         //              echo $focus->$rel_key;
3085                         $temp_bean->retrieve($focus->$rel_key);
3086                         if($temp_bean->id!=""){
3087
3088                                 $rel_list[] = $temp_bean;
3089                                 return $rel_list;
3090                         }
3091                 }
3092         }
3093
3094         foreach($focus->field_defs as $field_name => $field_def){
3095                 //Check if the relationship_name matches a "relate" field
3096                 if(!empty($field_def['type']) && $field_def['type'] == 'relate'
3097                 && !empty($field_def['id_name']) && !empty($focus->field_defs[$field_def['id_name']])
3098                 && !empty($focus->field_defs[$field_def['id_name']]['relationship'])
3099                 && $focus->field_defs[$field_def['id_name']]['relationship'] == $relationship_name)
3100                 {
3101                         $temp_bean = get_module_info($tar_rel_module);
3102                 //      echo $focus->$field_def['id_name'];
3103                         $temp_bean->retrieve($focus->$field_def['id_name']);
3104                         if($temp_bean->id!=""){
3105
3106                                 $rel_list[] = $temp_bean;
3107                                 return $rel_list;
3108                         }
3109                 //Check if the relationship_name matches a "link" in a relate field
3110                 } else if(!empty($rel_value['link']) && !empty($rel_value['id_name']) && $rel_value['link'] == $relationship_name){
3111                         $temp_bean = get_module_info($tar_rel_module);
3112                 //      echo $focus->$rel_value['id_name'];
3113                         $temp_bean->retrieve($focus->$rel_value['id_name']);
3114                         if($temp_bean->id!=""){
3115
3116                                 $rel_list[] = $temp_bean;
3117                                 return $rel_list;
3118                         }
3119                 }
3120         }
3121
3122         // special case for unlisted parent-type relationships
3123         if($focus->parent_type == $tar_rel_module && !empty($focus->parent_id)) {
3124                 $temp_bean = get_module_info($tar_rel_module);
3125                 $temp_bean->retrieve($focus->parent_id);
3126                 if($temp_bean->id!=""){
3127                         $rel_list[] = $temp_bean;
3128                         return $rel_list;
3129                 }
3130         }
3131
3132         return $rel_list;
3133
3134         //end function search_filter_rel_info
3135 }
3136
3137 function get_module_info($module_name){
3138         global $beanList;
3139         global $dictionary;
3140
3141         //Get dictionary and focus data for module
3142         $vardef_name = $beanList[$module_name];
3143
3144         if($vardef_name=="aCase"){
3145                 $class_name = "Case";
3146         } else {
3147                 $class_name = $vardef_name;
3148         }
3149
3150         if(!file_exists('modules/'. $module_name . '/'.$class_name.'.php')){
3151                 return;
3152         }
3153
3154         include_once('modules/'. $module_name . '/'.$class_name.'.php');
3155
3156         $module_bean = new $vardef_name();
3157         return $module_bean;
3158         //end function get_module_table
3159 }
3160
3161 /**
3162  * In order to have one place to obtain the proper object name. aCase for example causes issues throughout the application.
3163  *
3164  * @param string $moduleName
3165  */
3166 function get_valid_bean_name($module_name){
3167         global $beanList;
3168
3169         $vardef_name = $beanList[$module_name];
3170         if($vardef_name=="aCase"){
3171                 $bean_name = "Case";
3172         } else {
3173                 $bean_name = $vardef_name;
3174         }
3175         return $bean_name;
3176 }
3177
3178
3179
3180 function  checkAuthUserStatus(){
3181
3182         //authUserStatus();
3183 }
3184
3185
3186 /**
3187  * This function returns an array of phpinfo() results that can be parsed and
3188  * used to figure out what version we run, what modules are compiled in, etc.
3189  * @param       $level                  int             info level constant (1,2,4,8...64);
3190  * @return      $returnInfo             array   array of info about the PHP environment
3191  * @author      original by "code at adspeed dot com" Fron php.net
3192  * @author      customized for Sugar by Chris N.
3193  */
3194 function getPhpInfo($level=-1) {
3195         /**     Name (constant)         Value   Description
3196                 INFO_GENERAL            1               The configuration line, php.ini location, build date, Web Server, System and more.
3197                 INFO_CREDITS            2               PHP Credits. See also phpcredits().
3198                 INFO_CONFIGURATION      4               Current Local and Master values for PHP directives. See also ini_get().
3199                 INFO_MODULES            8               Loaded modules and their respective settings. See also get_loaded_extensions().
3200                 INFO_ENVIRONMENT        16              Environment Variable information that's also available in $_ENV.
3201                 INFO_VARIABLES          32              Shows all predefined variables from EGPCS (Environment, GET, POST, Cookie, Server).
3202                 INFO_LICENSE            64              PHP License information. See also the license FAQ.
3203                 INFO_ALL                        -1              Shows all of the above. This is the default value.
3204          */
3205         ob_start();
3206         phpinfo($level);
3207         $phpinfo = ob_get_contents();
3208         ob_end_clean();
3209
3210         $phpinfo        = strip_tags($phpinfo,'<h1><h2><th><td>');
3211         $phpinfo        = preg_replace('/<th[^>]*>([^<]+)<\/th>/',"<info>\\1</info>",$phpinfo);
3212         $phpinfo        = preg_replace('/<td[^>]*>([^<]+)<\/td>/',"<info>\\1</info>",$phpinfo);
3213         $parsedInfo     = preg_split('/(<h.?>[^<]+<\/h.>)/', $phpinfo, -1, PREG_SPLIT_DELIM_CAPTURE);
3214         $match          = '';
3215         $version        = '';
3216         $returnInfo     = array();
3217
3218         if(preg_match('/<h1 class\=\"p\">PHP Version ([^<]+)<\/h1>/', $phpinfo, $version)) {
3219                 $returnInfo['PHP Version'] = $version[1];
3220         }
3221
3222
3223         for ($i=1; $i<count($parsedInfo); $i++) {
3224                 if (preg_match('/<h.>([^<]+)<\/h.>/', $parsedInfo[$i], $match)) {
3225                         $vName = trim($match[1]);
3226                         $parsedInfo2 = explode("\n",$parsedInfo[$i+1]);
3227
3228                         foreach ($parsedInfo2 AS $vOne) {
3229                                 $vPat   = '<info>([^<]+)<\/info>';
3230                                 $vPat3  = "/$vPat\s*$vPat\s*$vPat/";
3231                                 $vPat2  = "/$vPat\s*$vPat/";
3232
3233                                 if (preg_match($vPat3,$vOne,$match)) { // 3cols
3234                                         $returnInfo[$vName][trim($match[1])] = array(trim($match[2]),trim($match[3]));
3235                                 } elseif (preg_match($vPat2,$vOne,$match)) { // 2cols
3236                                         $returnInfo[$vName][trim($match[1])] = trim($match[2]);
3237                                 }
3238                         }
3239                 } elseif(true) {
3240
3241                 }
3242         }
3243
3244         return $returnInfo;
3245 }
3246
3247 /**
3248  * This function will take a string that has tokens like {0}, {1} and will replace
3249  * those tokens with the args provided
3250  * @param       $format string to format
3251  * @param       $args args to replace
3252  * @return      $result a formatted string
3253  */
3254 function string_format($format, $args){
3255         $result = $format;
3256         for($i = 0; $i < count($args); $i++){
3257                 $result = str_replace('{'.$i.'}', $args[$i], $result);
3258         }
3259         return $result;
3260 }
3261
3262 /**
3263  * Generate a string for displaying a unique identifier that is composed
3264  * of a system_id and number.  This is use to allow us to generate quote
3265  * numbers using a DB auto-increment key from offline clients and still
3266  * have the number be unique (since it is modified by the system_id.
3267  *
3268  * @param       $num of bean
3269  * @param       $system_id from system
3270  * @return      $result a formatted string
3271  */
3272 function format_number_display($num, $system_id){
3273         global $sugar_config;
3274         if(isset($num) && !empty($num)){
3275                 $num=unformat_number($num);
3276                 if(isset($system_id) && $system_id == 1){
3277                         return sprintf("%d", $num);
3278                 }
3279                 else{
3280                         return sprintf("%d-%d", $num, $system_id);
3281                 }
3282         }
3283 }
3284 function checkLoginUserStatus(){
3285 }
3286
3287 /**
3288  * This function will take a number and system_id and format
3289  * @param       $url URL containing host to append port
3290  * @param       $port the port number - if '' is passed, no change to url
3291  * @return      $resulturl the new URL with the port appended to the host
3292  */
3293 function appendPortToHost($url, $port)
3294 {
3295         $resulturl = $url;
3296
3297         // if no port, don't change the url
3298         if($port != '')
3299         {
3300                 $split = explode("/", $url);
3301                 //check if it starts with http, in case they didn't include that in url
3302                 if(str_begin($url, 'http'))
3303                 {
3304                         //third index ($split[2]) will be the host
3305                         $split[2] .= ":".$port;
3306                 }
3307                 else // otherwise assumed to start with host name
3308                 {
3309                         //first index ($split[0]) will be the host
3310                         $split[0] .= ":".$port;
3311                 }
3312
3313                 $resulturl = implode("/", $split);
3314         }
3315
3316         return $resulturl;
3317 }
3318
3319 /**
3320  * Singleton to return JSON object
3321  * @return      JSON object
3322  */
3323 function getJSONobj() {
3324         static $json = null;
3325         if(!isset($json)) {
3326                 require_once('include/JSON.php');
3327                 $json = new JSON(JSON_LOOSE_TYPE);
3328         }
3329         return $json;
3330 }
3331
3332 require_once('include/utils/db_utils.php');
3333 //check to see if custom utils exists
3334 if(file_exists('custom/include/custom_utils.php')){
3335         include_once('custom/include/custom_utils.php');
3336 }
3337
3338
3339 /**
3340  * Set default php.ini settings for entry points
3341  */
3342 function setPhpIniSettings() {
3343         // zlib module
3344         // Bug 37579 - Comment out force enabling zlib.output_compression, since it can cause problems on certain hosts
3345         /*
3346     if(function_exists('gzclose') && headers_sent() == false) {
3347                 ini_set('zlib.output_compression', 1);
3348         }
3349         */
3350         // mbstring module
3351         //nsingh: breaks zip/unzip functionality. Commenting out 4/23/08
3352
3353         /*if(function_exists('mb_strlen')) {
3354                 ini_set('mbstring.func_overload', 7);
3355                 ini_set('mbstring.internal_encoding', 'UTF-8');
3356         }*/
3357
3358
3359         // http://us3.php.net/manual/en/ref.pcre.php#ini.pcre.backtrack-limit
3360         // starting with 5.2.0, backtrack_limit breaks JSON decoding
3361         $backtrack_limit = ini_get('pcre.backtrack_limit');
3362         if(!empty($backtrack_limit)) {
3363                 ini_set('pcre.backtrack_limit', '-1');
3364         }
3365
3366         // mssql only
3367         if(ini_get("mssql.charset")) {
3368                 ini_set('mssql.charset', "UTF-8");
3369         }
3370 }
3371
3372 /**
3373  * like array_merge() but will handle array elements that are themselves arrays;
3374  * PHP's version just overwrites the element with the new one.
3375  *
3376  * @internal Note that this function deviates from the internal array_merge()
3377  *           functions in that it does does not treat numeric keys differently
3378  *           than string keys.  Additionally, it deviates from
3379  *           array_merge_recursive() by not creating an array when like values
3380  *           found.
3381  *
3382  * @param array gimp the array whose values will be overloaded
3383  * @param array dom the array whose values will pwn the gimp's
3384  * @return array beaten gimp
3385  */
3386 function sugarArrayMerge($gimp, $dom) {
3387         if(is_array($gimp) && is_array($dom)) {
3388                 foreach($dom as $domKey => $domVal) {
3389                         if(array_key_exists($domKey, $gimp)) {
3390                                 if(is_array($domVal)) {
3391                                         $tempArr = array();
3392                     foreach ( $domVal as $domArrKey => $domArrVal )
3393                         $tempArr[$domArrKey] = $domArrVal;
3394                     foreach ( $gimp[$domKey] as $gimpArrKey => $gimpArrVal )
3395                         if ( !array_key_exists($gimpArrKey, $tempArr) )
3396                             $tempArr[$gimpArrKey] = $gimpArrVal;
3397                     $gimp[$domKey] = $tempArr;
3398                                 } else {
3399                                         $gimp[$domKey] = $domVal;
3400                                 }
3401                         } else {
3402                                 $gimp[$domKey] = $domVal;
3403                         }
3404                 }
3405         }
3406     // if the passed value for gimp isn't an array, then return the $dom
3407     elseif(is_array($dom))
3408         return $dom;
3409
3410         return $gimp;
3411 }
3412
3413 /**
3414  * Similiar to sugarArrayMerge except arrays of N depth are merged.
3415  *
3416  * @param array gimp the array whose values will be overloaded
3417  * @param array dom the array whose values will pwn the gimp's
3418  * @return array beaten gimp
3419  */
3420 function sugarArrayMergeRecursive($gimp, $dom) {
3421         if(is_array($gimp) && is_array($dom)) {
3422                 foreach($dom as $domKey => $domVal) {
3423                         if(array_key_exists($domKey, $gimp)) {
3424                                 if(is_array($domVal) && is_array($gimp[$domKey])) {
3425                                         $gimp[$domKey] = sugarArrayMergeRecursive($gimp[$domKey], $domVal);
3426                                 } else {
3427                                         $gimp[$domKey] = $domVal;
3428                                 }
3429                         } else {
3430                                 $gimp[$domKey] = $domVal;
3431                         }
3432                 }
3433         }
3434     // if the passed value for gimp isn't an array, then return the $dom
3435     elseif(is_array($dom))
3436         return $dom;
3437
3438         return $gimp;
3439 }
3440
3441 /**
3442  * finds the correctly working versions of PHP-JSON
3443  * @return bool True if NOT found or WRONG version
3444  */
3445 function returnPhpJsonStatus() {
3446         if(function_exists('json_encode')) {
3447                 $phpInfo = getPhpInfo(8);
3448         return version_compare($phpInfo['json']['json version'], '1.1.1', '<');
3449         }
3450         return true; // not found
3451 }
3452
3453
3454 /**
3455  * getTrackerSubstring
3456  *
3457  * Returns a [number]-char or less string for the Tracker to display in the header
3458  * based on the tracker_max_display_length setting in config.php.  If not set,
3459  * or invalid length, then defaults to 15 for COM editions, 30 for others.
3460  *
3461  * @param string name field for a given Object
3462  * @return string [number]-char formatted string if length of string exceeds the max allowed
3463  */
3464 function getTrackerSubstring($name) {
3465         static $max_tracker_item_length;
3466
3467         //Trim the name
3468         $name = html_entity_decode($name, ENT_QUOTES, 'UTF-8');
3469         $strlen = function_exists('mb_strlen') ? mb_strlen($name) : strlen($name);
3470
3471         global $sugar_config;
3472
3473         if(!isset($max_tracker_item_length)) {
3474                 if(isset($sugar_config['tracker_max_display_length'])) {
3475               $max_tracker_item_length = (is_int($sugar_config['tracker_max_display_length']) && $sugar_config['tracker_max_display_length'] > 0 && $sugar_config['tracker_max_display_length'] < 50) ? $sugar_config['tracker_max_display_length'] : 15;
3476                 } else {
3477               $max_tracker_item_length = 15;
3478                 }
3479         }
3480
3481         if($strlen > $max_tracker_item_length) {
3482                 $chopped = function_exists('mb_substr') ? mb_substr($name, 0, $max_tracker_item_length, "UTF-8") : substr($name, 0, $max_tracker_item_length, "UTF-8");
3483         } else {
3484                 $chopped = $name;
3485         }
3486
3487         return $chopped;
3488 }
3489 function generate_search_where ($field_list=array(),$values=array(),&$bean,$add_custom_fields=false,$module='') {
3490         $where_clauses= array();
3491         $like_char='%';
3492         $table_name=$bean->object_name;
3493         foreach ($field_list[$module] as $field=>$parms) {
3494                 if(isset($values[$field]) && $values[$field] != "") {
3495                         $operator='like';
3496                         if (!empty($parms['operator'])) {
3497                                 $operator=$parms['operator'];
3498                         }
3499                         if (is_array($values[$field])) {
3500                                 $operator='in';
3501                                 $field_value='';
3502                                 foreach ($values[$field] as $key => $val) {
3503                                         if ($val != ' ' and $val != '') {
3504                                                 if (!empty($field_value)) {
3505                                                         $field_value.=',';
3506                                                 }
3507                                                 $field_value .= "'".$GLOBALS['db']->quote($val)."'";
3508                                         }
3509                                 }
3510                         } else {
3511                                 $field_value=$GLOBALS['db']->quote($values[$field]);
3512                         }
3513                         //set db_fields array.
3514                         if (!isset($parms['db_field']) )  {
3515                                 $parms['db_field'] = array($field);
3516                         }
3517                         if (isset($parms['my_items']) and $parms['my_items'] == true) {
3518                                 global $current_user;
3519                                 $field_value = $GLOBALS['db']->quote($current_user->id);
3520                                 $operator='=';
3521                         }
3522
3523                         $where='';
3524                         $itr=0;
3525                         if ($field_value != '') {
3526
3527                                 foreach ($parms['db_field'] as $db_field) {
3528                                         if (strstr($db_field,'.')===false) {
3529                                                 $db_field=$bean->table_name.".".$db_field;
3530                                         }
3531                                         if ($GLOBALS['db']->dbType=='oci8' &&  isset($parms['query_type']) && $parms['query_type']=='case_insensitive') {
3532                                                 $db_field='upper('.$db_field.")";
3533                                                 $field_value=strtoupper($field_value);
3534                                         }
3535
3536                                         $itr++;
3537                                         if (!empty($where)) {
3538                                                 $where .= " OR ";
3539                                         }
3540                                         switch (strtolower($operator)) {
3541                                                 case 'like' :
3542                                                         $where .=  $db_field . " like '".$field_value.$like_char."'";
3543                                                         break;
3544                                                 case 'in':
3545                                                         $where .=  $db_field . " in (".$field_value.')';
3546                                                         break;
3547                                                 case '=':
3548                                                         $where .=  $db_field . " = '".$field_value ."'";
3549                                                         break;
3550                                         }
3551                                 }
3552                         }
3553                         if (!empty($where)) {
3554                                 if ($itr>1) {
3555                                         array_push($where_clauses, '( '.$where.' )');
3556                                 } else {
3557                                         array_push($where_clauses, $where);
3558                                 }
3559                         }
3560                 }
3561         }
3562         if ($add_custom_fields) {
3563                 require_once('modules/DynamicFields/DynamicField.php');
3564                 $bean->setupCustomFields($module);
3565                 $bean->custom_fields->setWhereClauses($where_clauses);
3566         }
3567         return $where_clauses;
3568 }
3569
3570 function add_quotes($str) {
3571         return "'{$str}'";
3572 }
3573
3574 /**
3575  * This function will rebuild the config file
3576  * @param       $sugar_config
3577  * @param       $sugar_version
3578  * @return      bool true if successful
3579  */
3580 function rebuildConfigFile($sugar_config, $sugar_version) {
3581         // add defaults to missing values of in-memory sugar_config
3582         $sugar_config = sugarArrayMerge(get_sugar_config_defaults(), $sugar_config );
3583         // need to override version with default no matter what
3584         $sugar_config['sugar_version'] = $sugar_version;
3585
3586         ksort( $sugar_config );
3587
3588         if( write_array_to_file( "sugar_config", $sugar_config, "config.php" ) ){
3589                 return true;
3590         }
3591         else {
3592                 return false;
3593         }
3594 }
3595
3596 /**
3597  * getJavascriptSiteURL
3598  * This function returns a URL for the client javascript calls to access
3599  * the site.  It uses $_SERVER['HTTP_REFERER'] in the event that Proxy servers
3600  * are used to access the site.  Thus, the hostname in the URL returned may
3601  * not always match that of $sugar_config['site_url'].  Basically, the
3602  * assumption is that however the user accessed the website is how they
3603  * will continue to with subsequent javascript requests.  If the variable
3604  * $_SERVER['HTTP_REFERER'] is not found then we default to old algorithm.
3605  * @return $site_url The url used to refer to the website
3606  */
3607 function getJavascriptSiteURL() {
3608         global $sugar_config;
3609         if(!empty($_SERVER['HTTP_REFERER'])) {
3610                 $url = parse_url($_SERVER['HTTP_REFERER']);
3611                 $replacement_url = $url['scheme']."://".$url['host'];
3612                 if(!empty($url['port']))
3613                 $replacement_url .= ':'.$url['port'];
3614                 $site_url = preg_replace('/^http[s]?\:\/\/[^\/]+/',$replacement_url,$sugar_config['site_url']);
3615         } else {
3616                 $site_url = preg_replace('/^http(s)?\:\/\/[^\/]+/',"http$1://".$_SERVER['HTTP_HOST'],$sugar_config['site_url']);
3617                 if(!empty($_SERVER['SERVER_PORT']) &&$_SERVER['SERVER_PORT'] == '443') {
3618                         $site_url = preg_replace('/^http\:/','https:',$site_url);
3619                 }
3620         }
3621         $GLOBALS['log']->debug("getJavascriptSiteURL(), site_url=".  $site_url);
3622         return $site_url;
3623 }
3624
3625 // works nicely with array_map() -- can be used to wrap single quotes around each element in an array
3626 function add_squotes($str) {
3627         return "'" . $str . "'";
3628 }
3629
3630
3631 // recursive function to count the number of levels within an array
3632 function array_depth($array, $depth_count=-1, $depth_array=array()){
3633         $depth_count++;
3634         if (is_array($array)){
3635                 foreach ($array as $key => $value){
3636                         $depth_array[] = array_depth($value, $depth_count);
3637                 }
3638         }
3639         else{
3640                 return $depth_count;
3641         }
3642         foreach ($depth_array as $value){
3643                 $depth_count = $value > $depth_count ? $value : $depth_count;
3644         }
3645         return $depth_count;
3646 }
3647
3648 /**
3649  * Creates a new Group User
3650  * @param string $name Name of Group User
3651  * @return string GUID of new Group User
3652  */
3653 function createGroupUser($name) {
3654
3655
3656         $group = new User();
3657         $group->user_name       = $name;
3658         $group->last_name       = $name;
3659         $group->is_group        = 1;
3660         $group->deleted         = 0;
3661         $group->status          = 'Active'; // cn: bug 6711
3662         $group->setPreference('timezone', TimeDate::userTimezone());
3663         $group->save();
3664
3665         return $group->id;
3666 }
3667
3668 /*
3669  * Helper function to locate an icon file given only a name
3670  * Searches through the various paths for the file
3671  * @param string iconFileName   The filename of the icon
3672  * @return string Relative pathname of the located icon, or '' if not found
3673  */
3674
3675 function _getIcon($iconFileName)
3676 {
3677     $iconPath = SugarThemeRegistry::current()->getImageURL("icon_{$iconFileName}.gif");
3678     //First try un-ucfirst-ing the icon name
3679     if ( empty($iconPath) )
3680         $iconPath = SugarThemeRegistry::current()->getImageURL(
3681             "icon_" . strtolower(substr($iconFileName,0,1)).substr($iconFileName,1) . ".gif");
3682     //Next try removing the icon prefix
3683     if ( empty($iconPath) )
3684         $iconPath = SugarThemeRegistry::current()->getImageURL("{$iconFileName}.gif");
3685
3686         return $iconPath;
3687 }
3688 /**
3689  * Function to grab the correct icon image for Studio
3690  * @param string $iconFileName Name of the icon file
3691  * @param string $altfilename Name of a fallback icon file (displayed if the imagefilename doesn't exist)
3692  * @param string $width Width of image
3693  * @param string $height Height of image
3694  * @param string $align Alignment of image
3695  * @return string $string <img> tag with corresponding image
3696  */
3697
3698 function getStudioIcon($iconFileName='', $altFileName='', $width='48', $height='48', $align='baseline' )
3699 {
3700         global $app_strings, $theme;
3701
3702     $iconPath = _getIcon($iconFileName);
3703         if(empty($iconPath)){
3704             $iconPath = _getIcon($altFileName);
3705             if (empty($iconPath))
3706             {
3707             return $app_strings['LBL_NO_IMAGE'];
3708             }
3709         }
3710         return '<img border="0" src="'.$iconPath.'" width="'.$width.'" height="'.$height.'" align="'.$align.'">';
3711 }
3712
3713 /**
3714  * Function to grab the correct icon image for Dashlets Dialog
3715  * @param string $filename Location of the icon file
3716  * @param string $module Name of the module to fall back onto if file does not exist
3717  * @param string $width Width of image
3718  * @param string $height Height of image
3719  * @param string $align Alignment of image
3720  * @return string $string <img> tag with corresponding image
3721  */
3722
3723 function get_dashlets_dialog_icon($module='', $width='32', $height='32', $align='absmiddle'){
3724         global $app_strings, $theme;
3725         $icon_path = _getIcon($module . "_32");
3726         if (empty($icon_path))
3727         {
3728                 $icon_path = _getIcon($module);
3729         }
3730         if(empty($icon_path)){
3731                 $icon = $app_strings['LBL_NO_IMAGE'];
3732         }
3733         else{
3734                 $icon = '<img border="0" src="'.$icon_path.'" width="'.$width.'" height="'.$height.'" align="'.$align.'">';
3735         }
3736         return $icon;
3737 }
3738
3739 // works nicely to change UTF8 strings that are html entities - good for PDF conversions
3740 function html_entity_decode_utf8($string)
3741 {
3742     static $trans_tbl;
3743     // replace numeric entities
3744     //php will have issues with numbers with leading zeros, so do not include them in what we send to code2utf.
3745     $string = preg_replace('~&#x0*([0-9a-f]+);~ei', 'code2utf(hexdec("\\1"))', $string);
3746     $string = preg_replace('~&#0*([0-9]+);~e', 'code2utf(\\1)', $string);
3747     // replace literal entities
3748     if (!isset($trans_tbl))
3749     {
3750         $trans_tbl = array();
3751         foreach (get_html_translation_table(HTML_ENTITIES) as $val=>$key)
3752             $trans_tbl[$key] = utf8_encode($val);
3753     }
3754     return strtr($string, $trans_tbl);
3755 }
3756
3757 // Returns the utf string corresponding to the unicode value
3758 function code2utf($num)
3759 {
3760     if ($num < 128) return chr($num);
3761     if ($num < 2048) return chr(($num >> 6) + 192) . chr(($num & 63) + 128);
3762     if ($num < 65536) return chr(($num >> 12) + 224) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128);
3763     if ($num < 2097152) return chr(($num >> 18) + 240) . chr((($num >> 12) & 63) + 128) . chr((($num >> 6) & 63) + 128) . chr(($num & 63) + 128);
3764     return '';
3765 }
3766
3767 function str_split_php4($string, $length = 1) {
3768         $string_length = strlen($string);
3769         $return = array();
3770         $cursor = 0;
3771         if ($length > $string_length) {
3772                 // use the string_length as the string is shorter than the length
3773                 $length = $string_length;
3774         }
3775         for ($cursor = 0; $cursor < $string_length; $cursor = $cursor + $length) {
3776                 $return[] = substr($string, $cursor, $length);
3777         }
3778         return $return;
3779 }
3780
3781 if (version_compare(phpversion(), '5.0.0', '<')) {
3782         function str_split($string, $length = 1) {
3783                 return str_split_php4($string, $length);
3784         }
3785 }
3786
3787 /*
3788  * Invoked when connected to mssql. checks if we have freetds version of mssql library.
3789  * the response is put into a global variable.
3790  */
3791 function is_freetds() {
3792
3793         $ret=false;
3794         if (isset($GLOBALS['mssql_library_version'])) {
3795                 if ($GLOBALS['mssql_library_version']=='freetds') {
3796                         $ret=true;
3797                 } else {
3798                         $ret=false;
3799                 }
3800         } else {
3801                 ob_start();
3802                 phpinfo();
3803                 $info=ob_get_contents();
3804                 ob_end_clean();
3805
3806                 if (strpos($info,'FreeTDS') !== false) {
3807                         $GLOBALS['mssql_library_version']='freetds';
3808                         $ret=true;
3809                 } else {
3810                         $GLOBALS['mssql_library_version']='regular';
3811                         $ret=false;
3812                 }
3813         }
3814         return $ret;
3815 }
3816
3817 /*
3818  *  stripos - Find position of first occurrence of a case-insensitive string
3819  *
3820  *  The function is being defined for systems with PHP version < 5.
3821  *
3822  */
3823 if (!function_exists("stripos")){
3824         function stripos($haystack,$needle,$offset=0){
3825       return strpos(strtolower($haystack),strtolower($needle),$offset);
3826         }
3827 }
3828
3829 /**
3830  * Chart dashlet helper function that returns the correct CSS file, dependent on the current theme.
3831  *
3832  * @todo this won't work completely right until we impliment css compression and combination
3833  *       for now, we'll just include the last css file found.
3834  *
3835  * @return chart.css file to use
3836  */
3837 function chartStyle()
3838 {
3839     return SugarThemeRegistry::current()->getCSSURL('chart.css');
3840 }
3841
3842 /**
3843  * Chart dashlet helper functions that returns the correct XML color file for charts,
3844  * dependent on the current theme.
3845  *
3846  * @return sugarColors.xml to use
3847  */
3848 function chartColors()
3849 {
3850         if (SugarThemeRegistry::current()->getCSSURL('sugarColors.xml')=='')
3851         return SugarThemeRegistry::current()->getImageURL('sugarColors.xml');
3852     return SugarThemeRegistry::current()->getCSSURL('sugarColors.xml');
3853 }
3854 /* End Chart Dashlet helper functions */
3855
3856 /**
3857  * This function is designed to set up the php enviroment
3858  * for AJAX requests.
3859  */
3860
3861 function ajaxInit() {
3862         ini_set('display_errors', 'false');
3863 }
3864
3865 /**
3866  * Returns an absolute path from the given path, determining if it is relative or absolute
3867  *
3868  * @param  string $path
3869  * @return string
3870  */
3871 function getAbsolutePath(
3872     $path,
3873     $currentServer = false
3874     )
3875 {
3876     $path = trim($path);
3877
3878     // try to match absolute paths like \\server\share, /directory or c:\
3879     if ( ( substr($path,0,2) == '\\\\' )
3880             || ( $path[0] == '/' )
3881             || preg_match('/^[A-z]:/i',$path)
3882             || $currentServer )
3883         return $path;
3884
3885     return getcwd().'/'.$path;
3886 }
3887
3888 /**
3889  * Returns the bean object of the given module
3890  *
3891  * @deprecated use SugarModule::loadBean() instead
3892  * @param  string $module
3893  * @return object
3894  */
3895 function loadBean(
3896     $module
3897     )
3898 {
3899     return SugarModule::get($module)->loadBean();
3900 }
3901
3902
3903 /**
3904  * Returns true if the application is being accessed on a touch screen interface ( like an iPad )
3905  */
3906 function isTouchScreen()
3907 {
3908     $ua = empty($_SERVER['HTTP_USER_AGENT']) ? "undefined" : strtolower($_SERVER['HTTP_USER_AGENT']);
3909
3910     // first check if we have forced use of the touch enhanced interface
3911     if ( isset($_COOKIE['touchscreen']) && $_COOKIE['touchscreen'] == '1' ) {
3912         return true;
3913     }
3914
3915     // next check if we should use the touch interface with our device
3916     if ( strpos($ua, 'ipad') !== false ) {
3917         return true;
3918     }
3919
3920     return false;
3921 }
3922
3923 /**
3924  * Returns the shortcut keys to access the shortcut links.  Shortcut
3925  * keys vary depending on browser versions and operating systems.
3926  * @return String value of the shortcut keys
3927  */
3928 function get_alt_hot_key() {
3929         $ua = '';
3930     if ( isset($_SERVER['HTTP_USER_AGENT']) )
3931         $ua = strtolower($_SERVER['HTTP_USER_AGENT']);
3932         $isMac = strpos($ua, 'mac') !== false;
3933         $isLinux = strpos($ua, 'linux') !== false;
3934
3935         if(!$isMac && !$isLinux && strpos($ua, 'mozilla') !== false) {
3936            if(preg_match('/firefox\/(\d)?\./', $ua, $matches)) {
3937                   return $matches[1] < 2 ? 'Alt+' : 'Alt+Shift+';
3938            }
3939         }
3940         return $isMac ? 'Ctrl+' : 'Alt+';
3941 }
3942
3943 function can_start_session(){
3944         if(!empty($_GET['PHPSESSID'])) {
3945            return true;
3946         }
3947         $session_id = session_id();
3948         return empty($session_id) ? true : false;
3949 }
3950
3951 function load_link_class($properties){
3952         $class = 'Link';
3953         if(!empty($properties['link_class']) && !empty($properties['link_file'])){
3954         require_once($properties['link_file']);
3955         $class = $properties['link_class'];
3956     }
3957     return $class;
3958 }
3959
3960
3961 function inDeveloperMode()
3962 {
3963     return isset($GLOBALS['sugar_config']['developerMode']) && $GLOBALS['sugar_config']['developerMode'];
3964 }
3965
3966 /**
3967  * Filter the protocol list for inbound email accounts.
3968  *
3969  * @param array $protocol
3970  */
3971 function filterInboundEmailPopSelection($protocol)
3972 {
3973     if ( !isset($GLOBALS['sugar_config']['allow_pop_inbound']) || ! $GLOBALS['sugar_config']['allow_pop_inbound'] )
3974     {
3975         if( isset($protocol['pop3']) )
3976                         unset($protocol['pop3']);
3977     }
3978     else
3979         $protocol['pop3'] = 'POP3';
3980
3981     return $protocol;
3982 }
3983
3984 /**
3985  * The function is used because currently we are not supporting mbstring.func_overload
3986  * For some user using mssql without FreeTDS, they may store multibyte charaters in varchar using latin_general collation. It cannot store so many mutilbyte characters, so we need to use strlen.
3987  * The varchar in MySQL, Orcale, and nvarchar in FreeTDS, we can store $length mutilbyte charaters in it. we need mb_substr to keep more info.
3988 * @returns the substred strings.
3989  */
3990 function sugar_substr($string, $length, $charset='UTF-8') {
3991     if($GLOBALS['db']->dbType == 'mssql' && empty($GLOBALS['db']->isFreeTDS)) {
3992         if(strlen($string) > $length) {
3993             $string = trim(substr(trim($string),0,$length));
3994         }
3995     }
3996     else {
3997         if(mb_strlen($string,$charset) > $length) {
3998             $string = trim(mb_substr(trim($string),0,$length,$charset));
3999         }
4000     }
4001     return $string;
4002 }
4003
4004 /**
4005  * The function is used because on FastCGI enviroment, the ucfirst(Chinese Characters) will produce bad charcters.
4006  * This will work even without setting the mbstring.*encoding
4007  */
4008 function sugar_ucfirst($string, $charset='UTF-8') {
4009     return mb_strtoupper(mb_substr($string, 0, 1, $charset), $charset) . mb_substr($string, 1, mb_strlen($string), $charset);
4010 }
4011
4012
4013 /**
4014  *
4015  */
4016 function unencodeMultienum($string) {
4017         if (is_array($string))
4018         {
4019            return $string;
4020         }
4021         if (substr($string, 0 ,1) == "^" && substr($string, -1) == "^") {
4022           $string = substr(substr($string, 1), 0, strlen($string) -2);
4023         }
4024
4025         return explode('^,^', $string);
4026 }
4027
4028 function encodeMultienumValue($arr) {
4029     if (!is_array($arr))
4030         return $arr;
4031
4032     if (empty($arr))
4033         return "";
4034
4035         $string = "^" . implode('^,^', $arr) . "^";
4036
4037     return $string;
4038 }
4039
4040 /**
4041  * create_export_query is used for export and massupdate
4042  * We haven't handle the these fields: $field['type'] == 'relate' && isset($field['link']
4043  * This function will correct the where clause and output necessary join condition for them
4044  * @param $module: the module name
4045  * @param $searchFields: searchFields which is got after $searchForm->populateFromArray()
4046  * @param $where: where clauses
4047  * @return $ret_array['where']: corrected where clause
4048  * @return $ret_array['join']: extra join condition
4049  */
4050 function create_export_query_relate_link_patch($module, $searchFields, $where){
4051         if(file_exists('modules/'.$module.'/SearchForm.html')){
4052                 $ret_array['where'] = $where;
4053                 return $ret_array;
4054         }
4055         $seed = loadBean($module);
4056     foreach($seed->field_defs as $name=>$field)
4057         {
4058
4059                 if( $field['type'] == 'relate' && isset($field['link']) && !empty($searchFields[$name]['value']) ){
4060                         $seed->load_relationship($field['link']);
4061                         $params = array();
4062                         if(empty($join_type))
4063                         {
4064                                 $params['join_type'] = ' LEFT JOIN ';
4065                         }
4066                         else
4067                         {
4068                                 $params['join_type'] = $join_type;
4069                         }
4070                         if(isset($data['join_name']))
4071                         {
4072                                 $params['join_table_alias'] = $field['join_name'];
4073                         }
4074                         else
4075                         {
4076                                 $params['join_table_alias']     = 'join_'.$field['name'];
4077
4078                         }
4079                         if(isset($data['join_link_name']))
4080                         {
4081                                 $params['join_table_link_alias'] = $field['join_link_name'];
4082                         }
4083                         else
4084                         {
4085                                 $params['join_table_link_alias'] = 'join_link_'.$field['name'];
4086                         }
4087                         $join = $seed->$field['link']->getJoin($params, true);
4088                         $join_table_alias = 'join_'.$field['name'];
4089                         if(isset($field['db_concat_fields'])){
4090                                 $db_field = db_concat($join_table_alias, $field['db_concat_fields']);
4091                                 $where = preg_replace('/'.$field['name'].'/', $db_field, $where);
4092                         }else{
4093                                 $where = preg_replace('/(^|[\s(])' . $field['name'] . '/', '${1}' . $join_table_alias . '.'.$field['rname'], $where);
4094                         }
4095                 }
4096         }
4097         $ret_array = array('where'=>$where, 'join'=>$join['join']);
4098         return $ret_array;
4099 }
4100
4101 /**
4102   * We need to clear all the js cache files, including the js language files  in serval places in MB. So I extract them into a util function here.
4103   * @Depends on QuickRepairAndRebuild.php
4104   * @Relate bug 30642  ,23177
4105   */
4106 function clearAllJsAndJsLangFilesWithoutOutput(){
4107                 global $current_language , $mod_strings;
4108                 $MBmodStrings = $mod_strings;
4109         $mod_strings = return_module_language ( $current_language, 'Administration' ) ;
4110         include_once ('modules/Administration/QuickRepairAndRebuild.php') ;
4111         $repair = new RepairAndClear();
4112         $repair->module_list = array();
4113                 $repair->show_output = false;
4114                 $repair->clearJsLangFiles();
4115                 $repair->clearJsFiles();
4116                 $mod_strings = $MBmodStrings;
4117 }
4118
4119 /**
4120  * This function will allow you to get a variable value from query string
4121  */
4122 function getVariableFromQueryString($variable, $string){
4123         $matches = array();
4124         $number = preg_match("/{$variable}=([a-zA-Z0-9_-]+)[&]?/", $string, $matches);
4125         if($number){
4126                 return $matches[1];
4127         }
4128         else{
4129                 return false;
4130         }
4131 }
4132
4133 /**
4134  * should_hide_iframes
4135  * This is a helper method to determine whether or not to show iframes (My Sites) related
4136  * information in the application.
4137  *
4138  * @return boolean flag indicating whether or not iframes module should be hidden
4139  */
4140 function should_hide_iframes() {
4141    //Remove the MySites module
4142    if(file_exists('modules/iFrames/iFrame.php')) {
4143         if(!class_exists("iFrame")) {
4144                 require_once('modules/iFrames/iFrame.php');
4145         }
4146         return false;
4147    }
4148    return true;
4149 }
4150
4151 /**
4152  * Given a version such as 5.5.0RC1 return RC. If we have a version such as: 5.5 then return GA
4153  *
4154  * @param string $version
4155  * @return string RC, BETA, GA
4156  */
4157 function getVersionStatus($version){
4158         if(preg_match('/^[\d\.]+?([a-zA-Z]+?)[\d]*?$/si', $version, $matches)) {
4159                 return strtoupper($matches[1]);
4160         }else{
4161                 return 'GA';
4162         }
4163 }
4164
4165 /**
4166  * Return the numeric portion of a version. For example if passed 5.5.0RC1 then return 5.5. If given
4167  * 5.5.1RC1 then return 5.5.1
4168  *
4169  * @param string $version
4170  * @return version
4171  */
4172 function getMajorMinorVersion($version){
4173         if(preg_match('/^([\d\.]+).*$/si', $version, $matches2)){
4174                 $version = $matches2[1];
4175                 $arr = explode('.', $version);
4176                 if(count($arr) > 2){
4177                         if($arr[2] == '0'){
4178                                 $version = substr($version, 0, 3);
4179                         }
4180                 }
4181         }
4182         return $version;
4183 }
4184
4185 /**
4186  * Return string composed of seconds & microseconds of current time, without dots
4187  * @return string
4188  */
4189 function sugar_microtime()
4190 {
4191         $now = explode(' ', microtime());
4192         $unique_id = $now[1].str_replace('.', '', $now[0]);
4193         return $unique_id;
4194 }
4195
4196 /**
4197  * Extract urls from a piece of text
4198  * @param  $string
4199  * @return array of urls found in $string
4200  */
4201 function getUrls($string)
4202 {
4203         $lines = explode("<br>", trim($string));
4204         $urls = array();
4205         foreach($lines as $line){
4206         $regex = '/http?\:\/\/[^\" ]+/i';
4207         preg_match_all($regex, $line, $matches);
4208         foreach($matches[0] as $match){
4209                 $urls[] = $match;
4210         }
4211         }
4212     return $urls;
4213 }
4214
4215
4216 /**
4217  * Sanitize image file from hostile content
4218  * @param string $path Image file
4219  * @param bool $jpeg  Accept only JPEGs?
4220  */
4221 function verify_image_file($path, $jpeg = false)
4222 {
4223         if(function_exists('imagepng') && function_exists('imagejpeg') && function_exists('imagecreatefromstring')) {
4224         $img = imagecreatefromstring(file_get_contents($path));
4225         if(!$img) {
4226             return false;
4227         }
4228         $img_size = getimagesize($path);
4229                 $filetype = $img_size['mime'];
4230                 //if filetype is jpeg or if we are only allowing jpegs, create jpg image
4231         if($filetype == "image/jpeg" || $jpeg) {
4232             if(imagejpeg($img, $path)) {
4233                 return true;
4234             }
4235         } elseif ($filetype == "image/png") { // else if the filetype is png, create png
4236                 imagealphablending($img, true);
4237                 imagesavealpha($img, true);
4238             if(imagepng($img, $path)) {
4239                 return true;
4240             }
4241         } else {
4242                 return false;   
4243         }
4244         } else {
4245             // check image manually
4246             $fp = fopen($path, "r");
4247             if(!$fp) return false;
4248             $data = fread($fp, 4096);
4249             fclose($fp);
4250             if(preg_match("/<(html|!doctype|script|body|head|plaintext|table|img |pre(>| )|frameset|iframe|object|link|base|style|font|applet|meta|center|form|isindex)/i",
4251                  $data, $m)) {
4252                 $GLOBALS['log']->info("Found {$m[0]} in $path, not allowing upload");
4253                 return false;
4254             }
4255             return true;
4256         }
4257         return false;
4258 }
4259
4260 /**
4261  * Verify uploaded image
4262  * Verifies that image has proper extension, MIME type and doesn't contain hostile contant
4263  * @param string $path  Image path
4264  * @param bool $jpeg_only  Accept only JPEGs?
4265  */
4266 function verify_uploaded_image($path, $jpeg_only = false)
4267 {
4268     $supportedExtensions = array('jpg' => 'image/jpeg', 'jpeg' => 'image/jpeg');
4269     if(!$jpeg_only) {
4270         $supportedExtensions['png'] = 'image/png';
4271     }
4272
4273     if(!file_exists($path) || !is_file($path)) {
4274             return false;
4275         }
4276
4277         $img_size = getimagesize($path);
4278         $filetype = $img_size['mime'];
4279         $ext = end(explode(".", $path));
4280         if(substr_count('..', $path) > 0 || $ext === $path || !in_array(strtolower($ext), array_keys($supportedExtensions)) ||
4281             !in_array($filetype, array_values($supportedExtensions))) {
4282                 return false;
4283         }
4284     return verify_image_file($path, $jpeg_only);
4285 }