-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp-settings.php
486 lines (413 loc) · 16.1 KB
/
app-settings.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
<?php
/**
* System settings
*
* Used to set up and fix common variables and include
* the procedural and class library.
*
* Allows for some configuration in the configuration file
* @see app-includes/constants-default.php
*
* @package App_Package
*/
/**
* Class autoloader
*
* @link https://www.php.net/manual/en/language.oop5.autoload.php
*
* @since 1.0.0
*/
require( APP_INC_PATH . '/app-autoloader.php' );
/**
* Get deprecated functions
*
* @todo Review the functions and remove as necessary for
* this copy of the website management system.
*/
require( APP_INC_PATH . '/deprecated.php' );
// Include files required for initialization.
require( APP_INC_PATH . '/load.php' );
require_once( APP_INC_PATH . '/plugin.php' );
/**
* These can't be directly globalized in version.php. When updating,
* we're including version.php from another installation and don't want
* these values to be overridden if already set.
*/
global $app_version, $app_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version, $wp_local_package;
require( APP_INC_PATH . '/version.php' );
/**
* If not already configured, `$blog_id` will default to 1 in a single site
* configuration. In network, it will be overridden by default in network-settings.php.
*
* @global int $blog_id
* @since Previous 2.0.0
*/
global $blog_id;
// Set initial default constants including APP_MEMORY_LIMIT, APP_MAX_MEMORY_LIMIT, APP_DEBUG, SCRIPT_DEBUG, APP_VIEWS_PATH and APP_CACHE.
app_initial_constants();
// Check for the required PHP version and for the MySQL extension or a database drop-in.
wp_check_php_mysql_versions();
// Disable magic quotes at runtime. Magic quotes are added using wpdb later in app-settings.php.
@ini_set( 'magic_quotes_runtime', 0 );
@ini_set( 'magic_quotes_sybase', 0 );
// Calculate offsets from UTC.
date_default_timezone_set( 'UTC' );
// Turn register_globals off.
wp_unregister_GLOBALS();
// Standardize $_SERVER variables across setups.
wp_fix_server_vars();
// Check if we have received a request due to missing favicon.ico
wp_favicon_request();
// Check if we're in maintenance mode.
wp_maintenance();
// Start loading timer.
timer_start();
// Check if we're in APP_DEBUG mode.
app_debug_mode();
/**
* Filters whether to enable loading of the advanced-cache.php drop-in.
*
* This filter runs before it can be used by plugins. It is designed for non-web
* run-times. If false is returned, advanced-cache.php will never be loaded.
*
* @since Previous 4.6.0
*
* @param bool $enable_advanced_cache Whether to enable loading advanced-cache.php (if present).
* Default true.
*/
if ( APP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) ) {
// For an advanced caching plugin to use. Uses a static drop-in because you would only want one.
if ( APP_DEV_MODE || APP_DEBUG ) {
include( APP_VIEWS_PATH . '/advanced-cache.php' );
} else {
@include( APP_VIEWS_PATH . '/advanced-cache.php' );
}
// Re-initialize any hooks added manually by advanced-cache.php.
if ( $wp_filter ) {
$wp_filter = WP_Hook::build_preinitialized_hooks( $wp_filter );
}
}
// Define APP_LANG_PATH if not set.
wp_set_lang_dir();
// Load early files.
require( APP_INC_PATH . '/compat.php' );
require( APP_INC_PATH . '/classes/includes/class-app-list-util.php' );
require( APP_INC_PATH . '/functions.php' );
require( APP_INC_PATH . '/classes/includes/class-app-matchesmapregex.php' );
require( APP_INC_PATH . '/classes/includes/class-system-app.php' );
require( APP_INC_PATH . '/classes/includes/class-app-error.php' );
require( APP_INC_PATH . '/pomo/mo.php' );
// Include the wpdb class and, if present, a db.php database drop-in.
global $wpdb;
require_wp_db();
// Set the database table prefix and the format specifiers for database table columns.
$GLOBALS['table_prefix'] = $table_prefix;
wp_set_wpdb_vars();
// Start the object cache, or an external object cache if the drop-in is present.
wp_start_object_cache();
// Attach the default filters.
require( APP_INC_PATH . '/default-filters.php' );
// Initialize network if enabled.
if ( is_network() ) {
require( APP_INC_PATH . '/classes/includes/class-app-site-query.php' );
require( APP_INC_PATH . '/classes/includes/class-app-network-query.php' );
require( APP_INC_PATH . '/network-blogs.php' );
require( APP_INC_PATH . '/network-settings.php' );
} elseif ( ! defined( 'APP_NETWORK' ) ) {
define( 'APP_NETWORK', false );
}
register_shutdown_function( 'shutdown_action_hook' );
// Stop most of the application from being loaded if we just want the basics.
if ( SHORTINIT ) {
return false;
}
// Load the L10n library.
require_once( APP_INC_PATH . '/l10n.php' );
require_once( APP_INC_PATH . '/classes/includes/class-app-locale.php' );
require_once( APP_INC_PATH . '/classes/includes/class-app-locale-switcher.php' );
// Run the installer if the application is not installed.
app_not_installed();
// Load most of the application.
require( APP_INC_PATH . '/classes/includes/class-app-ajax-response.php' );
require( APP_INC_PATH . '/formatting.php' );
require( APP_INC_PATH . '/capabilities.php' );
require( APP_INC_PATH . '/classes/includes/class-app-roles.php' );
require( APP_INC_PATH . '/classes/includes/class-app-role.php' );
require( APP_INC_PATH . '/classes/includes/class-app-user.php' );
require( APP_INC_PATH . '/classes/includes/class-app-query.php' );
require( APP_INC_PATH . '/query.php' );
require( APP_INC_PATH . '/date.php' );
require( APP_INC_PATH . '/theme.php' );
require( APP_INC_PATH . '/classes/includes/class-app-theme.php' );
require( APP_INC_PATH . '/template.php' );
require( APP_INC_PATH . '/user.php' );
require( APP_INC_PATH . '/classes/includes/class-app-user-query.php' );
require( APP_INC_PATH . '/classes/includes/class-app-session-tokens.php' );
require( APP_INC_PATH . '/classes/includes/class-app-user-meta-session-tokens.php' );
require( APP_INC_PATH . '/meta.php' );
require( APP_INC_PATH . '/classes/includes/class-app-meta-query.php' );
require( APP_INC_PATH . '/classes/includes/class-app-metadata-lazyloader.php' );
require( APP_INC_PATH . '/general-template.php' );
require( APP_INC_PATH . '/link-template.php' );
require( APP_INC_PATH . '/author-template.php' );
require( APP_INC_PATH . '/post.php' );
require( APP_INC_PATH . '/classes/includes/class-walker-page-dropdown.php' );
require( APP_INC_PATH . '/classes/includes/class-app-post-type.php' );
require( APP_INC_PATH . '/classes/includes/class-app-post.php' );
require( APP_INC_PATH . '/post-template.php' );
require( APP_INC_PATH . '/revision.php' );
require( APP_INC_PATH . '/post-formats.php' );
require( APP_INC_PATH . '/post-thumbnail-template.php' );
require( APP_INC_PATH . '/category.php' );
require( APP_INC_PATH . '/category-template.php' );
require( APP_INC_PATH . '/comment.php' );
require( APP_INC_PATH . '/classes/includes/class-app-comment.php' );
require( APP_INC_PATH . '/classes/includes/class-app-comment-query.php' );
require( APP_INC_PATH . '/classes/includes/class-walker-comment.php' );
require( APP_INC_PATH . '/comment-template.php' );
require( APP_INC_PATH . '/rewrite.php' );
require( APP_INC_PATH . '/classes/includes/class-app-rewrite.php' );
require( APP_INC_PATH . '/feed.php' );
require( APP_INC_PATH . '/bookmark.php' );
require( APP_INC_PATH . '/bookmark-template.php' );
require( APP_INC_PATH . '/kses.php' );
require( APP_INC_PATH . '/cron.php' );
require( APP_INC_PATH . '/script-loader.php' );
require( APP_INC_PATH . '/taxonomy.php' );
require( APP_INC_PATH . '/classes/includes/class-app-taxonomy.php' );
require( APP_INC_PATH . '/classes/includes/class-app-term.php' );
require( APP_INC_PATH . '/classes/includes/class-app-term-query.php' );
require( APP_INC_PATH . '/classes/includes/class-app-tax-query.php' );
require( APP_INC_PATH . '/update.php' );
require( APP_INC_PATH . '/canonical.php' );
require( APP_INC_PATH . '/shortcodes.php' );
require( APP_INC_PATH . '/embed.php' );
require( APP_INC_PATH . '/classes/includes/class-app-embed.php' );
require( APP_INC_PATH . '/classes/includes/class-oembed.php' );
require( APP_INC_PATH . '/classes/includes/class-app-oembed-controller.php' );
require( APP_INC_PATH . '/media.php' );
require( APP_INC_PATH . '/http.php' );
require( APP_INC_PATH . '/classes/includes/class-http.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-streams.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-curl.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-proxy.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-cookie.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-encoding.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-response.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-requests-response.php' );
require( APP_INC_PATH . '/classes/includes/class-app-http-requests-hooks.php' );
require( APP_INC_PATH . '/widgets.php' );
require( APP_INC_PATH . '/classes/includes/class-app-widget.php' );
require( APP_INC_PATH . '/classes/includes/class-app-widget-factory.php' );
require( APP_INC_PATH . '/nav-menu.php' );
require( APP_INC_PATH . '/nav-menu-template.php' );
require( APP_VIEWS_PATH . '/includes/user-toolbar.php' );
require( APP_INC_PATH . '/rest-api.php' );
require( APP_INC_PATH . '/rest-api/class-wp-rest-server.php' );
require( APP_INC_PATH . '/rest-api/class-wp-rest-response.php' );
require( APP_INC_PATH . '/rest-api/class-wp-rest-request.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-posts-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-attachments-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-post-types-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-post-statuses-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-revisions-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-taxonomies-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-terms-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-users-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-comments-controller.php' );
require( APP_INC_PATH . '/rest-api/endpoints/class-wp-rest-settings-controller.php' );
require( APP_INC_PATH . '/rest-api/fields/class-wp-rest-meta-fields.php' );
require( APP_INC_PATH . '/rest-api/fields/class-wp-rest-comment-meta-fields.php' );
require( APP_INC_PATH . '/rest-api/fields/class-wp-rest-post-meta-fields.php' );
require( APP_INC_PATH . '/rest-api/fields/class-wp-rest-term-meta-fields.php' );
require( APP_INC_PATH . '/rest-api/fields/class-wp-rest-user-meta-fields.php' );
$GLOBALS['wp_embed'] = new WP_Embed();
// Load network-specific files.
if ( is_network() ) {
require( APP_INC_PATH . '/network-functions.php' );
require( APP_INC_PATH . '/network-default-filters.php' );
require( APP_INC_PATH . '/network-deprecated.php' );
}
$GLOBALS['wp_plugin_paths'] = [];
// Load must-use plugins.
foreach ( wp_get_mu_plugins() as $mu_plugin ) {
include_once( $mu_plugin );
}
unset( $mu_plugin );
// Load network activated plugins.
if ( is_network() ) {
foreach ( wp_get_active_network_plugins() as $network_plugin ) {
wp_register_plugin_realpath( $network_plugin );
include_once( $network_plugin );
}
unset( $network_plugin );
}
// Fires once all must-use and network-activated plugins have loaded.
do_action( 'muplugins_loaded' );
if ( is_network() ) {
ms_cookie_constants();
}
// Define constants after network is loaded.
app_cookie_constants();
// Define and enforce our SSL constants.
app_ssl_constants();
// Create common globals.
require( APP_INC_PATH . '/vars.php' );
/**
* Make taxonomies and posts available to plugins and themes.
*
* Plugin authors: warning, these get registered again on the init hook.
*/
create_initial_taxonomies();
create_initial_post_types();
wp_start_scraping_edited_file_errors();
// Register the default theme directory root.
register_theme_directory( get_theme_root() );
// Load active plugins.
foreach ( wp_get_active_and_valid_plugins() as $plugin ) {
wp_register_plugin_realpath( $plugin );
include_once( $plugin );
}
unset( $plugin );
// Load pluggable functions.
require( APP_INC_PATH . '/pluggable.php' );
require( APP_INC_PATH . '/pluggable-deprecated.php' );
// Set internal encoding.
wp_set_internal_encoding();
// Run wp_cache_postload() if object cache is enabled and the function exists.
if ( APP_CACHE && function_exists( 'wp_cache_postload' ) ) {
wp_cache_postload();
}
/**
* Fires once activated plugins have loaded.
*
* Pluggable functions are also available at this point in the loading order.
*
* @since Previous 1.5.0
*/
do_action( 'plugins_loaded' );
// Define constants which affect functionality if not already defined.
app_functionality_constants();
// Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
wp_magic_quotes();
/**
* Fires when comment cookies are sanitized.
*
* @since Previous 2.0.11
*/
do_action( 'sanitize_comment_cookies' );
/**
* Query object
* @global WP_Query $wp_the_query
* @since Previous 2.0.0
*/
$GLOBALS['wp_the_query'] = new WP_Query();
/**
* Holds the reference to @see $wp_the_query
* Use this global for queries
* @global WP_Query $wp_query
* @since Previous 1.5.0
*/
$GLOBALS['wp_query'] = $GLOBALS['wp_the_query'];
/**
* Holds the Rewrite object for creating pretty URLs
* @global WP_Rewrite $wp_rewrite
* @since Previous 1.5.0
*/
$GLOBALS['wp_rewrite'] = new WP_Rewrite();
/**
* Object
* @global WP $wp
* @since Previous 2.0.0
*/
$GLOBALS['wp'] = new System_App();
/**
* Widget Factory Object
* @global WP_Widget_Factory $wp_widget_factory
* @since Previous 2.8.0
*/
$GLOBALS['wp_widget_factory'] = new WP_Widget_Factory();
/**
* User Roles
* @global WP_Roles $wp_roles
* @since Previous 2.0.0
*/
$GLOBALS['wp_roles'] = new WP_Roles();
/**
* Fires before the theme is loaded.
*
* @since Previous 2.6.0
*/
do_action( 'setup_theme' );
// Define the template related constants.
app_templating_constants( );
// Load the default text localization domain.
load_default_textdomain();
$locale = get_locale();
$locale_file = APP_LANG_PATH . "/$locale.php";
if ( ( 0 === validate_file( $locale ) ) && is_readable( $locale_file ) ) {
require( $locale_file );
}
unset( $locale_file );
/**
* Locale object for loading locale domain date and various strings.
* @global WP_Locale $wp_locale
* @since Previous 2.1.0
*/
$GLOBALS['wp_locale'] = new WP_Locale();
/**
* Locale Switcher object for switching locales.
*
* @since Previous 4.7.0
*
* @global WP_Locale_Switcher $wp_locale_switcher locale switcher object.
*/
$GLOBALS['wp_locale_switcher'] = new WP_Locale_Switcher();
$GLOBALS['wp_locale_switcher']->init();
// Load the functions for the active theme, for both parent and child theme if applicable.
if ( ! wp_installing() || 'app-activate.php' === $pagenow ) {
if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) ) {
include( STYLESHEETPATH . '/functions.php' );
}
if ( file_exists( TEMPLATEPATH . '/functions.php' ) ) {
include( TEMPLATEPATH . '/functions.php' );
}
}
/**
* Fires after the theme is loaded.
*
* @since Previous 3.0.0
*/
do_action( 'after_setup_theme' );
// Set up current user.
$GLOBALS['wp']->init();
/**
* Fires after the application has finished loading but before any headers are sent.
*
* Most of WP is loaded at this stage, and the user is authenticated. WP continues
* to load on the {@see 'init'} hook that follows (e.g. widgets), and many plugins instantiate
* themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.).
*
* If you wish to plug an action once WP is loaded, use the {@see 'wp_loaded'} hook below.
*
* @since Previous 1.5.0
*/
do_action( 'init' );
// Check site status
if ( is_network() ) {
if ( true !== ( $file = ms_site_check() ) ) {
require( $file );
die();
}
unset( $file );
}
/**
* This hook is fired once WP, all plugins, and the theme are fully loaded and instantiated.
*
* Ajax requests should use APP_ADMIN_DIR/admin-ajax.php. admin-ajax.php can handle requests for
* users not logged in.
*
* @since Previous 3.0.0
*/
do_action( 'wp_loaded' );