]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/load.php
WordPress 3.3.2
[autoinstalls/wordpress.git] / wp-includes / load.php
1 <?php
2 /**
3  * These functions are needed to load WordPress.
4  *
5  * @internal This file must be parsable by PHP4.
6  *
7  * @package WordPress
8  */
9
10 /**
11  * Turn register globals off.
12  *
13  * @access private
14  * @since 2.1.0
15  * @return null Will return null if register_globals PHP directive was disabled
16  */
17 function wp_unregister_GLOBALS() {
18         if ( !ini_get( 'register_globals' ) )
19                 return;
20
21         if ( isset( $_REQUEST['GLOBALS'] ) )
22                 die( /*WP_I18N_GLOBALS_OVERWRITE*/'GLOBALS overwrite attempt detected'/*/WP_I18N_GLOBALS_OVERWRITE*/ );
23
24         // Variables that shouldn't be unset
25         $no_unset = array( 'GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix' );
26
27         $input = array_merge( $_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset( $_SESSION ) && is_array( $_SESSION ) ? $_SESSION : array() );
28         foreach ( $input as $k => $v )
29                 if ( !in_array( $k, $no_unset ) && isset( $GLOBALS[$k] ) ) {
30                         $GLOBALS[$k] = null;
31                         unset( $GLOBALS[$k] );
32                 }
33 }
34
35 /**
36  * Fix $_SERVER variables for various setups.
37  *
38  * @access private
39  * @since 3.0.0
40  */
41 function wp_fix_server_vars() {
42         global $PHP_SELF;
43
44         $default_server_values = array(
45                 'SERVER_SOFTWARE' => '',
46                 'REQUEST_URI' => '',
47         );
48
49         $_SERVER = array_merge( $default_server_values, $_SERVER );
50
51         // Fix for IIS when running with PHP ISAPI
52         if ( empty( $_SERVER['REQUEST_URI'] ) || ( php_sapi_name() != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
53
54                 // IIS Mod-Rewrite
55                 if ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
56                         $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
57                 }
58                 // IIS Isapi_Rewrite
59                 else if ( isset( $_SERVER['HTTP_X_REWRITE_URL'] ) ) {
60                         $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
61                 } else {
62                         // Use ORIG_PATH_INFO if there is no PATH_INFO
63                         if ( !isset( $_SERVER['PATH_INFO'] ) && isset( $_SERVER['ORIG_PATH_INFO'] ) )
64                                 $_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];
65
66                         // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
67                         if ( isset( $_SERVER['PATH_INFO'] ) ) {
68                                 if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
69                                         $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
70                                 else
71                                         $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];
72                         }
73
74                         // Append the query string if it exists and isn't null
75                         if ( ! empty( $_SERVER['QUERY_STRING'] ) ) {
76                                 $_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
77                         }
78                 }
79         }
80
81         // Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
82         if ( isset( $_SERVER['SCRIPT_FILENAME'] ) && ( strpos( $_SERVER['SCRIPT_FILENAME'], 'php.cgi' ) == strlen( $_SERVER['SCRIPT_FILENAME'] ) - 7 ) )
83                 $_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
84
85         // Fix for Dreamhost and other PHP as CGI hosts
86         if ( strpos( $_SERVER['SCRIPT_NAME'], 'php.cgi' ) !== false )
87                 unset( $_SERVER['PATH_INFO'] );
88
89         // Fix empty PHP_SELF
90         $PHP_SELF = $_SERVER['PHP_SELF'];
91         if ( empty( $PHP_SELF ) )
92                 $_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace( '/(\?.*)?$/', '', $_SERVER["REQUEST_URI"] );
93 }
94
95 /**
96  * Check for the required PHP version, and the MySQL extension or a database drop-in.
97  *
98  * Dies if requirements are not met.
99  *
100  * This function must be able to work without a complete environment set up. In wp-load.php, for
101  * example, WP_CONTENT_DIR is defined and version.php is included before this function is called.
102  *
103  * @access private
104  * @since 3.0.0
105  */
106 function wp_check_php_mysql_versions() {
107         // we can probably extend this function to check if wp_die() exists then use translated strings, and then use it in install.php etc.
108
109         global $required_php_version, $wp_version;
110         $php_version = phpversion();
111         if ( version_compare( $required_php_version, $php_version, '>' ) )
112                 die( sprintf( /*WP_I18N_OLD_PHP*/'Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s.'/*/WP_I18N_OLD_PHP*/, $php_version, $wp_version, $required_php_version ) );
113
114         if ( !extension_loaded( 'mysql' ) && !file_exists( WP_CONTENT_DIR . '/db.php' ) )
115                 die( /*WP_I18N_OLD_MYSQL*/'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.'/*/WP_I18N_OLD_MYSQL*/ );
116 }
117
118 /**
119  * Don't load all of WordPress when handling a favicon.ico request.
120  * Instead, send the headers for a zero-length favicon and bail.
121  *
122  * @since 3.0.0
123  */
124 function wp_favicon_request() {
125         if ( '/favicon.ico' == $_SERVER['REQUEST_URI'] ) {
126                 header('Content-Type: image/vnd.microsoft.icon');
127                 header('Content-Length: 0');
128                 exit;
129         }
130 }
131
132 /**
133  * Dies with a maintenance message when conditions are met.
134  *
135  * Checks for a file in the WordPress root directory named ".maintenance".
136  * This file will contain the variable $upgrading, set to the time the file
137  * was created. If the file was created less than 10 minutes ago, WordPress
138  * enters maintenance mode and displays a message.
139  *
140  * The default message can be replaced by using a drop-in (maintenance.php in
141  * the wp-content directory).
142  *
143  * @access private
144  * @since 3.0.0
145  */
146 function wp_maintenance() {
147         if ( !file_exists( ABSPATH . '.maintenance' ) || defined( 'WP_INSTALLING' ) )
148                 return;
149
150         global $upgrading;
151
152         include( ABSPATH . '.maintenance' );
153         // If the $upgrading timestamp is older than 10 minutes, don't die.
154         if ( ( time() - $upgrading ) >= 600 )
155                 return;
156
157         if ( file_exists( WP_CONTENT_DIR . '/maintenance.php' ) ) {
158                 require_once( WP_CONTENT_DIR . '/maintenance.php' );
159                 die();
160         }
161
162         $protocol = $_SERVER["SERVER_PROTOCOL"];
163         if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
164                 $protocol = 'HTTP/1.0';
165         header( "$protocol 503 Service Unavailable", true, 503 );
166         header( 'Content-Type: text/html; charset=utf-8' );
167         header( 'Retry-After: 600' );
168 ?>
169         <!DOCTYPE html>
170         <html xmlns="http://www.w3.org/1999/xhtml">
171         <head>
172         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
173                 <title><?php echo /*WP_I18N_MAINTENANCE*/'Maintenance'/*/WP_I18N_MAINTENANCE*/; ?></title>
174
175         </head>
176         <body>
177                 <h1><?php echo /*WP_I18N_MAINT_MSG*/'Briefly unavailable for scheduled maintenance. Check back in a minute.'/*/WP_I18N_MAINT_MSG*/; ?></h1>
178         </body>
179         </html>
180 <?php
181         die();
182 }
183
184 /**
185  * PHP 4 standard microtime start capture.
186  *
187  * @access private
188  * @since 0.71
189  * @global int $timestart Seconds and microseconds added together from when function is called.
190  * @return bool Always returns true.
191  */
192 function timer_start() {
193         global $timestart;
194         $mtime = explode( ' ', microtime() );
195         $timestart = $mtime[1] + $mtime[0];
196         return true;
197 }
198
199 /**
200  * Return and/or display the time from the page start to when function is called.
201  *
202  * You can get the results and print them by doing:
203  * <code>
204  * $nTimePageTookToExecute = timer_stop();
205  * echo $nTimePageTookToExecute;
206  * </code>
207  *
208  * Or instead, you can do:
209  * <code>
210  * timer_stop(1);
211  * </code>
212  * which will do what the above does. If you need the result, you can assign it to a variable, but
213  * in most cases, you only need to echo it.
214  *
215  * @since 0.71
216  * @global int $timestart Seconds and microseconds added together from when timer_start() is called
217  * @global int $timeend Seconds and microseconds added together from when function is called
218  *
219  * @param int $display Use '0' or null to not echo anything and 1 to echo the total time
220  * @param int $precision The amount of digits from the right of the decimal to display. Default is 3.
221  * @return float The "second.microsecond" finished time calculation
222  */
223 function timer_stop( $display = 0, $precision = 3 ) { // if called like timer_stop(1), will echo $timetotal
224         global $timestart, $timeend;
225         $mtime = microtime();
226         $mtime = explode( ' ', $mtime );
227         $timeend = $mtime[1] + $mtime[0];
228         $timetotal = $timeend - $timestart;
229         $r = ( function_exists( 'number_format_i18n' ) ) ? number_format_i18n( $timetotal, $precision ) : number_format( $timetotal, $precision );
230         if ( $display )
231                 echo $r;
232         return $r;
233 }
234
235 /**
236  * Sets PHP error handling and handles WordPress debug mode.
237  *
238  * Uses three constants: WP_DEBUG, WP_DEBUG_DISPLAY, and WP_DEBUG_LOG. All three can be
239  * defined in wp-config.php. Example: <code> define( 'WP_DEBUG', true ); </code>
240  *
241  * WP_DEBUG_DISPLAY and WP_DEBUG_LOG perform no function unless WP_DEBUG is true.
242  * WP_DEBUG defaults to false.
243  *
244  * When WP_DEBUG is true, all PHP notices are reported. WordPress will also display
245  * notices, including one when a deprecated WordPress function, function argument,
246  * or file is used. Deprecated code may be removed from a later version.
247  *
248  * It is strongly recommended that plugin and theme developers use WP_DEBUG in their
249  * development environments.
250  *
251  * When WP_DEBUG_DISPLAY is true, WordPress will force errors to be displayed.
252  * WP_DEBUG_DISPLAY defaults to true. Defining it as null prevents WordPress from
253  * changing the global configuration setting. Defining WP_DEBUG_DISPLAY as false
254  * will force errors to be hidden.
255  *
256  * When WP_DEBUG_LOG is true, errors will be logged to wp-content/debug.log.
257  * WP_DEBUG_LOG defaults to false.
258  *
259  * @access private
260  * @since 3.0.0
261  */
262 function wp_debug_mode() {
263         if ( WP_DEBUG ) {
264                 // E_DEPRECATED is a core PHP constant in PHP 5.3. Don't define this yourself.
265                 // The two statements are equivalent, just one is for 5.3+ and for less than 5.3.
266                 if ( defined( 'E_DEPRECATED' ) )
267                         error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
268                 else
269                         error_reporting( E_ALL );
270
271                 if ( WP_DEBUG_DISPLAY )
272                         ini_set( 'display_errors', 1 );
273                 elseif ( null !== WP_DEBUG_DISPLAY )
274                         ini_set( 'display_errors', 0 );
275
276                 if ( WP_DEBUG_LOG ) {
277                         ini_set( 'log_errors', 1 );
278                         ini_set( 'error_log', WP_CONTENT_DIR . '/debug.log' );
279                 }
280         } else {
281                 error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
282         }
283 }
284
285 /**
286  * Sets the location of the language directory.
287  *
288  * To set directory manually, define <code>WP_LANG_DIR</code> in wp-config.php.
289  *
290  * If the language directory exists within WP_CONTENT_DIR, that is used.
291  * Otherwise if the language directory exists within WPINC, that's used.
292  * Finally, if neither of the preceding directories are found,
293  * WP_CONTENT_DIR/languages is used.
294  *
295  * The WP_LANG_DIR constant was introduced in 2.1.0.
296  *
297  * @access private
298  * @since 3.0.0
299  */
300 function wp_set_lang_dir() {
301         if ( !defined( 'WP_LANG_DIR' ) ) {
302                 if ( file_exists( WP_CONTENT_DIR . '/languages' ) && @is_dir( WP_CONTENT_DIR . '/languages' ) || !@is_dir(ABSPATH . WPINC . '/languages') ) {
303                         define( 'WP_LANG_DIR', WP_CONTENT_DIR . '/languages' ); // no leading slash, no trailing slash, full path, not relative to ABSPATH
304                         if ( !defined( 'LANGDIR' ) ) {
305                                 // Old static relative path maintained for limited backwards compatibility - won't work in some cases
306                                 define( 'LANGDIR', 'wp-content/languages' );
307                         }
308                 } else {
309                         define( 'WP_LANG_DIR', ABSPATH . WPINC . '/languages' ); // no leading slash, no trailing slash, full path, not relative to ABSPATH
310                         if ( !defined( 'LANGDIR' ) ) {
311                                 // Old relative path maintained for backwards compatibility
312                                 define( 'LANGDIR', WPINC . '/languages' );
313                         }
314                 }
315         }
316 }
317
318 /**
319  * Load the correct database class file.
320  *
321  * This function is used to load the database class file either at runtime or by
322  * wp-admin/setup-config.php. We must globalize $wpdb to ensure that it is
323  * defined globally by the inline code in wp-db.php.
324  *
325  * @since 2.5.0
326  * @global $wpdb WordPress Database Object
327  */
328 function require_wp_db() {
329         global $wpdb;
330
331         require_once( ABSPATH . WPINC . '/wp-db.php' );
332         if ( file_exists( WP_CONTENT_DIR . '/db.php' ) )
333                 require_once( WP_CONTENT_DIR . '/db.php' );
334
335         if ( isset( $wpdb ) )
336                 return;
337
338         $wpdb = new wpdb( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );
339 }
340
341 /**
342  * Sets the database table prefix and the format specifiers for database table columns.
343  *
344  * Columns not listed here default to %s.
345  *
346  * @see wpdb::$field_types Since 2.8.0
347  * @see wpdb::prepare()
348  * @see wpdb::insert()
349  * @see wpdb::update()
350  * @see wpdb::set_prefix()
351  *
352  * @access private
353  * @since 3.0.0
354  */
355 function wp_set_wpdb_vars() {
356         global $wpdb, $table_prefix;
357         if ( !empty( $wpdb->error ) )
358                 dead_db();
359
360         $wpdb->field_types = array( 'post_author' => '%d', 'post_parent' => '%d', 'menu_order' => '%d', 'term_id' => '%d', 'term_group' => '%d', 'term_taxonomy_id' => '%d',
361                 'parent' => '%d', 'count' => '%d','object_id' => '%d', 'term_order' => '%d', 'ID' => '%d', 'commment_ID' => '%d', 'comment_post_ID' => '%d', 'comment_parent' => '%d',
362                 'user_id' => '%d', 'link_id' => '%d', 'link_owner' => '%d', 'link_rating' => '%d', 'option_id' => '%d', 'blog_id' => '%d', 'meta_id' => '%d', 'post_id' => '%d',
363                 'user_status' => '%d', 'umeta_id' => '%d', 'comment_karma' => '%d', 'comment_count' => '%d',
364                 // multisite:
365                 'active' => '%d', 'cat_id' => '%d', 'deleted' => '%d', 'lang_id' => '%d', 'mature' => '%d', 'public' => '%d', 'site_id' => '%d', 'spam' => '%d',
366         );
367
368         $prefix = $wpdb->set_prefix( $table_prefix );
369
370         if ( is_wp_error( $prefix ) )
371                 wp_die( /*WP_I18N_BAD_PREFIX*/'<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.'/*/WP_I18N_BAD_PREFIX*/ );
372 }
373
374 /**
375  * Starts the WordPress object cache.
376  *
377  * If an object-cache.php file exists in the wp-content directory,
378  * it uses that drop-in as an external object cache.
379  *
380  * @access private
381  * @since 3.0.0
382  */
383 function wp_start_object_cache() {
384         global $_wp_using_ext_object_cache;
385
386         $first_init = false;
387         if ( ! function_exists( 'wp_cache_init' ) ) {
388                 if ( file_exists( WP_CONTENT_DIR . '/object-cache.php' ) ) {
389                         require_once ( WP_CONTENT_DIR . '/object-cache.php' );
390                         $_wp_using_ext_object_cache = true;
391                 } else {
392                         require_once ( ABSPATH . WPINC . '/cache.php' );
393                         $_wp_using_ext_object_cache = false;
394                 }
395                 $first_init = true;
396         } else if ( !$_wp_using_ext_object_cache && file_exists( WP_CONTENT_DIR . '/object-cache.php' ) ) {
397                 // Sometimes advanced-cache.php can load object-cache.php before it is loaded here.
398                 // This breaks the function_exists check above and can result in $_wp_using_ext_object_cache
399                 // being set incorrectly. Double check if an external cache exists.
400                 $_wp_using_ext_object_cache = true;
401         }
402
403         // If cache supports reset, reset instead of init if already initialized.
404         // Reset signals to the cache that global IDs have changed and it may need to update keys
405         // and cleanup caches.
406         if ( !$first_init && function_exists('wp_cache_reset') )
407                 wp_cache_reset();
408         else
409                 wp_cache_init();
410
411         if ( function_exists( 'wp_cache_add_global_groups' ) ) {
412                 wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss', 'global-posts' ) );
413                 wp_cache_add_non_persistent_groups( array( 'comment', 'counts', 'plugins' ) );
414         }
415 }
416
417 /**
418  * Redirects to the installer if WordPress is not installed.
419  *
420  * Dies with an error message when multisite is enabled.
421  *
422  * @access private
423  * @since 3.0.0
424  */
425 function wp_not_installed() {
426         if ( is_multisite() ) {
427                 if ( ! is_blog_installed() && ! defined( 'WP_INSTALLING' ) )
428                         wp_die( __( 'The site you have requested is not installed properly. Please contact the system administrator.' ) );
429         } elseif ( ! is_blog_installed() && false === strpos( $_SERVER['PHP_SELF'], 'install.php' ) && !defined( 'WP_INSTALLING' ) ) {
430
431                 $link = wp_guess_url() . '/wp-admin/install.php';
432
433                 require( ABSPATH . WPINC . '/kses.php' );
434                 require( ABSPATH . WPINC . '/pluggable.php' );
435                 require( ABSPATH . WPINC . '/formatting.php' );
436                 wp_redirect( $link );
437                 die();
438         }
439 }
440
441 /**
442  * Returns array of must-use plugin files to be included in global scope.
443  *
444  * The default directory is wp-content/mu-plugins. To change the default directory
445  * manually, define <code>WPMU_PLUGIN_DIR</code> and <code>WPMU_PLUGIN_URL</code>
446  * in wp-config.php.
447  *
448  * @access private
449  * @since 3.0.0
450  * @return array Files to include
451  */
452 function wp_get_mu_plugins() {
453         $mu_plugins = array();
454         if ( !is_dir( WPMU_PLUGIN_DIR ) )
455                 return $mu_plugins;
456         if ( ! $dh = opendir( WPMU_PLUGIN_DIR ) )
457                 return $mu_plugins;
458         while ( ( $plugin = readdir( $dh ) ) !== false ) {
459                 if ( substr( $plugin, -4 ) == '.php' )
460                         $mu_plugins[] = WPMU_PLUGIN_DIR . '/' . $plugin;
461         }
462         closedir( $dh );
463         sort( $mu_plugins );
464
465         return $mu_plugins;
466 }
467
468 /**
469  * Returns array of plugin files to be included in global scope.
470  *
471  * The default directory is wp-content/plugins. To change the default directory
472  * manually, define <code>WP_PLUGIN_DIR</code> and <code>WP_PLUGIN_URL</code>
473  * in wp-config.php.
474  *
475  * @access private
476  * @since 3.0.0
477  * @return array Files to include
478  */
479 function wp_get_active_and_valid_plugins() {
480         $plugins = array();
481         $active_plugins = (array) get_option( 'active_plugins', array() );
482
483         // Check for hacks file if the option is enabled
484         if ( get_option( 'hack_file' ) && file_exists( ABSPATH . 'my-hacks.php' ) ) {
485                 _deprecated_file( 'my-hacks.php', '1.5' );
486                 array_unshift( $plugins, ABSPATH . 'my-hacks.php' );
487         }
488
489         if ( empty( $active_plugins ) || defined( 'WP_INSTALLING' ) )
490                 return $plugins;
491
492         $network_plugins = is_multisite() ? wp_get_active_network_plugins() : false;
493
494         foreach ( $active_plugins as $plugin ) {
495                 if ( ! validate_file( $plugin ) // $plugin must validate as file
496                         && '.php' == substr( $plugin, -4 ) // $plugin must end with '.php'
497                         && file_exists( WP_PLUGIN_DIR . '/' . $plugin ) // $plugin must exist
498                         // not already included as a network plugin
499                         && ( ! $network_plugins || ! in_array( WP_PLUGIN_DIR . '/' . $plugin, $network_plugins ) )
500                         )
501                 $plugins[] = WP_PLUGIN_DIR . '/' . $plugin;
502         }
503         return $plugins;
504 }
505
506 /**
507  * Sets internal encoding using mb_internal_encoding().
508  *
509  * In most cases the default internal encoding is latin1, which is of no use,
510  * since we want to use the mb_ functions for utf-8 strings.
511  *
512  * @access private
513  * @since 3.0.0
514  */
515 function wp_set_internal_encoding() {
516         if ( function_exists( 'mb_internal_encoding' ) ) {
517                 if ( !@mb_internal_encoding( get_option( 'blog_charset' ) ) )
518                         mb_internal_encoding( 'UTF-8' );
519         }
520 }
521
522 /**
523  * Add magic quotes to $_GET, $_POST, $_COOKIE, and $_SERVER.
524  *
525  * Also forces $_REQUEST to be $_GET + $_POST. If $_SERVER, $_COOKIE,
526  * or $_ENV are needed, use those superglobals directly.
527  *
528  * @access private
529  * @since 3.0.0
530  */
531 function wp_magic_quotes() {
532         // If already slashed, strip.
533         if ( get_magic_quotes_gpc() ) {
534                 $_GET    = stripslashes_deep( $_GET    );
535                 $_POST   = stripslashes_deep( $_POST   );
536                 $_COOKIE = stripslashes_deep( $_COOKIE );
537         }
538
539         // Escape with wpdb.
540         $_GET    = add_magic_quotes( $_GET    );
541         $_POST   = add_magic_quotes( $_POST   );
542         $_COOKIE = add_magic_quotes( $_COOKIE );
543         $_SERVER = add_magic_quotes( $_SERVER );
544
545         // Force REQUEST to be GET + POST.
546         $_REQUEST = array_merge( $_GET, $_POST );
547 }
548
549 /**
550  * Runs just before PHP shuts down execution.
551  *
552  * @access private
553  * @since 1.2.0
554  */
555 function shutdown_action_hook() {
556         do_action( 'shutdown' );
557         wp_cache_close();
558 }
559
560 /**
561  * Copy an object.
562  *
563  * @since 2.7.0
564  * @deprecated 3.2
565  *
566  * @param object $object The object to clone
567  * @return object The cloned object
568  */
569
570 function wp_clone( $object ) {
571         // Use parens for clone to accommodate PHP 4.  See #17880
572         return clone( $object );
573 }
574
575 /**
576  * Whether the current request is for a network or blog admin page
577  *
578  * Does not inform on whether the user is an admin! Use capability checks to
579  * tell if the user should be accessing a section or not.
580  *
581  * @since 1.5.1
582  *
583  * @return bool True if inside WordPress administration pages.
584  */
585 function is_admin() {
586         if ( defined( 'WP_ADMIN' ) )
587                 return WP_ADMIN;
588         return false;
589 }
590
591 /**
592  * Whether the current request is for a blog admin screen /wp-admin/
593  *
594  * Does not inform on whether the user is a blog admin! Use capability checks to
595  * tell if the user should be accessing a section or not.
596  *
597  * @since 3.1.0
598  *
599  * @return bool True if inside WordPress network administration pages.
600  */
601 function is_blog_admin() {
602         if ( defined( 'WP_BLOG_ADMIN' ) )
603                 return WP_BLOG_ADMIN;
604         return false;
605 }
606
607 /**
608  * Whether the current request is for a network admin screen /wp-admin/network/
609  *
610  * Does not inform on whether the user is a network admin! Use capability checks to
611  * tell if the user should be accessing a section or not.
612  *
613  * @since 3.1.0
614  *
615  * @return bool True if inside WordPress network administration pages.
616  */
617 function is_network_admin() {
618         if ( defined( 'WP_NETWORK_ADMIN' ) )
619                 return WP_NETWORK_ADMIN;
620         return false;
621 }
622
623 /**
624  * Whether the current request is for a user admin screen /wp-admin/user/
625  *
626  * Does not inform on whether the user is an admin! Use capability checks to
627  * tell if the user should be accessing a section or not.
628  *
629  * @since 3.1.0
630  *
631  * @return bool True if inside WordPress user administration pages.
632  */
633 function is_user_admin() {
634         if ( defined( 'WP_USER_ADMIN' ) )
635                 return WP_USER_ADMIN;
636         return false;
637 }
638
639 /**
640  * Whether Multisite support is enabled
641  *
642  * @since 3.0.0
643  *
644  * @return bool True if multisite is enabled, false otherwise.
645  */
646 function is_multisite() {
647         if ( defined( 'MULTISITE' ) )
648                 return MULTISITE;
649
650         if ( defined( 'SUBDOMAIN_INSTALL' ) || defined( 'VHOST' ) || defined( 'SUNRISE' ) )
651                 return true;
652
653         return false;
654 }
655
656 ?>