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