-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.php
executable file
·842 lines (741 loc) · 28.6 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
<?php
/*********************************************************************************
* The contents of this file are subject to the SugarCRM Public License Version 1.1.2
* ("License"); You may not use this file except in compliance with the
* License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
* The Original Code is: SugarCRM Open Source
* The Initial Developer of the Original Code is SugarCRM, Inc.
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.;
* All Rights Reserved.
* Contributor(s): ______________________________________.
********************************************************************************/
/*********************************************************************************
* $Header: /advent/projects/wesat/vtiger_crm/sugarcrm/index.php,v 1.93 2005/04/21 16:17:25 ray Exp $
* Description: Main file and starting point for the application. Calls the
* theme header and footer files defined for the user as well as the module as
* defined by the input parameters.
********************************************************************************/
global $entityDel;
global $display;
global $category;
if(version_compare(phpversion(), '5.0') < 0) {
insert_charset_header();
require_once('phpversionfail.php');
die();
}
require_once('include/utils/utils.php');
if (version_compare(phpversion(), '5.0') < 0) {
eval('
function clone($object) {
return $object;
}
');
}
global $currentModule;
/** Function to return a string with backslashes stripped off
* @param $value -- value:: Type string
* @returns $value -- value:: Type string array
*/
function stripslashes_checkstrings($value){
if(is_string($value)){
return stripslashes($value);
}
return $value;
}
if(get_magic_quotes_gpc() == 1){
$_REQUEST = array_map("stripslashes_checkstrings", $_REQUEST);
$_POST = array_map("stripslashes_checkstrings", $_POST);
$_GET = array_map("stripslashes_checkstrings", $_GET);
}
// Allow for the session information to be passed via the URL for printing.
if(isset($_REQUEST['PHPSESSID']))
{
session_id($_REQUEST['PHPSESSID']);
//Setting the same session id to Forums as in CRM
$sid=$_REQUEST['PHPSESSID'];
}
/** Function to set, character set in the header, as given in include/language/*_lang.php
*/
function insert_charset_header()
{
global $app_strings, $default_charset;
$charset = $default_charset;
if(isset($app_strings['LBL_CHARSET']))
{
$charset = $app_strings['LBL_CHARSET'];
}
header('Content-Type: text/html; charset='. $charset);
}
insert_charset_header();
// Create or reestablish the current session
session_start();
if (!is_file('config.inc.php')) {
header("Location: install.php");
exit();
}
require_once('config.inc.php');
if (!isset($dbconfig['db_hostname']) || $dbconfig['db_status']=='_DB_STAT_') {
header("Location: install.php");
exit();
}
// load up the config_override.php file. This is used to provide default user settings
if (is_file('config_override.php'))
{
require_once('config_override.php');
}
/**
* Check for vtiger installed version and codebase
*/
require_once('vtigerversion.php');
global $adb, $vtiger_current_version;
if(isset($_SESSION['VTIGER_DB_VERSION']) && isset($_SESSION['authenticated_user_id'])) {
if(version_compare($_SESSION['VTIGER_DB_VERSION'], $vtiger_current_version, '!=')) {
unset($_SESSION['VTIGER_DB_VERSION']);
header("Location: install.php");
exit();
}
} else {
$result = $adb->query("SELECT * FROM vtiger_version");
$dbversion = $adb->query_result($result, 0, 'current_version');
if(version_compare($dbversion, $vtiger_current_version, '=')) {
$_SESSION['VTIGER_DB_VERSION']= $dbversion;
} else {
header("Location: install.php");
exit();
}
}
// END
$default_config_values = Array( "allow_exports"=>"all","upload_maxsize"=>"3000000", "listview_max_textlength" => "40", "php_max_execution_time" => "0");
set_default_config($default_config_values);
// Set the default timezone preferred by user
global $default_timezone;
if(isset($default_timezone) && function_exists('date_default_timezone_set')) {
@date_default_timezone_set($default_timezone);
}
require_once('include/logging.php');
require_once('modules/Users/Users.php');
global $currentModule;
//if($calculate_response_time) $startTime = microtime();
$log =& LoggerManager::getLogger('index');
global $seclog;
$seclog =& LoggerManager::getLogger('SECURITY');
if (isset($_REQUEST['PHPSESSID'])) $log->debug("****Starting for session ".$_REQUEST['PHPSESSID']);
else $log->debug("****Starting for new session");
// We use the REQUEST_URI later to construct dynamic URLs. IIS does not pass this field
// to prevent an error, if it is not set, we will assign it to ''
if(!isset($_SERVER['REQUEST_URI']))
{
$_SERVER['REQUEST_URI'] = '';
}
$action = '';
if(isset($_REQUEST['action']))
{
$action = $_REQUEST['action'];
}
if($action == 'Export')
{
include ('include/utils/export.php');
}
if($action == 'ExportAjax')
{
include ('include/utils/ExportAjax.php');
}
// vtlib customization: Module manager export
if($action == 'ModuleManagerExport') {
include('modules/Settings/ModuleManager/Export.php');
}
// END
//Code added for 'Path Traversal/File Disclosure' security fix - Philip
$is_module = false;
$is_action = false;
if(isset($_REQUEST['module']))
{
$module = $_REQUEST['module'];
$dir = @scandir($root_directory."modules");
$temp_arr = Array("CVS","Attic");
$res_arr = @array_intersect($dir,$temp_arr);
if(count($res_arr) == 0 && !preg_match("/[\/.]/",$module)) {
if(@in_array($module,$dir))
$is_module = true;
}
$in_dir = @scandir($root_directory."modules/".$module);
$res_arr = @array_intersect($in_dir,$temp_arr);
if(count($res_arr) == 0 && !preg_match("/[\/.]/",$module)) {
if(@in_array($action.".php",$in_dir))
$is_action = true;
}
if(!$is_module)
{
die("Module name is missing. Please check the module name.");
}
if(!$is_action)
{
die("Action name is missing. Please check the action name.");
}
}
//Code added for 'Multiple SQL Injection Vulnerabilities & XSS issue' fixes - Philip
if(isset($_REQUEST['record']) && !is_numeric($_REQUEST['record']) && $_REQUEST['record']!='')
{
die("An invalid record number specified to view details.");
}
// Check to see if there is an authenticated user in the session.
$use_current_login = false;
if(isset($_SESSION["authenticated_user_id"]) && (isset($_SESSION["app_unique_key"]) && $_SESSION["app_unique_key"] == $application_unique_key))
{
$use_current_login = true;
}
// Prevent loading Login again if there is an authenticated user in the session.
if (isset($_SESSION["authenticated_user_id"]) && $module == 'Users' && $action == 'Login') {
header("Location: index.php?action=$default_action&module=$default_module");
}
if($use_current_login){
/*&Added to prevent fatal error before starting migration(5.0.4. patch ).
//Start
$arr=$adb->getColumnNames("vtiger_users");
if(!in_array("internal_mailer", $arr))
{
$adb->pquery("alter table vtiger_users add column internal_mailer int(3) NOT NULL default '1'", array());
$adb->pquery("alter table vtiger_users add column tagcloud_view int(1) default 1", array());
}
//End*/
//getting the internal_mailer flag
if(!isset($_SESSION['internal_mailer'])){
$qry_res = $adb->pquery("select internal_mailer from vtiger_users where id=?", array($_SESSION["authenticated_user_id"]));
$_SESSION['internal_mailer'] = $adb->query_result($qry_res,0,"internal_mailer");
}
$log->debug("We have an authenticated user id: ".$_SESSION["authenticated_user_id"]);
}else if(isset($action) && isset($module) && $action=="Authenticate" && $module=="Users"){
$log->debug("We are authenticating user now");
}else{
if($_REQUEST['action'] != 'Logout' && $_REQUEST['action'] != 'Login'){
$_SESSION['lastpage'] = $_SERVER['argv'];
}
$log->debug("The current user does not have a session. Going to the login page");
$action = "Login";
$module = "Users";
}
$log->debug($_REQUEST);
$skipHeaders=false;
$skipFooters=false;
$viewAttachment = false;
$skipSecurityCheck= false;
//echo $module;
// echo $action;
if(isset($action) && isset($module))
{
$log->info("About to take action ".$action);
$log->debug("in $action");
if(preg_match("/^Save/", $action) ||
preg_match("/^Delete/", $action) ||
preg_match("/^Choose/", $action) ||
preg_match("/^Popup/", $action) ||
preg_match("/^ChangePassword/", $action) ||
preg_match("/^Authenticate/", $action) ||
preg_match("/^Logout/", $action) ||
preg_match("/^add2db/", $action) ||
preg_match("/^result/", $action) ||
preg_match("/^LeadConvertToEntities/", $action) ||
preg_match("/^downloadfile/", $action) ||
preg_match("/^massdelete/", $action) ||
preg_match("/^updateLeadDBStatus/",$action) ||
preg_match("/^AddCustomFieldToDB/", $action) ||
preg_match("/^updateRole/",$action) ||
preg_match("/^UserInfoUtil/",$action) ||
preg_match("/^deleteRole/",$action) ||
preg_match("/^UpdateComboValues/",$action) ||
preg_match("/^fieldtypes/",$action) ||
preg_match("/^app_ins/",$action) ||
preg_match("/^minical/",$action) ||
preg_match("/^minitimer/",$action) ||
preg_match("/^app_del/",$action) ||
preg_match("/^send_mail/",$action) ||
preg_match("/^populatetemplate/",$action) ||
preg_match("/^TemplateMerge/",$action) ||
preg_match("/^testemailtemplateusage/",$action) ||
preg_match("/^saveemailtemplate/",$action) ||
preg_match("/^ProcessDuplicates/", $action ) ||
preg_match("/^lastImport/", $action ) ||
preg_match("/^lookupemailtemplate/",$action) ||
preg_match("/^deletewordtemplate/",$action) ||
preg_match("/^deleteemailtemplate/",$action) ||
preg_match("/^CurrencyDelete/",$action) ||
preg_match("/^deleteattachments/",$action) ||
preg_match("/^MassDeleteUsers/",$action) ||
preg_match("/^UpdateFieldLevelAccess/",$action) ||
preg_match("/^UpdateDefaultFieldLevelAccess/",$action) ||
preg_match("/^UpdateProfile/",$action) ||
preg_match("/^updateRelations/",$action) ||
preg_match("/^updateNotificationSchedulers/",$action) ||
preg_match("/^Star/",$action) ||
preg_match("/^addPbProductRelToDB/",$action) ||
preg_match("/^UpdateListPrice/",$action) ||
preg_match("/^PriceListPopup/",$action) ||
preg_match("/^SalesOrderPopup/",$action) ||
preg_match("/^CreatePDF/",$action) ||
preg_match("/^CreateSOPDF/",$action) ||
preg_match("/^redirect/",$action) ||
preg_match("/^webmail/",$action) ||
preg_match("/^left_main/",$action) ||
preg_match("/^delete_message/",$action) ||
preg_match("/^mime/",$action) ||
preg_match("/^move_messages/",$action) ||
preg_match("/^folders_create/",$action) ||
preg_match("/^imap_general/",$action) ||
preg_match("/^mime/",$action) ||
preg_match("/^download/",$action) ||
preg_match("/^about_us/",$action) ||
preg_match("/^SendMailAction/",$action) ||
preg_match("/^CreateXL/",$action) ||
preg_match("/^savetermsandconditions/",$action) ||
preg_match("/^home_rss/",$action) ||
preg_match("/^ConvertAsFAQ/",$action) ||
preg_match("/^Tickerdetail/",$action) ||
preg_match("/^".$module."Ajax/",$action) ||
preg_match("/^ActivityAjax/",$action) ||
preg_match("/^chat/",$action) ||
preg_match("/^vtchat/",$action) ||
preg_match("/^updateCalendarSharing/",$action) ||
preg_match("/^disable_sharing/",$action) ||
preg_match("/^HeadLines/",$action) ||
preg_match("/^TodoSave/",$action) ||
preg_match("/^RecalculateSharingRules/",$action) ||
(preg_match("/^body/",$action) && preg_match("/^Webmails/",$module)) ||
(preg_match("/^dlAttachments/",$action) && preg_match("/^Webmails/",$module)) ||
(preg_match("/^DetailView/",$action) && preg_match("/^Webmails/",$module)) ||
preg_match("/^savewordtemplate/",$action) ||
preg_match("/^mailmergedownloadfile/",$action) ||
(preg_match("/^Webmails/",$module) && preg_match("/^get_img/",$action)) ||
preg_match("/^download/",$action) ||
preg_match("/^getListOfRecords/", $action) ||
preg_match("/^AddBlockFieldToDB/", $action) ||
preg_match("/^AddBlockToDB/", $action) ||
preg_match("/^MassEditSave/", $action) ||
preg_match("/^iCalExport/",$action)
)
{
$skipHeaders=true;
//skip headers for all these invocations as they are mostly popups
if(preg_match("/^Popup/", $action) ||
preg_match("/^ChangePassword/", $action) ||
//preg_match("/^Export/", $action) ||
preg_match("/^downloadfile/", $action) ||
preg_match("/^fieldtypes/",$action) ||
preg_match("/^lookupemailtemplate/",$action) ||
preg_match("/^about_us/",$action) ||
preg_match("/^home_rss/",$action) ||
preg_match("/^".$module."Ajax/",$action) ||
preg_match("/^chat/",$action) ||
preg_match("/^vtchat/",$action) ||
preg_match("/^massdelete/", $action) ||
preg_match("/^mailmergedownloadfile/",$action) || preg_match("/^get_img/",$action) ||
preg_match("/^download/",$action) ||
preg_match("/^ProcessDuplicates/", $action ) ||
preg_match("/^lastImport/", $action ) ||
preg_match("/^massdelete/", $action ) ||
preg_match("/^getListOfRecords/", $action) ||
preg_match("/^MassEditSave/", $action) ||
preg_match("/^iCalExport/",$action)
)
$skipFooters=true;
//skip footers for all these invocations as they are mostly popups
if(preg_match("/^downloadfile/", $action)
|| preg_match("/^fieldtypes/",$action)
|| preg_match("/^mailmergedownloadfile/",$action)
|| preg_match("/^get_img/",$action)
|| preg_match("/^MergeFieldLeads/", $action)
|| preg_match("/^MergeFieldContacts/", $action )
|| preg_match("/^MergeFieldAccounts/", $action )
|| preg_match("/^MergeFieldProducts/", $action )
|| preg_match("/^MergeFieldHelpDesk/", $action )
|| preg_match("/^MergeFieldPotentials/", $action )
|| preg_match("/^MergeFieldVendors/", $action )
|| preg_match("/^dlAttachments/", $action )
|| preg_match("/^iCalExport/", $action)
)
{
$viewAttachment = true;
}
if(($action == ' Delete ') && (!$entityDel))
{
$skipHeaders=false;
}
}
if($action == 'Save')
{
header( "Expires: Mon, 20 Dec 1998 01:00:00 GMT" );
header( "Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT" );
header( "Cache-Control: no-cache, must-revalidate" );
header( "Pragma: no-cache" );
}
if($module == 'Users' || $module == 'Home' || $module == 'uploads')
{
$skipSecurityCheck=true;
}
if($action == 'UnifiedSearch') {
$currentModuleFile = 'modules/Home/'.$action.'.php';
} else {
$currentModuleFile = 'modules/'.$module.'/'.$action.'.php';
}
$currentModule = $module;
}
elseif(isset($module))
{
$currentModule = $module;
$currentModuleFile = $moduleDefaultFile[$currentModule];
}
else {
// use $default_module and $default_action as set in config.php
// Redirect to the correct module with the correct action. We need the URI to include these fields.
header("Location: index.php?action=$default_action&module=$default_module");
exit();
}
$log->info("current page is $currentModuleFile");
$log->info("current module is $currentModule ");
// for printing
$module = (isset($_REQUEST['module'])) ? vtlib_purify($_REQUEST['module']) : "";
$action = (isset($_REQUEST['action'])) ? vtlib_purify($_REQUEST['action']) : "";
$record = (isset($_REQUEST['record'])) ? vtlib_purify($_REQUEST['record']) : "";
$lang_crm = (isset($_SESSION['authenticated_user_language'])) ? $_SESSION['authenticated_user_language'] : "";
$GLOBALS['request_string'] = "&module=$module&action=$action&record=$record&lang_crm=$lang_crm";
$current_user = new Users();
if($use_current_login)
{
//$result = $current_user->retrieve($_SESSION['authenticated_user_id']);
//getting the current user info from flat file
$result = $current_user->retrieveCurrentUserInfoFromFile($_SESSION['authenticated_user_id']);
if($result == null)
{
session_destroy();
header("Location: index.php?action=Login&module=Users");
}
$moduleList = getPermittedModuleNames();
foreach ($moduleList as $mod) {
$moduleDefaultFile[$mod] = "modules/".$currentModule."/index.php";
}
//auditing
require_once('user_privileges/audit_trail.php');
if($audit_trail == 'true')
{
if($record == '')
$auditrecord = '';
else
$auditrecord = $record;
/* Skip audit trial log for special request types */
$skip_auditing = false;
if($action == 'chat') {
$skip_auditing = true;
} else if(($action == 'ActivityReminderCallbackAjax' || $_REQUEST['file'] == 'ActivityReminderCallbackAjax') && $module == 'Calendar') {
$skip_auditing = true;
} else if(($action == 'TraceIncomingCall' || $_REQUEST['file'] == 'TraceIncomingCall') && $module == 'PBXManager') {
$skip_auditing = true;
}
/* END */
if (!$skip_auditing) {
$date_var = $adb->formatDate(date('Y-m-d H:i:s'), true);
$query = "insert into vtiger_audit_trial values(?,?,?,?,?,?)";
$qparams = array($adb->getUniqueID('vtiger_audit_trial'), $current_user->id, $module, $action, $auditrecord, $date_var);
$adb->pquery($query, $qparams);
}
}
$log->debug('Current user is: '.$current_user->user_name);
}
if(isset($_SESSION['vtiger_authenticated_user_theme']) && $_SESSION['vtiger_authenticated_user_theme'] != '')
{
$theme = $_SESSION['vtiger_authenticated_user_theme'];
}
else
{
$theme = $default_theme;
}
$log->debug('Current theme is: '.$theme);
//Used for current record focus
$focus = "";
// if the language is not set yet, then set it to the default language.
if(isset($_SESSION['authenticated_user_language']) && $_SESSION['authenticated_user_language'] != '')
{
$current_language = $_SESSION['authenticated_user_language'];
}
else
{
$current_language = $default_language;
}
$log->debug('current_language is: '.$current_language);
//set module and application string arrays based upon selected language
$app_currency_strings = return_app_currency_strings_language($current_language);
$app_strings = return_application_language($current_language);
$app_list_strings = return_app_list_strings_language($current_language);
$mod_strings = return_module_language($current_language, $currentModule);
//If DetailView, set focus to record passed in
if($action == "DetailView")
{
if(!isset($_REQUEST['record']))
die("A record number must be specified to view details.");
// If we are going to a detail form, load up the record now.
// Use the record to track the viewing.
// todo - Have a record of modules and thier primary object names.
//Getting the actual module
switch($currentModule)
{
case 'Webmails':
//No need to create a webmail object here
break;
default:
$focus = CRMEntity::getInstance($currentModule);
break;
}
if(isset($_REQUEST['record']) && $_REQUEST['record']!='' && $_REQUEST["module"] != "Webmails" && $current_user->id != '')
{
// Only track a viewing if the record was retrieved.
$focus->track_view($current_user->id, $currentModule,$_REQUEST['record']);
}
}
// set user, theme and language cookies so that login screen defaults to last values
if (isset($_SESSION['authenticated_user_id'])) {
$log->debug("setting cookie ck_login_id_vtiger to ".$_SESSION['authenticated_user_id']);
setcookie('ck_login_id_vtiger', $_SESSION['authenticated_user_id']);
}
if (isset($_SESSION['vtiger_authenticated_user_theme'])) {
$log->debug("setting cookie ck_login_theme_vtiger to ".$_SESSION['vtiger_authenticated_user_theme']);
setcookie('ck_login_theme_vtiger', $_SESSION['vtiger_authenticated_user_theme']);
}
if (isset($_SESSION['authenticated_user_language'])) {
$log->debug("setting cookie ck_login_language_vtiger to ".$_SESSION['authenticated_user_language']);
setcookie('ck_login_language_vtiger', $_SESSION['authenticated_user_language']);
}
if($_REQUEST['module'] == 'Documents' && $action == 'DownloadFile')
{
include('modules/Documents/DownloadFile.php');
exit;
}
//skip headers for popups, deleting, saving, importing and other actions
if(!$skipHeaders) {
$log->debug("including headers");
if($use_current_login)
{
if(isset($_REQUEST['category']) && $_REQUEST['category'] !='')
{
$category = vtlib_purify($_REQUEST['category']);
}
else
{
$category = getParentTabFromModule($currentModule);
}
include('themes/'.$theme.'/header.php');
}
else
include('themes/'.$theme.'/loginheader.php');
if(isset($_SESSION['administrator_error']))
{
// only print DB errors once otherwise they will still look broken after they are fixed.
// Only print the errors for admin users.
if(is_admin($current_user))
echo $_SESSION['administrator_error'];
unset($_SESSION['administrator_error']);
}
echo "<!-- startscrmprint -->";
}
else {
$log->debug("skipping headers");
}
//fetch the permission set from session and search it for the requisite data
if(isset($_SESSION['vtiger_authenticated_user_theme']) && $_SESSION['vtiger_authenticated_user_theme'] != '')
{
$theme = $_SESSION['vtiger_authenticated_user_theme'];
}
else
{
$theme = $default_theme;
}
//logging the security Information
$seclog->debug('######## Module --> '.$module.' :: Action --> '.$action.' :: UserID --> '.$current_user->id.' :: RecordID --> '.$record.' #######');
if(!$skipSecurityCheck)
{
require_once('include/utils/UserInfoUtil.php');
if(preg_match('/Ajax/',$action)) {
if($_REQUEST['ajxaction'] == 'LOADRELATEDLIST'){
$now_action = 'DetailView';
} else {
$now_action=vtlib_purify($_REQUEST['file']);
}
} else {
$now_action=$action;
}
if(isset($_REQUEST['record']) && $_REQUEST['record'] != '')
{
$display = isPermitted($module,$now_action,$_REQUEST['record']);
}
else
{
$display = isPermitted($module,$now_action);
}
$seclog->debug('########### Pemitted ---> '.$display.' ##############');
}
else
{
$seclog->debug('########### Pemitted ---> yes ##############');
}
if($display == "no")
{
echo "<link rel='stylesheet' type='text/css' href='themes/$theme/style.css'>";
echo "<table border='0' cellpadding='5' cellspacing='0' width='100%' height='450px'><tr><td align='center'>";
echo "<div style='border: 3px solid rgb(153, 153, 153); background-color: rgb(255, 255, 255); width: 55%; position: relative; z-index: 10000000;'>
<table border='0' cellpadding='5' cellspacing='0' width='98%'>
<tbody><tr>
<td rowspan='2' width='11%'><img src='". vtiger_imageurl('denied.gif', $theme) . "' ></td>
<td style='border-bottom: 1px solid rgb(204, 204, 204);' nowrap='nowrap' width='70%'><span class='genHeaderSmall'>$app_strings[LBL_PERMISSION]</span></td>
</tr>
<tr>
<td class='small' align='right' nowrap='nowrap'>
<a href='javascript:window.history.back();'>$app_strings[LBL_GO_BACK]</a><br> </td>
</tr>
</tbody></table>
</div>";
echo "</td></tr></table>";
}
// vtlib customization: Check if module has been de-activated
else if(!vtlib_isModuleActive($currentModule)) {
echo "<link rel='stylesheet' type='text/css' href='themes/$theme/style.css'>";
echo "<table border='0' cellpadding='5' cellspacing='0' width='100%' height='450px'><tr><td align='center'>";
echo "<div style='border: 3px solid rgb(153, 153, 153); background-color: rgb(255, 255, 255); width: 55%; position: relative; z-index: 10000000;'>
<table border='0' cellpadding='5' cellspacing='0' width='98%'>
<tbody><tr>
<td rowspan='2' width='11%'><img src='". vtiger_imageurl('denied.gif', $theme) . "' ></td>
<td style='border-bottom: 1px solid rgb(204, 204, 204);' nowrap='nowrap' width='70%'><span class='genHeaderSmall'>$currentModule $app_strings[VTLIB_MOD_NOT_ACTIVE]</span></td>
</tr>
<tr>
<td class='small' align='right' nowrap='nowrap'>
<a href='javascript:window.history.back();'>$app_strings[LBL_GO_BACK]</a><br> </td>
</tr>
</tbody></table>
</div>";
echo "</td></tr></table>";
}
// END
else
{
include($currentModuleFile);
}
if((!$viewAttachment) && (!$viewAttachment && $action != 'home_rss' && $action != $module."Ajax" && $action != "chat" && $action != 'massdelete' && $action != "body") )
{
echo "<!-- stopscrmprint -->";
}
//added to get the theme . This is a bad fix as we need to know where the problem lies yet
if(isset($_SESSION['vtiger_authenticated_user_theme']) && $_SESSION['vtiger_authenticated_user_theme'] != '')
{
$theme = $_SESSION['vtiger_authenticated_user_theme'];
}
else
{
$theme = $default_theme;
}
$Ajx_module= $module;
if($module == 'Events')
$Ajx_module = 'Calendar';
if((!$viewAttachment) && (!$viewAttachment && $action != 'home_rss') && $action != 'Tickerdetail' && $action != $Ajx_module."Ajax" && $action != "chat" && $action != "HeadLines" && $action != 'massdelete' && $action != "DashboardAjax" && $action != "ActivityAjax")
{
// Under the SPL you do not have the right to remove this copyright statement.
$copyrightstatement="<style>
.bggray
{
background-color: #dfdfdf;
}
.bgwhite
{
background-color: #FFFFFF;
}
.copy
{
font-size:9px;
font-family: Verdana, Arial, Helvetica, Sans-serif;
}
</style>
<script language=javascript>
function LogOut(e)
{
var nav4 = window.Event ? true : false;
var iX,iY;
if (nav4)
{
iX = e.pageX;
iY = e.pageY;
}
else
{
iX = event.clientX + document.body.scrollLeft;
iY = event.clientY + document.body.scrollTop;
}
if (iX <= 30 && iY < 0 )
{
w=window.open(\"index.php?action=Logout&module=Users\");
w.close();
}
}
//window.onunload=LogOut
</script>
";
if((!$skipFooters) && $action != "about_us" && $action != "vtchat" && $action != "ChangePassword" && $action != "body" && $action != $module."Ajax" && $action!='Popup' && $action != 'ImportStep3' && $action != 'ActivityAjax' && $action != 'getListOfRecords')
{
echo $copyrightstatement;
// Status tracking
$statimage = '';
if($currentModule == 'Users' && empty($current_user->id)) {
global $disable_stats_tracking;
if(isset($disable_stats_tracking) && !empty($disable_stats_tracking)) {
$statimage = "";
} else {
$statimage = "<img src='http://stats.vtiger.com/stats.php?uid=$application_unique_key&v=$vtiger_current_version&type=U'
alt='|' title='' border=0 width='1px' height='1px'>";
}
}
// END
echo "<script language = 'JavaScript' type='text/javascript' src = 'include/js/popup.js'></script>";
echo "<br><br><br><table border=0 cellspacing=0 cellpadding=5 width=100% class=settingsSelectedUI >";
echo "<tr><td class=small align=left><span style='color: rgb(153, 153, 153);'>vtiger CRM $vtiger_current_version</span></td>";
echo "<td class=small align=right><span style='color: rgb(153, 153, 153);'>© 2004-".date('Y')." <a href='http://www.vtiger.com' target='_blank'>vtiger.com</a> | <a href='javascript:mypopup()'>".$app_strings['LNK_READ_LICENSE']."</a> | <a href='http://www.vtiger.com/products/crm/privacy_policy.html' target='_blank'>".getTranslatedString('LNK_PRIVACY_POLICY')."</a></span> $statimage</td></tr></table>";
// echo "<table align='center'><tr><td align='center'>";
// Under the Sugar Public License referenced above, you are required to leave in all copyright statements
// in both the code and end-user application.
// if($calculate_response_time)
// {
// $endTime = microtime();
// $deltaTime = microtime_diff($startTime, $endTime);
// echo(' Server response time: '.$deltaTime.' seconds.');
// }
// echo "</td></tr></table>\n";
}
if(($action != 'mytkt_rss') && ($action != 'home_rss') && ($action != $module."Ajax") && ($action != "body") && ($action != 'ActivityAjax'))
{
?>
<script>
var userDateFormat = "<?php echo $current_user->date_format ?>";
var default_charset = "<?php echo $default_charset; ?>";
</script>
<?php
}
// ActivityReminder Customization for callback
if(!$skipFooters) {
if($current_user->id!=NULL && isPermitted('Calendar','index') == 'yes' &&
vtlib_isModuleActive('Calendar')) {
echo "<script type='text/javascript'>if(typeof(ActivityReminderCallback) != ".
"'undefined') ";
$cur_time = time();
$reminder_interval_reset = (($_SESSION['last_reminder_check_time'] +
$_SESSION['next_reminder_interval']) - $cur_time) * 1000;
if(isset($_SESSION['last_reminder_check_time']) && $reminder_interval_reset > 0){
echo "window.setTimeout(function(){
ActivityReminderCallback();
},$reminder_interval_reset);";
} else {
echo "ActivityReminderCallback();";
}
echo "</script>";
}
}
// End
if((!$skipFooters) && ($action != "body") && ($action != $module."Ajax") && ($action != "ActivityAjax"))
include('themes/'.$theme.'/footer.php');
}
?>