]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/entryPoint.php
Release 6.1.4
[Github/sugarcrm.git] / include / entryPoint.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 /*********************************************************************************
39
40  * Description:
41  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. All Rights
42  * Reserved. Contributor(s): ______________________________________..
43  * *******************************************************************************/
44
45 /**
46  * Known Entry Points as of 4.5
47  * acceptDecline.php
48  * campaign_tracker.php
49  * campaign_trackerv2.php
50  * cron.php
51  * dictionary.php
52  * download.php
53  * emailmandelivery.php
54  * export_dataset.php
55  * export.php
56  * image.php
57  * index.php
58  * install.php
59  * json.php
60  * json_server.php
61  * leadCapture.php
62  * maintenance.php
63  * metagen.php
64  * oc_convert.php
65  * pdf.php
66  * phprint.php
67  * process_queue.php
68  * process_workflow.php
69  * removeme.php
70  * schedulers.php
71  * soap.php
72  * su.php
73  * sugar_version.php
74  * TreeData.php
75  * tree_level.php
76  * tree.php
77  * vcal_server.php
78  * vCard.php
79  * zipatcher.php
80  * WebToLeadCapture.php
81  * HandleAjaxCall.php */
82  /*
83   * for 50, added:
84   * minify.php
85   */
86   /*
87   * for 510, added:
88   * dceActionCleanup.php
89   */
90 $GLOBALS['starttTime'] = microtime(true);
91
92 set_include_path(
93     dirname(__FILE__) . '/..' . PATH_SEPARATOR .
94     get_include_path()
95 );
96
97 if(empty($GLOBALS['installing']) && !file_exists('config.php'))
98 {
99         header('Location: install.php');
100         exit ();
101 }
102
103
104 // config|_override.php
105 if(is_file('config.php')) {
106     require_once('config.php'); // provides $sugar_config
107 }
108 // load up the config_override.php file.  This is used to provide default user settings
109 if(is_file('config_override.php')) {
110         require_once('config_override.php');
111 }
112 if(empty($GLOBALS['installing']) &&empty($sugar_config['dbconfig']['db_host_name']))
113 {
114             header('Location: install.php');
115             exit ();
116 }
117
118 // make sure SugarConfig object is available
119 require_once 'include/SugarObjects/SugarConfig.php';
120
121 ///////////////////////////////////////////////////////////////////////////////
122 ////    DATA SECURITY MEASURES
123 require_once('include/utils.php');
124 clean_special_arguments();
125 clean_incoming_data();
126 ////    END DATA SECURITY MEASURES
127 ///////////////////////////////////////////////////////////////////////////////
128
129 // cn: set php.ini settings at entry points
130 setPhpIniSettings();
131
132 require_once('sugar_version.php'); // provides $sugar_version, $sugar_db_version, $sugar_flavor
133 require_once('include/database/DBManagerFactory.php');
134 require_once('include/dir_inc.php');
135
136 require_once('include/Localization/Localization.php');
137 require_once('include/javascript/jsAlerts.php');
138 require_once('include/TimeDate.php');
139 require_once('include/modules.php'); // provides $moduleList, $beanList, $beanFiles, $modInvisList, $adminOnlyList, $modInvisListActivities
140
141 require('include/utils/autoloader.php');
142 spl_autoload_register(array('SugarAutoLoader', 'autoload'));
143 require_once('data/SugarBean.php');
144 require_once('include/utils/mvc_utils.php');
145 require('include/SugarObjects/LanguageManager.php');
146 require('include/SugarObjects/VardefManager.php');
147
148 require('modules/DynamicFields/templates/Fields/TemplateText.php');
149
150 require_once('include/utils/file_utils.php');
151
152 require_once('include/SugarEmailAddress/SugarEmailAddress.php');
153 require_once('include/SugarLogger/LoggerManager.php');
154 require_once('modules/Trackers/BreadCrumbStack.php');
155 require_once('modules/Trackers/Tracker.php');
156 require_once('modules/Trackers/TrackerManager.php');
157 require_once('modules/ACL/ACLController.php');
158 require_once('modules/Administration/Administration.php');
159 require_once('modules/Administration/updater_utils.php');
160 require_once('modules/Users/User.php');
161 require_once('modules/Users/authentication/AuthenticationController.php');
162 require_once('include/utils/LogicHook.php');
163 require_once('include/SugarTheme/SugarTheme.php');
164 require_once('include/MVC/SugarModule.php');
165 require_once('include/MVC/SugarApplication.php');
166 require('modules/Currencies/Currency.php');
167 //
168 //SugarApplication::startSession();
169
170 ///////////////////////////////////////////////////////////////////////////////
171 ////    Handle loading and instantiation of various Sugar* class
172 if (!defined('SUGAR_PATH')) {
173     define('SUGAR_PATH', realpath(dirname(__FILE__) . '/..'));
174 }
175 require_once SUGAR_PATH . '/include/SugarObjects/SugarRegistry.php';
176 if(empty($GLOBALS['installing'])){
177 ///////////////////////////////////////////////////////////////////////////////
178 ////    SETTING DEFAULT VAR VALUES
179 $GLOBALS['log'] = LoggerManager::getLogger('SugarCRM');
180 $error_notice = '';
181 $use_current_user_login = false;
182 // Allow for the session information to be passed via the URL for printing.
183 if(isset($_GET['PHPSESSID'])){
184     if(!empty($_COOKIE['PHPSESSID']) && strcmp($_GET['PHPSESSID'],$_COOKIE['PHPSESSID']) == 0) {
185         session_id($_REQUEST['PHPSESSID']);
186     }else{
187         unset($_GET['PHPSESSID']);
188     }
189 }
190 if(!empty($sugar_config['session_dir'])) {
191         session_save_path($sugar_config['session_dir']);
192 }
193
194 SugarApplication::preLoadLanguages();
195 $timedate = new TimeDate();
196
197 $GLOBALS['sugar_version'] = $sugar_version;
198 $GLOBALS['sugar_flavor'] = $sugar_flavor;
199 $GLOBALS['timedate'] = $timedate;
200 $GLOBALS['js_version_key'] = md5($GLOBALS['sugar_config']['unique_key'].$GLOBALS['sugar_version'].$GLOBALS['sugar_flavor']);
201
202 $db = DBManagerFactory::getInstance();
203 $db->resetQueryCount();
204 $locale = new Localization();
205
206 // Emails uses the REQUEST_URI later to construct dynamic URLs.
207 // IIS does not pass this field to prevent an error, if it is not set, we will assign it to ''.
208 if (!isset ($_SERVER['REQUEST_URI'])) {
209         $_SERVER['REQUEST_URI'] = '';
210 }
211
212 $current_user = new User();
213 $current_entity = null;
214 $system_config = new Administration();
215 $system_config->retrieveSettings();
216 }
217 ////    END SETTING DEFAULT VAR VALUES
218 ///////////////////////////////////////////////////////////////////////////////
219
220 ?>