-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.php
81 lines (76 loc) · 2.55 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
<?php
/*+**********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* Portions created by TSolucio are Copyright (C) TSolucio.
* All Rights Reserved.
************************************************************************************/
//error_reporting(E_ALL); // Debug
//ini_set('display_errors','on');
include_once 'models/Login.php';
include_once 'controllers/Session.php';
include_once 'vtwsclib/WSClient.php';
Session_Controller::start();
header('Content-type: text/html; charset=utf8');
include_once 'controllers/Header.php';
include_once 'controllers/Footer.php';
if (isset($_REQUEST['action'])) {
$action = $_REQUEST['action'];
} else {
$action = '';
}
if (Session_Controller::hasLoginContext()) {
switch ($action) {
case 'Logout':
include_once 'controllers/Logout.php';
Logout_Controller::process($_REQUEST);
Footer_Controller::process($_REQUEST);
break;
case 'ListTypes':
Header_Controller::process($_REQUEST);
include_once 'controllers/ListTypes.php';
ListTypes_Controller::process($_REQUEST);
Footer_Controller::process($_REQUEST);
break;
case 'TestCode':
Header_Controller::process($_REQUEST);
include_once 'controllers/TestCode.php';
TestCode_Controller::process($_REQUEST);
Footer_Controller::process($_REQUEST);
break;
case 'TestCodeJS':
Header_Controller::process($_REQUEST);
include_once 'controllers/TestCodeJS.php';
TestCodeJS_Controller::process($_REQUEST);
Footer_Controller::process($_REQUEST);
break;
case 'execCode':
include_once 'controllers/TestCode.php';
TestCode_Controller::doExecCode();
break;
case 'execCodeDirect':
include_once 'controllers/TestCode.php';
TestCode_Controller::doExecCodeDirect($_REQUEST['script']);
break;
case 'queryExamples':
Header_Controller::process($_REQUEST);
include_once 'controllers/queryExamples.php';
QueryExamples_Controller::process();
Footer_Controller::process($_REQUEST);
break;
case 'VQL':
default:
Header_Controller::process($_REQUEST);
include_once 'controllers/Query.php';
Query_Controller::process($_REQUEST);
Footer_Controller::process($_REQUEST);
break;
}
} else {
include_once 'controllers/Login.php';
Login_Controller::process($_REQUEST);
}
?>