forked from WoollyinWalesIT/jomres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
framework.php
255 lines (216 loc) · 6.01 KB
/
framework.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
<?php
/**
* Sets up the Jomres framework.
*
* The REST API is does not have to use the Jomres framework, however it saves time to use the framework and API features can optionally request the framework so make use of already existing functions and classes.
*
* @author Vince Wooll <[email protected]>
*
* @version Jomres 9.14.0
*
* @copyright 2005-2018 Vince Wooll
* Jomres (tm) PHP, CSS & Javascript files are released under both MIT and GPL2 licenses. This means that you can choose the license that best suits your project, and use it accordingly
**/
// ################################################################
defined('_JOMRES_INITCHECK') or die('');
// ################################################################
/**
*
* Setup JOMRES_ROOT_DIRECTORY if it doesn't already exist
*
*/
if (!defined('JOMRES_ROOT_DIRECTORY')) {
if (file_exists(dirname(__FILE__).'/../jomres_root.php')) {
require_once dirname(__FILE__).'/../jomres_root.php';
} else {
define('JOMRES_ROOT_DIRECTORY', 'jomres');
}
}
if (defined('API_STARTED')) {
//we need to include cms specific files
load_cms_environment();
}
require_once dirname(__FILE__).'/integration.php';
//jomres framework
if (!jomres_cmsspecific_areweinadminarea()) {
load_jomres_environment();
}
/**
*
* Include required CMS scripts
*
*/
function load_cms_environment()
{
if (file_exists(dirname(__FILE__).'/../configuration.php')) {
define('JPATH_BASE', dirname(__FILE__).'/../');
require_once JPATH_BASE.'includes/defines.php';
require_once JPATH_BASE.'includes/framework.php';
/* Create the Application */
$app = JFactory::getApplication('site');
} elseif (!defined('WPINC') && file_exists(dirname(__FILE__).'/../wp-load.php')) {
define('WP_USE_THEMES', false);
/** Loads the WordPress Environment */
require_once dirname(__FILE__).'/../wp-load.php';
} else {
die('Could not detect CMS. Exitting.');
}
return true;
}
/**
*
* Setup the Jomres framework for use by functionality that doesn't come directly from the host CMS (e.g. the REST API)
*
*/
function load_jomres_environment()
{
$MiniComponents = jomres_singleton_abstract::getInstance('mcHandler');
/**
*
* site config object
*
*/
$siteConfig = jomres_singleton_abstract::getInstance('jomres_config_site_singleton');
$jrConfig = $siteConfig->get();
/**
*
* get all properties in system.
*
*/
$jomres_properties = jomres_singleton_abstract::getInstance('jomres_properties');
$jomres_properties->get_all_properties();
/**
*
* language object - load default language file for context
*
*/
$jomres_language = jomres_singleton_abstract::getInstance('jomres_language');
$jomres_language->get_language();
/**
*
* custom text object - load all custom text
*
*/
$customTextObj = jomres_singleton_abstract::getInstance('custom_text');
/**
*
* trigger 00001 event
*
*/
$MiniComponents->triggerEvent('00001');
/**
*
* trigger 00002 event
*
*/
$MiniComponents->triggerEvent('00002');
/**
*
* Setup the user object
*
*/
$thisJRUser = jomres_singleton_abstract::getInstance('jr_user');
/**
*
* 00003 trigger point - input filtering
*
*/
$MiniComponents->triggerEvent('00003');
/**
*
* jomres cron object
*
*/
$cron = jomres_singleton_abstract::getInstance('jomres_cron');
if ($cron->method == 'Minicomponent' && !AJAXCALL) {
$cron->triggerJobs();
}
/**
*
* Setup the booking object*
*
* Called the booking object, in reality it is the object that retrieves, holds for use during run, and stores specific user variables plus booking details.
*
*/
$tmpBookingHandler = jomres_singleton_abstract::getInstance('jomres_temp_booking_handler');
/**
*
* Setup the Jomres session
*
*/
if (is_null($tmpBookingHandler->jomressession) || $tmpBookingHandler->jomressession == '') {
$tmpBookingHandler->initBookingSession();
$jomressession = $tmpBookingHandler->getJomressession();
set_showtime('jomressession', $jomressession);
}
/**
*
* currency exchange rates
*
*/
$jomres_currency_exchange_rates = jomres_singleton_abstract::getInstance('jomres_currency_exchange_rates');
/**
*
* set currency code to the appropriate one for the detected location
*
*/
$jomres_geolocation = jomres_singleton_abstract::getInstance('jomres_geolocation');
$jomres_geolocation->auto_set_user_currency_code();
$property_uid = (int) detect_property_uid();
$mrConfig = getPropertySpecificSettings($property_uid);
/**
*
* load property type specific language file
*
*/
if ($property_uid > 0) {
set_showtime('property_uid', $property_uid);
$current_property_details = jomres_singleton_abstract::getInstance('basic_property_details');
$current_property_details->gather_data($property_uid);
//since we have a property uid, we also have a property type, so let`s set a showtime
set_showtime('property_type', $current_property_details->property_type);
set_showtime('ptype_id', $current_property_details->ptype_id);
//load property type specific language file if $property_type is set
$jomres_language->get_language($current_property_details->property_type);
}
if (!AJAXCALL) {
/**
*
* add javascript to head
*
*/
$MiniComponents->triggerEvent('00004');
/**
*
* trigger that sets up Core menu items
*
*/
$MiniComponents->specificEvent('09995', 'menu', array()); //core menu items
}
/**
*
* Set the include_room_booking_functionality showtime variable to a default of true
*
* @todo find a better place
*
*
*/
set_showtime('include_room_booking_functionality', true);
/**
*
* 00005 trigger point
*
* For example, plugins use 00005 trigger point to include language files, setup system variables
*
*/
$MiniComponents->triggerEvent('00005');
/**
*
* 99999 trigger point
*
* Post run "things" to be done.
*
*/
$MiniComponents->triggerEvent('99999', array());
return true;
}