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