2003-04-21 21:37:11 +00:00
<? php
2008-06-15 09:38:32 +00:00
/**
* Main WordPress API
*
* @package WordPress
*/
2003-04-21 21:37:11 +00:00
2016-08-31 15:24:29 +00:00
require ( ABSPATH . WPINC . '/option.php' );
2008-06-15 09:38:32 +00:00
/**
2014-06-30 03:56:15 +00:00
* Convert given date string into a different format.
2008-06-15 09:38:32 +00:00
*
2012-02-21 20:03:11 +00:00
* $format should be either a PHP date format string, e.g. 'U' for a Unix
* timestamp, or 'G' for a Unix timestamp assuming that $date is GMT.
*
* If $translate is true then the given date and format string will
* be passed to date_i18n() for translation.
2008-06-15 09:38:32 +00:00
*
* @since 0.71
*
2014-06-30 03:56:15 +00:00
* @param string $format Format of the date to return.
* @param string $date Date string to convert.
* @param bool $translate Whether the return date should be translated. Default true.
2014-08-01 18:40:16 +00:00
* @return string|int|bool Formatted date string or Unix timestamp. False if $date is empty.
2008-06-15 09:38:32 +00:00
*/
2012-02-21 20:03:11 +00:00
function mysql2date ( $format , $date , $translate = true ) {
2017-11-30 23:11:00 +00:00
if ( empty ( $date ) ) {
2003-04-21 21:37:11 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2008-03-02 20:17:30 +00:00
2017-11-30 23:11:00 +00:00
if ( 'G' == $format ) {
2012-02-21 20:03:11 +00:00
return strtotime ( $date . ' +0000' );
2017-11-30 23:11:00 +00:00
}
2008-03-02 20:17:30 +00:00
2012-02-21 20:03:11 +00:00
$i = strtotime ( $date );
2006-02-12 07:53:23 +00:00
2017-11-30 23:11:00 +00:00
if ( 'U' == $format ) {
2006-03-07 21:24:49 +00:00
return $i ;
2017-11-30 23:11:00 +00:00
}
2006-11-19 07:56:05 +00:00
2017-11-30 23:11:00 +00:00
if ( $translate ) {
2012-02-21 20:03:11 +00:00
return date_i18n ( $format , $i );
2017-11-30 23:11:00 +00:00
} else {
2012-02-21 20:03:11 +00:00
return date ( $format , $i );
2017-11-30 23:11:00 +00:00
}
2003-04-21 21:37:11 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Retrieve the current time based on specified type.
*
* The 'mysql' type will return the time in the format for MySQL DATETIME field.
* The 'timestamp' type will return the current timestamp.
2014-02-25 17:01:13 +00:00
* Other strings will be interpreted as PHP date formats (e.g. 'Y-m-d').
2008-06-15 09:38:32 +00:00
*
2009-02-03 23:04:31 +00:00
* If $gmt is set to either '1' or 'true', then both types will use GMT time.
* if $gmt is false, the output is adjusted with the GMT offset in the WordPress option.
2008-06-15 09:38:32 +00:00
*
* @since 1.0.0
*
2014-06-30 03:56:15 +00:00
* @param string $type Type of time to retrieve. Accepts 'mysql', 'timestamp', or PHP date
* format string (e.g. 'Y-m-d').
* @param int|bool $gmt Optional. Whether to use GMT timezone. Default false.
2014-05-02 11:25:15 +00:00
* @return int|string Integer if $type is 'timestamp', string otherwise.
2008-06-15 09:38:32 +00:00
*/
2007-10-11 05:46:57 +00:00
function current_time ( $type , $gmt = 0 ) {
switch ( $type ) {
2003-11-15 08:58:18 +00:00
case 'mysql' :
2012-09-25 05:26:19 +00:00
return ( $gmt ) ? gmdate ( 'Y-m-d H:i:s' ) : gmdate ( 'Y-m-d H:i:s' , ( time () + ( get_option ( 'gmt_offset' ) * HOUR_IN_SECONDS ) ) );
2003-11-15 08:58:18 +00:00
case 'timestamp' :
2012-09-25 05:26:19 +00:00
return ( $gmt ) ? time () : time () + ( get_option ( 'gmt_offset' ) * HOUR_IN_SECONDS );
2014-02-25 17:01:13 +00:00
default :
2018-08-30 12:13:24 +00:00
return ( $gmt ) ? gmdate ( $type ) : gmdate ( $type , time () + ( get_option ( 'gmt_offset' ) * HOUR_IN_SECONDS ) );
2003-11-15 08:58:18 +00:00
}
}
2008-06-30 03:23:44 +00:00
/**
2018-06-28 02:44:12 +00:00
* Retrieve the date in localized format, based on a sum of Unix timestamp and
* timezone offset in seconds.
2008-06-30 03:23:44 +00:00
*
* If the locale specifies the locale month and weekday, then the locale will
* take over the format for the date. If it isn't, then the date format string
* will be used instead.
*
* @since 0.71
*
2015-05-25 16:11:25 +00:00
* @global WP_Locale $wp_locale
*
2018-06-28 02:44:12 +00:00
* @param string $dateformatstring Format to display the date.
* @param int|bool $timestamp_with_offset Optional. A sum of Unix timestamp and timezone offset in seconds.
* Default false.
2018-07-04 23:43:25 +00:00
* @param bool $gmt Optional. Whether to use GMT timezone. Only applies if timestamp is
* not provided. Default false.
2014-06-30 03:47:16 +00:00
*
2008-06-30 03:23:44 +00:00
* @return string The date, translated if locale specifies it.
*/
2018-06-28 02:44:12 +00:00
function date_i18n ( $dateformatstring , $timestamp_with_offset = false , $gmt = false ) {
2006-04-02 00:20:11 +00:00
global $wp_locale ;
2018-06-28 02:44:12 +00:00
$i = $timestamp_with_offset ;
2009-04-20 18:18:39 +00:00
2011-05-08 17:14:36 +00:00
if ( false === $i ) {
2016-10-17 08:10:30 +00:00
$i = current_time ( 'timestamp' , $gmt );
2011-05-08 17:14:36 +00:00
}
2014-06-30 03:56:15 +00:00
/*
* Store original value for language with untypical grammars.
2014-09-29 13:28:16 +00:00
* See https://core.trac.wordpress.org/ticket/9396
2014-06-30 03:56:15 +00:00
*/
2009-04-08 19:56:58 +00:00
$req_format = $dateformatstring ;
2009-04-20 18:18:39 +00:00
2018-08-17 01:51:36 +00:00
$dateformatstring = preg_replace ( '/(?<!\\\\)c/' , DATE_W3C , $dateformatstring );
$dateformatstring = preg_replace ( '/(?<!\\\\)r/' , DATE_RFC2822 , $dateformatstring );
2018-07-05 23:10:25 +00:00
2017-11-30 23:11:00 +00:00
if ( ( ! empty ( $wp_locale -> month ) ) && ( ! empty ( $wp_locale -> weekday ) ) ) {
$datemonth = $wp_locale -> get_month ( date ( 'm' , $i ) );
$datemonth_abbrev = $wp_locale -> get_month_abbrev ( $datemonth );
$dateweekday = $wp_locale -> get_weekday ( date ( 'w' , $i ) );
$dateweekday_abbrev = $wp_locale -> get_weekday_abbrev ( $dateweekday );
$datemeridiem = $wp_locale -> get_meridiem ( date ( 'a' , $i ) );
2016-10-17 08:10:30 +00:00
$datemeridiem_capital = $wp_locale -> get_meridiem ( date ( 'A' , $i ) );
2017-11-30 23:11:00 +00:00
$dateformatstring = ' ' . $dateformatstring ;
$dateformatstring = preg_replace ( '/([^\\\])D/' , " \\ 1" . backslashit ( $dateweekday_abbrev ), $dateformatstring );
$dateformatstring = preg_replace ( '/([^\\\])F/' , " \\ 1" . backslashit ( $datemonth ), $dateformatstring );
$dateformatstring = preg_replace ( '/([^\\\])l/' , " \\ 1" . backslashit ( $dateweekday ), $dateformatstring );
$dateformatstring = preg_replace ( '/([^\\\])M/' , " \\ 1" . backslashit ( $datemonth_abbrev ), $dateformatstring );
$dateformatstring = preg_replace ( '/([^\\\])a/' , " \\ 1" . backslashit ( $datemeridiem ), $dateformatstring );
$dateformatstring = preg_replace ( '/([^\\\])A/' , " \\ 1" . backslashit ( $datemeridiem_capital ), $dateformatstring );
2007-10-11 05:46:57 +00:00
2017-11-30 23:11:00 +00:00
$dateformatstring = substr ( $dateformatstring , 1 , strlen ( $dateformatstring ) - 1 );
2003-04-21 21:37:11 +00:00
}
2017-11-30 23:11:00 +00:00
$timezone_formats = array ( 'P' , 'I' , 'O' , 'T' , 'Z' , 'e' );
2010-11-17 18:47:34 +00:00
$timezone_formats_re = implode ( '|' , $timezone_formats );
2011-04-13 17:30:02 +00:00
if ( preg_match ( "/ $timezone_formats_re /" , $dateformatstring ) ) {
2010-11-05 11:19:06 +00:00
$timezone_string = get_option ( 'timezone_string' );
2018-07-04 23:43:25 +00:00
if ( false === $timestamp_with_offset && $gmt ) {
$timezone_string = 'UTC' ;
}
2010-11-05 11:19:06 +00:00
if ( $timezone_string ) {
$timezone_object = timezone_open ( $timezone_string );
2017-11-30 23:11:00 +00:00
$date_object = date_create ( null , $timezone_object );
2015-08-25 20:28:22 +00:00
foreach ( $timezone_formats as $timezone_format ) {
2010-11-05 11:19:06 +00:00
if ( false !== strpos ( $dateformatstring , $timezone_format ) ) {
2017-11-30 23:11:00 +00:00
$formatted = date_format ( $date_object , $timezone_format );
$dateformatstring = ' ' . $dateformatstring ;
2010-11-05 11:19:06 +00:00
$dateformatstring = preg_replace ( "/([^ \\ \]) $timezone_format /" , " \\ 1" . backslashit ( $formatted ), $dateformatstring );
2017-11-30 23:11:00 +00:00
$dateformatstring = substr ( $dateformatstring , 1 , strlen ( $dateformatstring ) - 1 );
2010-11-05 11:19:06 +00:00
}
2010-11-17 18:47:34 +00:00
}
2018-07-03 15:59:25 +00:00
} else {
$offset = get_option ( 'gmt_offset' );
foreach ( $timezone_formats as $timezone_format ) {
if ( 'I' === $timezone_format ) {
continue ;
}
if ( false !== strpos ( $dateformatstring , $timezone_format ) ) {
if ( 'Z' === $timezone_format ) {
$formatted = ( string ) ( $offset * HOUR_IN_SECONDS );
} else {
$prefix = '' ;
$hours = ( int ) $offset ;
$separator = '' ;
$minutes = abs ( ( $offset - $hours ) * 60 );
if ( 'T' === $timezone_format ) {
$prefix = 'GMT' ;
} elseif ( 'e' === $timezone_format || 'P' === $timezone_format ) {
$separator = ':' ;
}
$formatted = sprintf ( '%s%+03d%s%02d' , $prefix , $hours , $separator , $minutes );
}
$dateformatstring = ' ' . $dateformatstring ;
$dateformatstring = preg_replace ( "/([^ \\ \]) $timezone_format /" , " \\ 1" . backslashit ( $formatted ), $dateformatstring );
$dateformatstring = substr ( $dateformatstring , 1 );
}
}
2010-11-05 11:19:06 +00:00
}
2010-11-17 18:47:34 +00:00
}
2016-10-17 08:10:30 +00:00
$j = @ date ( $dateformatstring , $i );
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the date formatted based on the locale.
2014-04-14 00:20:14 +00:00
*
* @since 2.8.0
2014-05-05 20:08:16 +00:00
*
2014-04-14 00:20:14 +00:00
* @param string $j Formatted date string.
* @param string $req_format Format to display the date.
2018-06-28 02:44:12 +00:00
* @param int $i A sum of Unix timestamp and timezone offset in seconds.
2018-07-04 23:43:25 +00:00
* @param bool $gmt Whether to use GMT timezone. Only applies if timestamp was
* not provided. Default false.
2014-04-14 00:20:14 +00:00
*/
$j = apply_filters ( 'date_i18n' , $j , $req_format , $i , $gmt );
2003-04-21 21:37:11 +00:00
return $j ;
2006-04-02 00:20:11 +00:00
}
2003-04-21 21:37:11 +00:00
2015-11-04 21:28:26 +00:00
/**
* Determines if the date should be declined.
*
* If the locale specifies that month names require a genitive case in certain
* formats (like 'j F Y'), the month name will be replaced with a correct form.
*
* @since 4.4.0
*
2017-06-15 12:24:41 +00:00
* @global WP_Locale $wp_locale
*
2015-11-04 21:28:26 +00:00
* @param string $date Formatted date string.
* @return string The date, declined if locale specifies it.
*/
function wp_maybe_decline_date ( $date ) {
global $wp_locale ;
2015-12-12 01:42:38 +00:00
// i18n functions are not available in SHORTINIT mode
if ( ! function_exists ( '_x' ) ) {
return $date ;
}
2015-11-04 21:28:26 +00:00
/* translators: If months in your language require a genitive case,
* translate this to 'on'. Do not translate into your own language.
*/
if ( 'on' === _x ( 'off' , 'decline months names: on or off' ) ) {
// Match a format like 'j F Y' or 'j. F'
2016-07-05 21:43:30 +00:00
if ( @ preg_match ( '#^\d{1,2}\.? [^\d ]+#u' , $date ) ) {
$months = $wp_locale -> month ;
$months_genitive = $wp_locale -> month_genitive ;
2015-11-04 21:28:26 +00:00
foreach ( $months as $key => $month ) {
2016-07-05 21:43:30 +00:00
$months [ $key ] = '# ' . $month . '( |$)#u' ;
2015-11-04 21:28:26 +00:00
}
2016-07-05 21:43:30 +00:00
foreach ( $months_genitive as $key => $month ) {
$months_genitive [ $key ] = ' ' . $month . '$1' ;
}
$date = preg_replace ( $months , $months_genitive , $date );
2015-11-04 21:28:26 +00:00
}
}
// Used for locale-specific rules
$locale = get_locale ();
if ( 'ca' === $locale ) {
// " de abril| de agost| de octubre..." -> " d'abril| d'agost| d'octubre..."
$date = preg_replace ( '# de ([ao])#i' , " d' \\ 1" , $date );
}
return $date ;
}
2008-06-15 09:38:32 +00:00
/**
2016-02-23 18:44:26 +00:00
* Convert float number to format based on the locale.
2008-06-15 09:38:32 +00:00
*
* @since 2.3.0
*
2015-05-25 16:11:25 +00:00
* @global WP_Locale $wp_locale
*
2016-02-23 18:44:26 +00:00
* @param float $number The number to convert based on locale.
* @param int $decimals Optional. Precision of the number of decimal places. Default 0.
2008-06-15 09:38:32 +00:00
* @return string Converted number in string format.
*/
2010-04-22 21:39:37 +00:00
function number_format_i18n ( $number , $decimals = 0 ) {
2007-04-25 00:49:57 +00:00
global $wp_locale ;
2015-10-13 00:30:24 +00:00
if ( isset ( $wp_locale ) ) {
$formatted = number_format ( $number , absint ( $decimals ), $wp_locale -> number_format [ 'decimal_point' ], $wp_locale -> number_format [ 'thousands_sep' ] );
} else {
$formatted = number_format ( $number , absint ( $decimals ) );
}
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the number formatted based on the locale.
2014-04-14 00:20:14 +00:00
*
2017-08-01 14:38:48 +00:00
* @since 2.8.0
2018-02-09 16:55:31 +00:00
* @since 4.9.0 The `$number` and `$decimals` parameters were added.
2014-04-14 00:20:14 +00:00
*
* @param string $formatted Converted number in string format.
2017-08-01 14:38:48 +00:00
* @param float $number The number to convert based on locale.
* @param int $decimals Precision of the number of decimal places.
2014-04-14 00:20:14 +00:00
*/
2017-08-01 14:38:48 +00:00
return apply_filters ( 'number_format_i18n' , $formatted , $number , $decimals );
2007-04-25 00:49:57 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Convert number of bytes largest unit bytes will fit into.
*
2016-06-14 21:41:28 +00:00
* It is easier to read 1 KB than 1024 bytes and 1 MB than 1048576 bytes. Converts
2008-06-15 09:38:32 +00:00
* number of bytes to human readable number by taking the number of that unit
* that the bytes will go into it. Supports TB value.
*
* Please note that integers in PHP are limited to 32 bits, unless they are on
* 64 bit architecture, then they have 64 bit size. If you need to place the
* larger size then what PHP integer type will hold, then use a string. It will
* be converted to a double, which should always have 64 bit length.
*
* Technically the correct unit names for powers of 1024 are KiB, MiB etc.
*
* @since 2.3.0
*
2014-06-30 03:56:15 +00:00
* @param int|string $bytes Number of bytes. Note max integer size for integers.
* @param int $decimals Optional. Precision of number of decimal places. Default 0.
2014-11-30 23:24:25 +00:00
* @return string|false False on failure. Number string on success.
2008-06-15 09:38:32 +00:00
*/
2010-04-22 21:39:37 +00:00
function size_format ( $bytes , $decimals = 0 ) {
2007-07-15 17:52:50 +00:00
$quant = array (
2015-10-21 14:03:25 +00:00
'TB' => TB_IN_BYTES ,
'GB' => GB_IN_BYTES ,
'MB' => MB_IN_BYTES ,
2016-06-14 21:41:28 +00:00
'KB' => KB_IN_BYTES ,
2015-10-21 14:03:25 +00:00
'B' => 1 ,
2007-07-15 17:52:50 +00:00
);
2015-01-05 13:13:23 +00:00
2016-07-05 10:36:30 +00:00
if ( 0 === $bytes ) {
return number_format_i18n ( 0 , $decimals ) . ' B' ;
}
2015-01-05 13:13:23 +00:00
foreach ( $quant as $unit => $mag ) {
if ( doubleval ( $bytes ) >= $mag ) {
2010-04-22 21:39:37 +00:00
return number_format_i18n ( $bytes / $mag , $decimals ) . ' ' . $unit ;
2015-01-05 13:13:23 +00:00
}
}
2008-01-28 04:55:54 +00:00
return false ;
2007-07-15 17:52:50 +00:00
}
2018-09-08 04:20:24 +00:00
/**
2019-01-08 19:56:48 +00:00
* Convert a duration to human readable format.
2018-09-08 04:20:24 +00:00
*
2019-01-08 19:56:48 +00:00
* @since 5.1.0
2018-09-08 04:20:24 +00:00
*
2019-01-08 19:56:48 +00:00
* @param string $duration Duration will be in string format (HH:ii:ss) OR (ii:ss),
* with a possible prepended negative sign (-).
* @return string|false A human readable duration string, false on failure.
2018-09-08 04:20:24 +00:00
*/
2019-01-08 19:56:48 +00:00
function human_readable_duration ( $duration = '' ) {
if ( ( empty ( $duration ) || ! is_string ( $duration ) ) ) {
2018-09-08 04:20:24 +00:00
return false ;
}
2019-01-08 19:56:48 +00:00
$duration = trim ( $duration );
// Remove prepended negative sign.
if ( '-' === substr ( $duration , 0 , 1 ) ) {
$duration = substr ( $duration , 1 );
2018-09-08 04:20:24 +00:00
}
2019-01-08 19:56:48 +00:00
// Extract duration parts.
$duration_parts = array_reverse ( explode ( ':' , $duration ) );
$duration_count = count ( $duration_parts );
2018-09-08 04:20:24 +00:00
2019-01-08 19:56:48 +00:00
$hour = null ;
$minute = null ;
$second = null ;
2018-09-08 04:20:24 +00:00
if ( 3 === $duration_count ) {
2019-01-08 19:56:48 +00:00
// Validate HH:ii:ss duration format.
if ( ! ( ( bool ) preg_match ( '/^([0-9]+):([0-5]?[0-9]):([0-5]?[0-9])$/' , $duration ) ) ) {
return false ;
}
2018-09-08 04:20:24 +00:00
// Three parts: hours, minutes & seconds.
2019-01-08 19:56:48 +00:00
list ( $second , $minute , $hour ) = $duration_parts ;
2018-09-08 04:20:24 +00:00
} elseif ( 2 === $duration_count ) {
2019-01-08 19:56:48 +00:00
// Validate ii:ss duration format.
if ( ! ( ( bool ) preg_match ( '/^([0-5]?[0-9]):([0-5]?[0-9])$/' , $duration ) ) ) {
return false ;
}
2018-09-08 04:20:24 +00:00
// Two parts: minutes & seconds.
2019-01-08 19:56:48 +00:00
list ( $second , $minute ) = $duration_parts ;
2018-09-08 04:20:24 +00:00
} else {
return false ;
}
2019-01-08 19:56:48 +00:00
$human_readable_duration = array ();
2018-09-08 04:20:24 +00:00
// Add the hour part to the string.
2019-01-08 19:56:48 +00:00
if ( is_numeric ( $hour ) ) {
2018-09-08 04:20:24 +00:00
/* translators: Time duration in hour or hours. */
$human_readable_duration [] = sprintf ( _n ( '%s hour' , '%s hours' , $hour ), ( int ) $hour );
}
// Add the minute part to the string.
2019-01-08 19:56:48 +00:00
if ( is_numeric ( $minute ) ) {
2018-09-08 04:20:24 +00:00
/* translators: Time duration in minute or minutes. */
$human_readable_duration [] = sprintf ( _n ( '%s minute' , '%s minutes' , $minute ), ( int ) $minute );
}
// Add the second part to the string.
2019-01-08 19:56:48 +00:00
if ( is_numeric ( $second ) ) {
2018-09-08 04:20:24 +00:00
/* translators: Time duration in second or seconds. */
$human_readable_duration [] = sprintf ( _n ( '%s second' , '%s seconds' , $second ), ( int ) $second );
}
return implode ( ', ' , $human_readable_duration );
}
2008-08-09 04:51:51 +00:00
/**
2014-07-01 14:59:15 +00:00
* Get the week start and end from the datetime or date string from MySQL.
2008-08-09 04:51:51 +00:00
*
* @since 0.71
*
2014-07-01 14:59:15 +00:00
* @param string $mysqlstring Date or datetime field type from MySQL.
* @param int|string $start_of_week Optional. Start of the week as an integer. Default empty string.
2008-08-09 04:51:51 +00:00
* @return array Keys are 'start' and 'end'.
*/
2007-12-06 19:49:33 +00:00
function get_weekstartend ( $mysqlstring , $start_of_week = '' ) {
2014-07-01 14:59:15 +00:00
// MySQL string year.
2014-06-30 03:56:15 +00:00
$my = substr ( $mysqlstring , 0 , 4 );
2014-07-01 14:59:15 +00:00
// MySQL string month.
2014-06-30 03:56:15 +00:00
$mm = substr ( $mysqlstring , 8 , 2 );
2014-07-01 14:59:15 +00:00
// MySQL string day.
2014-06-30 03:56:15 +00:00
$md = substr ( $mysqlstring , 5 , 2 );
2014-07-01 14:59:15 +00:00
// The timestamp for MySQL string day.
2014-06-30 03:56:15 +00:00
$day = mktime ( 0 , 0 , 0 , $md , $mm , $my );
// The day of the week from the timestamp.
$weekday = date ( 'w' , $day );
2017-11-30 23:11:00 +00:00
if ( ! is_numeric ( $start_of_week ) ) {
2007-12-06 19:49:33 +00:00
$start_of_week = get_option ( 'start_of_week' );
2017-11-30 23:11:00 +00:00
}
2005-04-10 20:07:46 +00:00
2017-11-30 23:11:00 +00:00
if ( $weekday < $start_of_week ) {
2010-05-07 05:01:29 +00:00
$weekday += 7 ;
2017-11-30 23:11:00 +00:00
}
2005-04-10 20:07:46 +00:00
2014-06-30 03:56:15 +00:00
// The most recent week start day on or before $day.
$start = $day - DAY_IN_SECONDS * ( $weekday - $start_of_week );
2015-11-06 16:37:27 +00:00
// $start + 1 week - 1 second.
$end = $start + WEEK_IN_SECONDS - 1 ;
2010-05-07 05:01:29 +00:00
return compact ( 'start' , 'end' );
2003-04-21 21:37:11 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Unserialize value only if it was serialized.
*
* @since 2.0.0
*
* @param string $original Maybe unserialized original, if is needed.
* @return mixed Unserialized data can be any type.
*/
2007-10-11 05:46:57 +00:00
function maybe_unserialize ( $original ) {
2017-11-30 23:11:00 +00:00
if ( is_serialized ( $original ) ) { // don't attempt to unserialize data that wasn't serialized going in
2009-04-16 21:03:18 +00:00
return @ unserialize ( $original );
2017-11-30 23:11:00 +00:00
}
2006-10-12 23:54:36 +00:00
return $original ;
}
2008-06-15 09:38:32 +00:00
/**
* Check value to find if it was serialized.
*
* If $data is not an string, then returned value will always be false.
* Serialized data is always a string.
*
* @since 2.0.5
*
2014-06-30 03:56:15 +00:00
* @param string $data Value to check to see if was serialized.
* @param bool $strict Optional. Whether to be strict about the end of the string. Default true.
2008-06-15 09:38:32 +00:00
* @return bool False if not serialized and true if it was.
*/
2013-09-10 18:10:09 +00:00
function is_serialized ( $data , $strict = true ) {
2014-06-30 03:56:15 +00:00
// if it isn't a string, it isn't serialized.
2014-03-17 20:09:17 +00:00
if ( ! is_string ( $data ) ) {
2009-12-22 13:42:58 +00:00
return false ;
2014-03-17 20:09:17 +00:00
}
2009-12-22 13:42:58 +00:00
$data = trim ( $data );
2017-11-30 23:11:00 +00:00
if ( 'N;' == $data ) {
2009-12-22 13:42:58 +00:00
return true ;
2014-03-17 20:09:17 +00:00
}
if ( strlen ( $data ) < 4 ) {
2009-12-22 13:42:58 +00:00
return false ;
2014-03-17 20:09:17 +00:00
}
if ( ':' !== $data [ 1 ] ) {
2010-11-11 16:10:16 +00:00
return false ;
2014-03-17 20:09:17 +00:00
}
2013-09-10 18:10:09 +00:00
if ( $strict ) {
2014-03-17 20:09:17 +00:00
$lastc = substr ( $data , - 1 );
if ( ';' !== $lastc && '}' !== $lastc ) {
2013-09-10 18:10:09 +00:00
return false ;
2014-03-17 20:09:17 +00:00
}
2013-09-10 18:10:09 +00:00
} else {
2013-09-11 03:23:08 +00:00
$semicolon = strpos ( $data , ';' );
$brace = strpos ( $data , '}' );
// Either ; or } must exist.
2017-11-30 23:11:00 +00:00
if ( false === $semicolon && false === $brace ) {
2013-09-11 03:23:08 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2013-09-11 03:23:08 +00:00
// But neither must be in the first X characters.
2017-11-30 23:11:00 +00:00
if ( false !== $semicolon && $semicolon < 3 ) {
2013-09-11 03:23:08 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
if ( false !== $brace && $brace < 4 ) {
2013-09-10 18:10:09 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2013-09-10 18:10:09 +00:00
}
2010-11-11 16:10:16 +00:00
$token = $data [ 0 ];
switch ( $token ) {
2017-11-30 23:11:00 +00:00
case 's' :
2013-09-10 18:10:09 +00:00
if ( $strict ) {
2014-03-17 20:09:17 +00:00
if ( '"' !== substr ( $data , - 2 , 1 ) ) {
2013-09-10 18:10:09 +00:00
return false ;
2014-03-17 20:09:17 +00:00
}
2013-09-10 18:10:09 +00:00
} elseif ( false === strpos ( $data , '"' ) ) {
2010-11-11 16:10:16 +00:00
return false ;
2013-09-10 18:10:09 +00:00
}
2013-09-12 03:41:09 +00:00
// or else fall through
2017-11-30 23:11:00 +00:00
case 'a' :
case 'O' :
2010-11-11 16:10:16 +00:00
return ( bool ) preg_match ( "/^ { $token } :[0-9]+:/s" , $data );
2017-11-30 23:11:00 +00:00
case 'b' :
case 'i' :
case 'd' :
2013-09-10 18:10:09 +00:00
$end = $strict ? '$' : '' ;
return ( bool ) preg_match ( "/^ { $token } :[0-9.E-]+; $end /" , $data );
2009-12-22 13:42:58 +00:00
}
return false ;
2006-10-12 23:54:36 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Check whether serialized data is of string type.
*
* @since 2.0.5
*
2014-06-30 03:56:15 +00:00
* @param string $data Serialized data.
2008-06-15 09:38:32 +00:00
* @return bool False if not a serialized string, true if it is.
*/
2007-10-11 05:46:57 +00:00
function is_serialized_string ( $data ) {
2014-06-30 03:56:15 +00:00
// if it isn't a string, it isn't a serialized string.
2014-03-17 20:09:17 +00:00
if ( ! is_string ( $data ) ) {
2006-10-12 23:54:36 +00:00
return false ;
2014-03-17 20:09:17 +00:00
}
2007-10-11 05:46:57 +00:00
$data = trim ( $data );
2014-03-17 20:09:17 +00:00
if ( strlen ( $data ) < 4 ) {
2011-04-30 04:41:56 +00:00
return false ;
2014-03-17 20:09:17 +00:00
} elseif ( ':' !== $data [ 1 ] ) {
2011-04-30 04:41:56 +00:00
return false ;
2014-03-17 20:09:17 +00:00
} elseif ( ';' !== substr ( $data , - 1 ) ) {
2011-04-30 04:41:56 +00:00
return false ;
2014-03-17 20:09:17 +00:00
} elseif ( $data [ 0 ] !== 's' ) {
2011-04-30 04:41:56 +00:00
return false ;
2014-03-17 20:09:17 +00:00
} elseif ( '"' !== substr ( $data , - 2 , 1 ) ) {
2011-04-30 04:41:56 +00:00
return false ;
2014-03-17 20:09:17 +00:00
} else {
2006-10-12 23:54:36 +00:00
return true ;
2014-03-17 20:09:17 +00:00
}
2005-11-29 07:58:50 +00:00
}
2008-06-30 03:23:44 +00:00
/**
* Serialize data, if needed.
*
2008-08-10 16:45:50 +00:00
* @since 2.0.5
*
2014-06-30 03:56:15 +00:00
* @param string|array|object $data Data that might be serialized.
2008-06-30 03:23:44 +00:00
* @return mixed A scalar data
*/
2007-10-11 05:46:57 +00:00
function maybe_serialize ( $data ) {
2017-11-30 23:11:00 +00:00
if ( is_array ( $data ) || is_object ( $data ) ) {
2010-04-11 17:07:20 +00:00
return serialize ( $data );
2017-11-30 23:11:00 +00:00
}
2010-04-11 17:07:20 +00:00
2011-09-29 02:23:26 +00:00
// Double serialization is required for backward compatibility.
2014-09-29 13:28:16 +00:00
// See https://core.trac.wordpress.org/ticket/12930
2015-05-08 16:27:27 +00:00
// Also the world will end. See WP 3.6.1.
2017-11-30 23:11:00 +00:00
if ( is_serialized ( $data , false ) ) {
2007-10-11 05:46:57 +00:00
return serialize ( $data );
2017-11-30 23:11:00 +00:00
}
2008-07-18 16:43:23 +00:00
2006-10-12 23:54:36 +00:00
return $data ;
}
2008-08-09 04:51:51 +00:00
/**
* Retrieve post title from XMLRPC XML.
*
* If the title element is not part of the XML, then the default post title from
* the $post_default_title will be used instead.
*
2008-08-10 16:45:50 +00:00
* @since 0.71
2008-08-09 04:51:51 +00:00
*
2014-06-30 03:56:15 +00:00
* @global string $post_default_title Default XML-RPC post title.
2008-08-09 04:51:51 +00:00
*
* @param string $content XMLRPC XML Request content
* @return string Post title
*/
2007-10-11 05:46:57 +00:00
function xmlrpc_getposttitle ( $content ) {
2003-04-21 21:37:11 +00:00
global $post_default_title ;
2007-10-11 05:46:57 +00:00
if ( preg_match ( '/<title>(.+?)<\/title>/is' , $content , $matchtitle ) ) {
2009-04-20 22:15:14 +00:00
$post_title = $matchtitle [ 1 ];
2003-04-21 21:37:11 +00:00
} else {
$post_title = $post_default_title ;
}
2003-06-07 17:19:38 +00:00
return $post_title ;
2003-04-21 21:37:11 +00:00
}
2005-10-10 09:25:38 +00:00
2008-08-09 04:51:51 +00:00
/**
* Retrieve the post category or categories from XMLRPC XML.
*
* If the category element is not found, then the default post category will be
* used. The return type then would be what $post_default_category. If the
* category is found, then it will always be an array.
*
2008-08-10 16:45:50 +00:00
* @since 0.71
2008-08-09 04:51:51 +00:00
*
2014-06-30 03:56:15 +00:00
* @global string $post_default_category Default XML-RPC post category.
2008-08-09 04:51:51 +00:00
*
* @param string $content XMLRPC XML Request content
* @return string|array List of categories or category name.
*/
2007-10-11 05:46:57 +00:00
function xmlrpc_getpostcategory ( $content ) {
2003-04-21 21:37:11 +00:00
global $post_default_category ;
2007-10-11 05:46:57 +00:00
if ( preg_match ( '/<category>(.+?)<\/category>/is' , $content , $matchcat ) ) {
$post_category = trim ( $matchcat [ 1 ], ',' );
$post_category = explode ( ',' , $post_category );
2003-04-21 21:37:11 +00:00
} else {
$post_category = $post_default_category ;
}
2003-06-07 17:19:38 +00:00
return $post_category ;
2003-04-21 21:37:11 +00:00
}
2008-08-09 04:51:51 +00:00
/**
* XMLRPC XML content without title and category elements.
*
2008-08-10 16:45:50 +00:00
* @since 0.71
2008-08-09 04:51:51 +00:00
*
2014-06-30 03:56:15 +00:00
* @param string $content XML-RPC XML Request content.
2008-08-09 04:51:51 +00:00
* @return string XMLRPC XML Request content without title and category elements.
*/
2007-10-11 05:46:57 +00:00
function xmlrpc_removepostdata ( $content ) {
$content = preg_replace ( '/<title>(.+?)<\/title>/si' , '' , $content );
$content = preg_replace ( '/<category>(.+?)<\/category>/si' , '' , $content );
$content = trim ( $content );
2003-06-07 17:19:38 +00:00
return $content ;
2003-04-21 21:37:11 +00:00
}
2013-09-10 03:18:08 +00:00
/**
2014-06-30 03:56:15 +00:00
* Use RegEx to extract URLs from arbitrary content.
2013-09-10 03:18:08 +00:00
*
* @since 3.7.0
*
2014-06-30 03:56:15 +00:00
* @param string $content Content to extract URLs from.
* @return array URLs found in passed string.
2013-09-10 03:18:08 +00:00
*/
function wp_extract_urls ( $content ) {
preg_match_all (
2014-09-23 02:50:19 +00:00
"#([ \" ']?)("
2017-11-30 23:11:00 +00:00
. '(?:([\w-]+:)?//?)'
. '[^\s()<>]+'
. '[.]'
. '(?:'
. '\([\w\d]+\)|'
. '(?:'
2014-09-23 02:50:19 +00:00
. "[^`!()\[\]{};:' \" .,<>«»“”‘’\s]|"
2017-11-30 23:11:00 +00:00
. '(?:[:]\d+)?/?'
. ')+'
. ')'
2014-09-23 02:50:19 +00:00
. ") \\ 1#" ,
2013-09-10 03:18:08 +00:00
$content ,
$post_links
);
2014-09-23 02:50:19 +00:00
$post_links = array_unique ( array_map ( 'html_entity_decode' , $post_links [ 2 ] ) );
2013-09-10 03:18:08 +00:00
return array_values ( $post_links );
}
2008-08-10 16:45:50 +00:00
/**
2008-08-10 20:31:49 +00:00
* Check content for video and audio links to add as enclosures.
2008-08-10 16:45:50 +00:00
*
2009-05-13 05:15:27 +00:00
* Will not add enclosures that have already been added and will
* remove enclosures that are no longer in the post. This is called as
2008-08-10 20:31:49 +00:00
* pingbacks and trackbacks.
2008-08-10 16:45:50 +00:00
*
* @since 1.5.0
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2008-08-10 16:45:50 +00:00
*
2014-06-30 03:56:15 +00:00
* @param string $content Post Content.
2015-05-25 16:11:25 +00:00
* @param int $post_ID Post ID.
2008-08-10 16:45:50 +00:00
*/
2004-10-18 12:09:20 +00:00
function do_enclose ( $content , $post_ID ) {
2007-12-06 19:49:33 +00:00
global $wpdb ;
2010-11-17 18:47:34 +00:00
2010-10-28 22:00:53 +00:00
//TODO: Tidy this ghetto code up and make the debug code optional
2016-10-17 23:54:30 +00:00
include_once ( ABSPATH . WPINC . '/class-IXR.php' );
2016-08-31 16:31:29 +00:00
2004-10-18 12:09:20 +00:00
$post_links = array ();
2005-02-12 08:58:10 +00:00
$pung = get_enclosed ( $post_ID );
2004-10-18 12:09:20 +00:00
2013-09-10 03:18:08 +00:00
$post_links_temp = wp_extract_urls ( $content );
2004-10-18 12:09:20 +00:00
2009-05-13 05:15:27 +00:00
foreach ( $pung as $link_test ) {
2013-09-10 03:18:08 +00:00
if ( ! in_array ( $link_test , $post_links_temp ) ) { // link no longer in post
2017-11-30 23:11:00 +00:00
$mids = $wpdb -> get_col ( $wpdb -> prepare ( "SELECT meta_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE %s" , $post_ID , $wpdb -> esc_like ( $link_test ) . '%' ) );
foreach ( $mids as $mid ) {
2012-04-11 20:02:39 +00:00
delete_metadata_by_mid ( 'post' , $mid );
2017-11-30 23:11:00 +00:00
}
2009-05-13 05:15:27 +00:00
}
}
2013-09-10 03:18:08 +00:00
foreach ( ( array ) $post_links_temp as $link_test ) {
2017-11-30 23:11:00 +00:00
if ( ! in_array ( $link_test , $pung ) ) { // If we haven't pung it already
2010-04-16 19:48:30 +00:00
$test = @ parse_url ( $link_test );
2017-11-30 23:11:00 +00:00
if ( false === $test ) {
2010-04-16 19:48:30 +00:00
continue ;
2017-11-30 23:11:00 +00:00
}
if ( isset ( $test [ 'query' ] ) ) {
2004-10-18 12:09:20 +00:00
$post_links [] = $link_test ;
2017-11-30 23:11:00 +00:00
} elseif ( isset ( $test [ 'path' ] ) && ( $test [ 'path' ] != '/' ) && ( $test [ 'path' ] != '' ) ) {
2004-10-18 12:09:20 +00:00
$post_links [] = $link_test ;
2017-11-30 23:11:00 +00:00
}
2007-10-11 05:46:57 +00:00
}
}
2004-10-18 12:09:20 +00:00
2015-10-20 07:09:25 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the list of enclosure links before querying the database.
2015-10-20 07:09:25 +00:00
*
* Allows for the addition and/or removal of potential enclosures to save
* to postmeta before checking the database for existing enclosures.
*
* @since 4.4.0
*
* @param array $post_links An array of enclosure links.
* @param int $post_ID Post ID.
*/
$post_links = apply_filters ( 'enclosure_links' , $post_links , $post_ID );
2008-08-06 20:31:54 +00:00
foreach ( ( array ) $post_links as $url ) {
2017-11-30 23:11:00 +00:00
if ( $url != '' && ! $wpdb -> get_var ( $wpdb -> prepare ( "SELECT post_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE %s" , $post_ID , $wpdb -> esc_like ( $url ) . '%' ) ) ) {
2009-12-30 07:36:17 +00:00
2017-11-30 23:11:00 +00:00
if ( $headers = wp_get_http_headers ( $url ) ) {
$len = isset ( $headers [ 'content-length' ] ) ? ( int ) $headers [ 'content-length' ] : 0 ;
$type = isset ( $headers [ 'content-type' ] ) ? $headers [ 'content-type' ] : '' ;
2005-03-07 08:56:47 +00:00
$allowed_types = array ( 'video' , 'audio' );
2009-12-30 07:36:17 +00:00
// Check to see if we can figure out the mime type from
// the extension
2010-04-16 19:48:30 +00:00
$url_parts = @ parse_url ( $url );
if ( false !== $url_parts ) {
$extension = pathinfo ( $url_parts [ 'path' ], PATHINFO_EXTENSION );
2017-11-30 23:11:00 +00:00
if ( ! empty ( $extension ) ) {
2012-08-17 17:25:19 +00:00
foreach ( wp_get_mime_types () as $exts => $mime ) {
2010-04-16 19:48:30 +00:00
if ( preg_match ( '!^(' . $exts . ')$!i' , $extension ) ) {
$type = $mime ;
break ;
}
2009-12-30 07:36:17 +00:00
}
}
}
2017-11-30 23:11:00 +00:00
if ( in_array ( substr ( $type , 0 , strpos ( $type , '/' ) ), $allowed_types ) ) {
2013-03-01 16:28:40 +00:00
add_post_meta ( $post_ID , 'enclosure' , " $url \n $len \n $mime \n " );
2005-03-07 08:56:47 +00:00
}
}
}
2007-10-11 05:46:57 +00:00
}
2005-03-07 08:56:47 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Retrieve HTTP Headers from URL.
*
* @since 1.5.1
*
2014-06-30 03:56:15 +00:00
* @param string $url URL to retrieve HTTP headers from.
* @param bool $deprecated Not Used.
2008-06-15 09:38:32 +00:00
* @return bool|string False on failure, headers on success.
*/
2008-09-27 21:41:19 +00:00
function wp_get_http_headers ( $url , $deprecated = false ) {
2017-11-30 23:11:00 +00:00
if ( ! empty ( $deprecated ) ) {
2016-07-06 12:40:29 +00:00
_deprecated_argument ( __FUNCTION__ , '2.7.0' );
2017-11-30 23:11:00 +00:00
}
2009-12-30 16:23:39 +00:00
2013-07-31 06:52:13 +00:00
$response = wp_safe_remote_head ( $url );
2008-10-02 00:32:21 +00:00
2017-11-30 23:11:00 +00:00
if ( is_wp_error ( $response ) ) {
2008-10-02 00:32:21 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2008-10-02 00:32:21 +00:00
2008-09-27 21:41:19 +00:00
return wp_remote_retrieve_headers ( $response );
2007-12-16 21:34:48 +00:00
}
2008-06-15 09:38:32 +00:00
/**
2018-02-13 16:54:31 +00:00
* Determines whether the publish date of the current post in the loop is different
* from the publish date of the previous post in the loop.
2018-02-19 02:13:32 +00:00
*
2018-02-13 16:54:31 +00:00
* For more information on this and similar theme functions, check out
2018-02-19 02:13:32 +00:00
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
2018-02-13 16:54:31 +00:00
* Conditional Tags} article in the Theme Developer Handbook.
2018-02-19 02:13:32 +00:00
*
2008-06-15 09:38:32 +00:00
* @since 0.71
2014-06-30 03:56:15 +00:00
*
2014-07-01 01:44:15 +00:00
* @global string $currentday The day of the current post in the loop.
2014-05-27 11:41:14 +00:00
* @global string $previousday The day of the previous post in the loop.
2008-06-15 09:38:32 +00:00
*
2014-11-30 23:24:25 +00:00
* @return int 1 when new day, 0 if not a new day.
2008-06-15 09:38:32 +00:00
*/
2003-10-27 07:00:42 +00:00
function is_new_day () {
2010-11-11 16:22:18 +00:00
global $currentday , $previousday ;
2017-11-30 23:11:00 +00:00
if ( $currentday != $previousday ) {
2007-10-11 05:46:57 +00:00
return 1 ;
2017-11-30 23:11:00 +00:00
} else {
2007-10-11 05:46:57 +00:00
return 0 ;
2017-11-30 23:11:00 +00:00
}
2003-10-27 07:00:42 +00:00
}
2008-06-30 03:23:44 +00:00
/**
* Build URL query based on an associative and, or indexed array.
*
* This is a convenient function for easily building url queries. It sets the
* separator to '&' and uses _http_build_query() function.
*
2014-07-01 01:44:15 +00:00
* @since 2.3.0
*
2008-06-30 03:23:44 +00:00
* @see _http_build_query() Used to build the query
2016-06-10 04:50:33 +00:00
* @link https://secure.php.net/manual/en/function.http-build-query.php for more on what
2017-11-30 23:11:00 +00:00
* http_build_query() does.
2008-06-30 03:23:44 +00:00
*
* @param array $data URL-encode key/value pairs.
2014-07-01 01:44:15 +00:00
* @return string URL-encoded string.
2008-06-30 03:23:44 +00:00
*/
2007-10-11 05:46:57 +00:00
function build_query ( $data ) {
2008-08-09 04:51:51 +00:00
return _http_build_query ( $data , null , '&' , '' , false );
2007-09-08 14:27:24 +00:00
}
2014-06-30 03:47:16 +00:00
/**
* From php.net (modified by Mark Jaquith to behave like the native PHP5 function).
*
* @since 3.2.0
2014-07-07 06:19:14 +00:00
* @access private
2014-06-30 03:47:16 +00:00
*
2016-06-10 04:50:33 +00:00
* @see https://secure.php.net/manual/en/function.http-build-query.php
2014-06-30 03:47:16 +00:00
*
* @param array|object $data An array or object of data. Converted to array.
* @param string $prefix Optional. Numeric index. If set, start parameter numbering with it.
* Default null.
* @param string $sep Optional. Argument separator; defaults to 'arg_separator.output'.
* Default null.
* @param string $key Optional. Used to prefix key name. Default empty.
* @param bool $urlencode Optional. Whether to use urlencode() in the result. Default true.
*
* @return string The query string.
*/
function _http_build_query ( $data , $prefix = null , $sep = null , $key = '' , $urlencode = true ) {
2011-04-05 17:13:04 +00:00
$ret = array ();
foreach ( ( array ) $data as $k => $v ) {
2017-11-30 23:11:00 +00:00
if ( $urlencode ) {
$k = urlencode ( $k );
}
if ( is_int ( $k ) && $prefix != null ) {
$k = $prefix . $k ;
}
if ( ! empty ( $key ) ) {
2011-04-05 17:13:04 +00:00
$k = $key . '%5B' . $k . '%5D' ;
2017-11-30 23:11:00 +00:00
}
if ( $v === null ) {
2011-04-05 17:13:04 +00:00
continue ;
2017-11-30 23:11:00 +00:00
} elseif ( $v === false ) {
2011-04-05 17:13:04 +00:00
$v = '0' ;
2017-11-30 23:11:00 +00:00
}
2011-04-05 17:13:04 +00:00
2017-11-30 23:11:00 +00:00
if ( is_array ( $v ) || is_object ( $v ) ) {
array_push ( $ret , _http_build_query ( $v , '' , $sep , $k , $urlencode ) );
} elseif ( $urlencode ) {
array_push ( $ret , $k . '=' . urlencode ( $v ) );
} else {
array_push ( $ret , $k . '=' . $v );
}
2011-04-05 17:13:04 +00:00
}
2017-11-30 23:11:00 +00:00
if ( null === $sep ) {
$sep = ini_get ( 'arg_separator.output' );
}
2011-04-05 17:13:04 +00:00
2017-11-30 23:11:00 +00:00
return implode ( $sep , $ret );
2011-04-05 17:13:04 +00:00
}
2008-06-15 09:38:32 +00:00
/**
2015-09-24 19:32:24 +00:00
* Retrieves a modified URL query string.
2008-06-15 09:38:32 +00:00
*
2015-09-24 19:32:24 +00:00
* You can rebuild the URL and append query variables to the URL query by using this function.
* There are two ways to use this function; either a single key and value, or an associative array.
2008-06-15 09:38:32 +00:00
*
2015-09-24 19:32:24 +00:00
* Using a single key and value:
2008-06-15 09:38:32 +00:00
*
2015-09-24 19:32:24 +00:00
* add_query_arg( 'key', 'value', 'http://example.com' );
*
* Using an associative array:
2015-10-06 03:19:25 +00:00
*
2015-09-24 19:32:24 +00:00
* add_query_arg( array(
* 'key1' => 'value1',
* 'key2' => 'value2',
* ), 'http://example.com' );
2015-10-06 03:19:25 +00:00
*
2015-09-24 19:32:24 +00:00
* Omitting the URL from either use results in the current URL being used
* (the value of `$_SERVER['REQUEST_URI']`).
2015-10-06 03:19:25 +00:00
*
2015-09-24 19:32:24 +00:00
* Values are expected to be encoded appropriately with urlencode() or rawurlencode().
*
* Setting any query variable's value to boolean false removes the key (see remove_query_arg()).
*
* Important: The return value of add_query_arg() is not escaped by default. Output should be
* late-escaped with esc_url() or similar to help prevent vulnerability to cross-site scripting
* (XSS) attacks.
2015-09-17 09:39:24 +00:00
*
2008-06-15 09:38:32 +00:00
* @since 1.5.0
*
2015-09-24 19:32:24 +00:00
* @param string|array $key Either a query variable key, or an associative array of query variables.
* @param string $value Optional. Either a query variable value, or a URL to act upon.
* @param string $url Optional. A URL to act upon.
* @return string New URL query string (unescaped).
2008-06-15 09:38:32 +00:00
*/
2004-10-20 21:28:37 +00:00
function add_query_arg () {
2012-07-31 15:28:10 +00:00
$args = func_get_args ();
if ( is_array ( $args [ 0 ] ) ) {
2017-11-30 23:11:00 +00:00
if ( count ( $args ) < 2 || false === $args [ 1 ] ) {
2006-01-23 23:42:25 +00:00
$uri = $_SERVER [ 'REQUEST_URI' ];
2017-11-30 23:11:00 +00:00
} else {
2012-07-31 15:28:10 +00:00
$uri = $args [ 1 ];
2017-11-30 23:11:00 +00:00
}
2005-10-10 09:25:38 +00:00
} else {
2017-11-30 23:11:00 +00:00
if ( count ( $args ) < 3 || false === $args [ 2 ] ) {
2004-11-21 06:03:19 +00:00
$uri = $_SERVER [ 'REQUEST_URI' ];
2017-11-30 23:11:00 +00:00
} else {
2012-07-31 15:28:10 +00:00
$uri = $args [ 2 ];
2017-11-30 23:11:00 +00:00
}
2004-10-20 21:28:37 +00:00
}
2004-11-21 06:03:19 +00:00
2017-11-30 23:11:00 +00:00
if ( $frag = strstr ( $uri , '#' ) ) {
2007-10-11 05:46:57 +00:00
$uri = substr ( $uri , 0 , - strlen ( $frag ) );
2017-11-30 23:11:00 +00:00
} else {
2006-08-30 01:02:45 +00:00
$frag = '' ;
2017-11-30 23:11:00 +00:00
}
2006-08-30 01:02:45 +00:00
2013-06-19 08:33:10 +00:00
if ( 0 === stripos ( $uri , 'http://' ) ) {
2012-09-16 16:16:26 +00:00
$protocol = 'http://' ;
2017-11-30 23:11:00 +00:00
$uri = substr ( $uri , 7 );
2013-06-19 08:33:10 +00:00
} elseif ( 0 === stripos ( $uri , 'https://' ) ) {
2012-09-16 16:16:26 +00:00
$protocol = 'https://' ;
2017-11-30 23:11:00 +00:00
$uri = substr ( $uri , 8 );
2006-06-08 18:36:05 +00:00
} else {
$protocol = '' ;
}
2007-10-11 05:46:57 +00:00
if ( strpos ( $uri , '?' ) !== false ) {
2013-09-10 23:38:09 +00:00
list ( $base , $query ) = explode ( '?' , $uri , 2 );
2017-11-30 23:11:00 +00:00
$base .= '?' ;
2012-09-16 16:16:26 +00:00
} elseif ( $protocol || strpos ( $uri , '=' ) === false ) {
2017-11-30 23:11:00 +00:00
$base = $uri . '?' ;
2004-10-20 21:28:37 +00:00
$query = '' ;
2005-04-01 05:42:46 +00:00
} else {
2017-11-30 23:11:00 +00:00
$base = '' ;
2005-04-01 05:42:46 +00:00
$query = $uri ;
2004-10-20 21:28:37 +00:00
}
2005-04-01 05:42:46 +00:00
2007-10-11 05:46:57 +00:00
wp_parse_str ( $query , $qs );
$qs = urlencode_deep ( $qs ); // this re-URL-encodes things that were already in the query string
2012-07-31 15:28:10 +00:00
if ( is_array ( $args [ 0 ] ) ) {
2015-04-01 19:40:26 +00:00
foreach ( $args [ 0 ] as $k => $v ) {
$qs [ $k ] = $v ;
}
2005-10-10 09:25:38 +00:00
} else {
2012-07-31 15:28:10 +00:00
$qs [ $args [ 0 ] ] = $args [ 1 ];
2004-10-20 21:28:37 +00:00
}
2005-10-10 09:25:38 +00:00
2012-09-16 16:16:26 +00:00
foreach ( $qs as $k => $v ) {
2017-11-30 23:11:00 +00:00
if ( $v === false ) {
unset ( $qs [ $k ] );
}
2005-10-10 09:25:38 +00:00
}
2007-09-01 03:41:50 +00:00
2007-10-11 05:46:57 +00:00
$ret = build_query ( $qs );
$ret = trim ( $ret , '?' );
$ret = preg_replace ( '#=(&|$)#' , '$1' , $ret );
2006-08-30 01:02:45 +00:00
$ret = $protocol . $base . $ret . $frag ;
2007-10-11 05:46:57 +00:00
$ret = rtrim ( $ret , '?' );
2007-04-06 04:21:21 +00:00
return $ret ;
2004-10-20 21:28:37 +00:00
}
2008-06-15 09:38:32 +00:00
/**
2015-09-24 19:34:24 +00:00
* Removes an item or items from a query string.
2008-06-15 09:38:32 +00:00
*
* @since 1.5.0
*
2014-07-01 01:44:15 +00:00
* @param string|array $key Query key or keys to remove.
2015-09-24 19:34:24 +00:00
* @param bool|string $query Optional. When false uses the current URL. Default false.
2008-08-09 04:51:51 +00:00
* @return string New URL query string.
2008-06-15 09:38:32 +00:00
*/
2014-07-01 01:44:15 +00:00
function remove_query_arg ( $key , $query = false ) {
2007-10-11 05:46:57 +00:00
if ( is_array ( $key ) ) { // removing multiple keys
2017-11-30 23:11:00 +00:00
foreach ( $key as $k ) {
2008-06-15 09:38:32 +00:00
$query = add_query_arg ( $k , false , $query );
2017-11-30 23:11:00 +00:00
}
2006-06-08 18:36:05 +00:00
return $query ;
}
2008-06-15 09:38:32 +00:00
return add_query_arg ( $key , false , $query );
2004-10-20 21:28:37 +00:00
}
2004-12-04 00:12:08 +00:00
2015-09-02 11:29:23 +00:00
/**
* Returns an array of single-use query variable names that can be removed from a URL.
*
* @since 4.4.0
*
* @return array An array of parameters to remove from the URL.
*/
function wp_removable_query_args () {
$removable_query_args = array (
'activate' ,
'activated' ,
'approved' ,
'deactivate' ,
'deleted' ,
'disabled' ,
'enabled' ,
'error' ,
2016-06-09 01:56:27 +00:00
'hotkeys_highlight_first' ,
'hotkeys_highlight_last' ,
2015-09-02 11:29:23 +00:00
'locked' ,
'message' ,
'same' ,
'saved' ,
'settings-updated' ,
'skipped' ,
'spammed' ,
'trashed' ,
'unspammed' ,
'untrashed' ,
'update' ,
'updated' ,
2015-10-30 18:06:34 +00:00
'wp-post-new-reload' ,
2015-09-02 11:29:23 +00:00
);
/**
2016-05-22 18:36:27 +00:00
* Filters the list of query variables to remove.
2015-09-02 11:29:23 +00:00
*
* @since 4.2.0
*
* @param array $removable_query_args An array of query variables to remove from a URL.
*/
return apply_filters ( 'removable_query_args' , $removable_query_args );
}
2008-06-15 09:38:32 +00:00
/**
* Walks the array while sanitizing the contents.
*
2008-08-10 16:45:50 +00:00
* @since 0.71
2008-06-15 09:38:32 +00:00
*
2013-02-15 18:59:56 +00:00
* @param array $array Array to walk while sanitizing contents.
2008-06-15 09:38:32 +00:00
* @return array Sanitized $array.
*/
2007-10-11 05:46:57 +00:00
function add_magic_quotes ( $array ) {
2008-08-06 20:31:54 +00:00
foreach ( ( array ) $array as $k => $v ) {
2007-10-11 05:46:57 +00:00
if ( is_array ( $v ) ) {
2017-11-30 23:11:00 +00:00
$array [ $k ] = add_magic_quotes ( $v );
2004-12-16 02:57:05 +00:00
} else {
2017-11-30 23:11:00 +00:00
$array [ $k ] = addslashes ( $v );
2004-12-16 02:57:05 +00:00
}
}
return $array ;
}
2008-06-30 03:23:44 +00:00
/**
* HTTP request for URI to retrieve content.
*
2008-08-10 16:45:50 +00:00
* @since 1.5.1
2014-07-01 01:44:15 +00:00
*
* @see wp_safe_remote_get()
2008-06-30 03:23:44 +00:00
*
* @param string $uri URI/URL of web page to retrieve.
2014-11-30 23:24:25 +00:00
* @return false|string HTTP content. False on failure.
2008-06-30 03:23:44 +00:00
*/
2005-05-03 07:52:11 +00:00
function wp_remote_fopen ( $uri ) {
2007-10-11 05:46:57 +00:00
$parsed_url = @ parse_url ( $uri );
2007-01-16 18:41:05 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $parsed_url || ! is_array ( $parsed_url ) ) {
2007-01-16 18:41:05 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2007-01-16 18:41:05 +00:00
2017-11-30 23:11:00 +00:00
$options = array ();
2008-09-27 21:41:19 +00:00
$options [ 'timeout' ] = 10 ;
2007-01-16 18:41:05 +00:00
2013-07-31 06:52:13 +00:00
$response = wp_safe_remote_get ( $uri , $options );
2007-01-16 18:41:05 +00:00
2017-11-30 23:11:00 +00:00
if ( is_wp_error ( $response ) ) {
2008-10-02 00:32:21 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2008-10-02 00:32:21 +00:00
2011-05-14 19:45:07 +00:00
return wp_remote_retrieve_body ( $response );
2005-05-03 07:52:11 +00:00
}
2008-08-09 04:51:51 +00:00
/**
2010-03-17 04:39:50 +00:00
* Set up the WordPress query.
2008-08-09 04:51:51 +00:00
*
* @since 2.0.0
*
2015-05-25 16:11:25 +00:00
* @global WP $wp_locale
* @global WP_Query $wp_query
* @global WP_Query $wp_the_query
*
2015-01-16 19:03:23 +00:00
* @param string|array $query_vars Default WP_Query arguments.
2008-08-09 04:51:51 +00:00
*/
2007-10-11 05:46:57 +00:00
function wp ( $query_vars = '' ) {
2007-10-12 21:47:34 +00:00
global $wp , $wp_query , $wp_the_query ;
2007-10-11 05:46:57 +00:00
$wp -> main ( $query_vars );
2007-10-12 21:47:34 +00:00
2017-11-30 23:11:00 +00:00
if ( ! isset ( $wp_the_query ) ) {
2007-10-12 21:47:34 +00:00
$wp_the_query = $wp_query ;
2017-11-30 23:11:00 +00:00
}
2005-06-10 23:15:13 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Retrieve the description for the HTTP status.
*
* @since 2.3.0
2017-11-20 20:35:48 +00:00
* @since 3.9.0 Added status codes 418, 428, 429, 431, and 511.
* @since 4.5.0 Added status codes 308, 421, and 451.
2019-01-03 15:21:52 +00:00
* @since 5.1.0 Added status code 103.
2008-06-15 09:38:32 +00:00
*
2015-05-25 16:11:25 +00:00
* @global array $wp_header_to_desc
*
2008-06-15 09:38:32 +00:00
* @param int $code HTTP status code.
* @return string Empty string if not found, or description if found.
*/
2007-05-11 03:34:50 +00:00
function get_status_header_desc ( $code ) {
global $wp_header_to_desc ;
2007-06-14 02:25:30 +00:00
2007-10-11 05:46:57 +00:00
$code = absint ( $code );
2007-06-14 02:25:30 +00:00
2017-11-30 23:11:00 +00:00
if ( ! isset ( $wp_header_to_desc ) ) {
2007-09-13 04:48:41 +00:00
$wp_header_to_desc = array (
100 => 'Continue' ,
101 => 'Switching Protocols' ,
2009-03-07 21:05:54 +00:00
102 => 'Processing' ,
2017-11-20 20:35:48 +00:00
103 => 'Early Hints' ,
2007-09-13 04:48:41 +00:00
200 => 'OK' ,
201 => 'Created' ,
202 => 'Accepted' ,
203 => 'Non-Authoritative Information' ,
204 => 'No Content' ,
205 => 'Reset Content' ,
206 => 'Partial Content' ,
2009-03-07 21:05:54 +00:00
207 => 'Multi-Status' ,
226 => 'IM Used' ,
2007-09-13 04:48:41 +00:00
300 => 'Multiple Choices' ,
301 => 'Moved Permanently' ,
302 => 'Found' ,
303 => 'See Other' ,
304 => 'Not Modified' ,
305 => 'Use Proxy' ,
2009-03-07 21:05:54 +00:00
306 => 'Reserved' ,
2007-09-13 04:48:41 +00:00
307 => 'Temporary Redirect' ,
2016-01-13 02:55:26 +00:00
308 => 'Permanent Redirect' ,
2007-09-13 04:48:41 +00:00
400 => 'Bad Request' ,
401 => 'Unauthorized' ,
2009-03-07 21:05:54 +00:00
402 => 'Payment Required' ,
2007-09-13 04:48:41 +00:00
403 => 'Forbidden' ,
404 => 'Not Found' ,
405 => 'Method Not Allowed' ,
406 => 'Not Acceptable' ,
407 => 'Proxy Authentication Required' ,
408 => 'Request Timeout' ,
409 => 'Conflict' ,
410 => 'Gone' ,
411 => 'Length Required' ,
412 => 'Precondition Failed' ,
413 => 'Request Entity Too Large' ,
414 => 'Request-URI Too Long' ,
415 => 'Unsupported Media Type' ,
416 => 'Requested Range Not Satisfiable' ,
417 => 'Expectation Failed' ,
2014-03-05 22:01:16 +00:00
418 => 'I\'m a teapot' ,
2016-01-13 02:55:26 +00:00
421 => 'Misdirected Request' ,
2009-03-07 21:05:54 +00:00
422 => 'Unprocessable Entity' ,
423 => 'Locked' ,
424 => 'Failed Dependency' ,
426 => 'Upgrade Required' ,
2014-03-05 22:01:16 +00:00
428 => 'Precondition Required' ,
429 => 'Too Many Requests' ,
431 => 'Request Header Fields Too Large' ,
2016-01-13 02:49:25 +00:00
451 => 'Unavailable For Legal Reasons' ,
2007-09-13 04:48:41 +00:00
500 => 'Internal Server Error' ,
501 => 'Not Implemented' ,
502 => 'Bad Gateway' ,
503 => 'Service Unavailable' ,
504 => 'Gateway Timeout' ,
2009-03-07 21:05:54 +00:00
505 => 'HTTP Version Not Supported' ,
506 => 'Variant Also Negotiates' ,
507 => 'Insufficient Storage' ,
2014-03-05 22:01:16 +00:00
510 => 'Not Extended' ,
511 => 'Network Authentication Required' ,
2007-09-13 04:48:41 +00:00
);
}
2017-11-30 23:11:00 +00:00
if ( isset ( $wp_header_to_desc [ $code ] ) ) {
return $wp_header_to_desc [ $code ];
} else {
2007-05-11 03:34:50 +00:00
return '' ;
2017-11-30 23:11:00 +00:00
}
2007-05-11 03:34:50 +00:00
}
2008-06-30 03:23:44 +00:00
/**
* Set HTTP status header.
*
2008-08-10 16:45:50 +00:00
* @since 2.0.0
2015-10-07 21:26:25 +00:00
* @since 4.4.0 Added the `$description` parameter.
2014-07-01 01:44:15 +00:00
*
2013-10-30 14:39:10 +00:00
* @see get_status_header_desc()
2008-06-30 03:23:44 +00:00
*
2015-10-07 21:26:25 +00:00
* @param int $code HTTP status code.
* @param string $description Optional. A custom description for the HTTP status.
2008-06-30 03:23:44 +00:00
*/
2015-10-07 21:26:25 +00:00
function status_header ( $code , $description = '' ) {
if ( ! $description ) {
$description = get_status_header_desc ( $code );
}
2007-06-14 02:25:30 +00:00
2015-10-07 21:26:25 +00:00
if ( empty ( $description ) ) {
2013-10-30 14:39:10 +00:00
return ;
2015-10-07 21:26:25 +00:00
}
2007-05-12 21:55:14 +00:00
2017-11-30 23:11:00 +00:00
$protocol = wp_get_server_protocol ();
2013-10-30 14:39:10 +00:00
$status_header = " $protocol $code $description " ;
2017-11-30 23:11:00 +00:00
if ( function_exists ( 'apply_filters' ) ) {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters an HTTP status header.
2014-04-14 00:20:14 +00:00
*
* @since 2.2.0
*
* @param string $status_header HTTP status header.
* @param int $code HTTP status code.
* @param string $description Description for the status code.
* @param string $protocol Server protocol.
*/
2013-10-30 14:39:10 +00:00
$status_header = apply_filters ( 'status_header' , $status_header , $code , $description , $protocol );
2017-11-30 23:11:00 +00:00
}
2007-05-12 21:55:14 +00:00
2013-10-30 14:39:10 +00:00
@ header ( $status_header , true , $code );
2005-06-09 00:17:43 +00:00
}
2009-02-21 21:39:06 +00:00
/**
2014-07-01 01:44:15 +00:00
* Get the header information to prevent caching.
2009-02-21 21:39:06 +00:00
*
2014-07-01 01:44:15 +00:00
* The several different headers cover the different ways cache prevention
* is handled by different browsers
2009-02-21 21:39:06 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.8.0
2009-02-21 21:39:06 +00:00
*
* @return array The associative array of header names and field values.
*/
function wp_get_nocache_headers () {
$headers = array (
2017-11-30 23:11:00 +00:00
'Expires' => 'Wed, 11 Jan 1984 05:00:00 GMT' ,
2009-02-21 21:39:06 +00:00
'Cache-Control' => 'no-cache, must-revalidate, max-age=0' ,
);
2009-03-18 02:43:45 +00:00
2017-11-30 23:11:00 +00:00
if ( function_exists ( 'apply_filters' ) ) {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the cache-controlling headers.
2014-04-14 00:20:14 +00:00
*
* @since 2.8.0
*
2014-07-01 01:44:15 +00:00
* @see wp_get_nocache_headers()
*
2014-04-14 00:20:14 +00:00
* @param array $headers {
* Header names and field values.
*
* @type string $Expires Expires header.
* @type string $Cache-Control Cache-Control header.
* }
*/
$headers = ( array ) apply_filters ( 'nocache_headers' , $headers );
2009-02-22 10:09:30 +00:00
}
2013-01-04 19:51:31 +00:00
$headers [ 'Last-Modified' ] = false ;
2009-02-22 10:09:30 +00:00
return $headers ;
2009-02-21 21:39:06 +00:00
}
2008-06-15 09:38:32 +00:00
/**
2014-07-01 01:44:15 +00:00
* Set the headers to prevent caching for the different browsers.
2008-06-15 09:38:32 +00:00
*
2014-07-01 01:44:15 +00:00
* Different browsers support different nocache headers, so several
* headers must be sent so that all of them get the point that no
* caching should occur.
2008-06-15 09:38:32 +00:00
*
* @since 2.0.0
2014-07-01 01:44:15 +00:00
*
2013-10-30 14:39:10 +00:00
* @see wp_get_nocache_headers()
2008-06-15 09:38:32 +00:00
*/
2005-06-09 00:17:43 +00:00
function nocache_headers () {
2009-02-21 21:39:06 +00:00
$headers = wp_get_nocache_headers ();
2013-01-04 19:51:31 +00:00
unset ( $headers [ 'Last-Modified' ] );
// In PHP 5.3+, make sure we are not sending a Last-Modified header.
if ( function_exists ( 'header_remove' ) ) {
@ header_remove ( 'Last-Modified' );
} else {
// In PHP 5.2, send an empty Last-Modified header, but only as a
// last resort to override a header already sent. #WP23021
foreach ( headers_list () as $header ) {
if ( 0 === stripos ( $header , 'Last-Modified' ) ) {
$headers [ 'Last-Modified' ] = '' ;
break ;
}
}
}
2017-11-30 23:11:00 +00:00
foreach ( $headers as $name => $field_value ) {
@ header ( " { $name } : { $field_value } " );
}
2005-06-09 00:17:43 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Set the headers for caching for 10 days with JavaScript content type.
*
* @since 2.1.0
*/
2006-08-22 17:31:53 +00:00
function cache_javascript_headers () {
2012-09-25 05:26:19 +00:00
$expiresOffset = 10 * DAY_IN_SECONDS ;
2014-07-01 01:44:15 +00:00
2017-11-30 23:11:00 +00:00
header ( 'Content-Type: text/javascript; charset=' . get_bloginfo ( 'charset' ) );
header ( 'Vary: Accept-Encoding' ); // Handle proxies
header ( 'Expires: ' . gmdate ( 'D, d M Y H:i:s' , time () + $expiresOffset ) . ' GMT' );
2006-08-22 17:31:53 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Retrieve the number of database queries during the WordPress execution.
*
* @since 2.0.0
*
2014-10-31 17:56:22 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2014-07-01 01:44:15 +00:00
*
* @return int Number of database queries.
2008-06-15 09:38:32 +00:00
*/
2005-11-16 23:48:12 +00:00
function get_num_queries () {
global $wpdb ;
return $wpdb -> num_queries ;
}
2008-06-15 09:38:32 +00:00
/**
2014-07-01 01:44:15 +00:00
* Whether input is yes or no.
*
* Must be 'y' to be true.
2008-06-15 09:38:32 +00:00
*
* @since 1.0.0
*
2014-07-01 01:44:15 +00:00
* @param string $yn Character string containing either 'y' (yes) or 'n' (no).
* @return bool True if yes, false on anything else.
2008-06-15 09:38:32 +00:00
*/
2007-05-28 17:11:42 +00:00
function bool_from_yn ( $yn ) {
return ( strtolower ( $yn ) == 'y' );
2006-02-27 04:57:30 +00:00
}
2006-03-12 22:57:00 +00:00
2008-08-09 04:51:51 +00:00
/**
2014-07-01 01:44:15 +00:00
* Load the feed template from the use of an action hook.
2008-08-09 04:51:51 +00:00
*
* If the feed action does not have a hook, then the function will die with a
* message telling the visitor that the feed is not valid.
*
* It is better to only have one hook for each feed.
*
* @since 2.1.0
2014-04-14 00:20:14 +00:00
*
2015-05-25 16:11:25 +00:00
* @global WP_Query $wp_query Used to tell if the use a comment feed.
2008-08-09 04:51:51 +00:00
*/
2006-03-12 22:57:00 +00:00
function do_feed () {
2007-02-24 07:33:29 +00:00
global $wp_query ;
2007-10-11 05:46:57 +00:00
$feed = get_query_var ( 'feed' );
2006-03-12 22:57:00 +00:00
// Remove the pad, if present.
2007-10-11 05:46:57 +00:00
$feed = preg_replace ( '/^_+/' , '' , $feed );
2006-03-12 22:57:00 +00:00
2017-11-30 23:11:00 +00:00
if ( $feed == '' || $feed == 'feed' ) {
2007-12-06 19:58:15 +00:00
$feed = get_default_feed ();
2017-11-30 23:11:00 +00:00
}
2006-03-12 22:57:00 +00:00
2015-10-13 01:07:25 +00:00
if ( ! has_action ( "do_feed_ { $feed } " ) ) {
2013-08-30 23:37:11 +00:00
wp_die ( __ ( 'ERROR: This is not a valid feed template.' ), '' , array ( 'response' => 404 ) );
2015-10-13 01:07:25 +00:00
}
2008-02-26 10:05:05 +00:00
2014-04-14 00:20:14 +00:00
/**
* Fires once the given feed is loaded.
*
2015-10-13 01:03:25 +00:00
* The dynamic portion of the hook name, `$feed`, refers to the feed template name.
* Possible values include: 'rdf', 'rss', 'rss2', and 'atom'.
2014-04-14 00:20:14 +00:00
*
* @since 2.1.0
2015-10-13 02:44:23 +00:00
* @since 4.4.0 The `$feed` parameter was added.
2014-04-14 00:20:14 +00:00
*
2015-10-13 02:44:23 +00:00
* @param bool $is_comment_feed Whether the feed is a comment feed.
* @param string $feed The feed name.
2014-04-14 00:20:14 +00:00
*/
2015-10-13 02:44:23 +00:00
do_action ( "do_feed_ { $feed } " , $wp_query -> is_comment_feed , $feed );
2006-03-12 22:57:00 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Load the RDF RSS 0.91 Feed template.
*
* @since 2.1.0
2014-07-01 01:44:15 +00:00
*
* @see load_template()
2008-06-15 09:38:32 +00:00
*/
2006-03-12 22:57:00 +00:00
function do_feed_rdf () {
2007-10-11 05:46:57 +00:00
load_template ( ABSPATH . WPINC . '/feed-rdf.php' );
2006-03-12 22:57:00 +00:00
}
2008-06-15 09:38:32 +00:00
/**
2011-07-21 17:48:25 +00:00
* Load the RSS 1.0 Feed Template.
2008-06-15 09:38:32 +00:00
*
* @since 2.1.0
2014-07-01 01:44:15 +00:00
*
* @see load_template()
2008-06-15 09:38:32 +00:00
*/
2006-03-12 22:57:00 +00:00
function do_feed_rss () {
2007-10-11 05:46:57 +00:00
load_template ( ABSPATH . WPINC . '/feed-rss.php' );
2006-03-12 22:57:00 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Load either the RSS2 comment feed or the RSS2 posts feed.
*
* @since 2.1.0
*
2014-07-01 01:44:15 +00:00
* @see load_template()
*
2008-06-15 09:38:32 +00:00
* @param bool $for_comments True for the comment feed, false for normal feed.
*/
2007-10-11 05:46:57 +00:00
function do_feed_rss2 ( $for_comments ) {
2017-11-30 23:11:00 +00:00
if ( $for_comments ) {
2007-10-11 05:46:57 +00:00
load_template ( ABSPATH . WPINC . '/feed-rss2-comments.php' );
2017-11-30 23:11:00 +00:00
} else {
2007-10-11 05:46:57 +00:00
load_template ( ABSPATH . WPINC . '/feed-rss2.php' );
2017-11-30 23:11:00 +00:00
}
2006-03-12 22:57:00 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Load either Atom comment feed or Atom posts feed.
*
* @since 2.1.0
*
2014-07-01 01:44:15 +00:00
* @see load_template()
*
2008-06-15 09:38:32 +00:00
* @param bool $for_comments True for the comment feed, false for normal feed.
*/
2007-10-11 05:46:57 +00:00
function do_feed_atom ( $for_comments ) {
2017-11-30 23:11:00 +00:00
if ( $for_comments ) {
load_template ( ABSPATH . WPINC . '/feed-atom-comments.php' );
} else {
2007-10-11 05:46:57 +00:00
load_template ( ABSPATH . WPINC . '/feed-atom.php' );
2017-11-30 23:11:00 +00:00
}
2006-03-12 22:57:00 +00:00
}
2006-03-31 08:07:39 +00:00
2008-06-15 09:38:32 +00:00
/**
2011-09-07 13:45:06 +00:00
* Display the robots.txt file content.
2008-06-15 09:38:32 +00:00
*
* The echo content should be with usage of the permalinks or for creating the
2011-09-07 13:45:06 +00:00
* robots.txt file.
2008-06-15 09:38:32 +00:00
*
* @since 2.1.0
*/
2006-05-22 22:06:06 +00:00
function do_robots () {
2007-10-11 05:46:57 +00:00
header ( 'Content-Type: text/plain; charset=utf-8' );
2007-03-27 16:44:36 +00:00
2014-04-14 00:20:14 +00:00
/**
* Fires when displaying the robots.txt file.
*
* @since 2.1.0
*/
2007-10-11 05:46:57 +00:00
do_action ( 'do_robotstxt' );
2007-03-27 16:44:36 +00:00
2011-09-29 21:47:04 +00:00
$output = "User-agent: * \n " ;
2010-03-30 15:48:52 +00:00
$public = get_option ( 'blog_public' );
2011-11-15 20:44:48 +00:00
if ( '0' == $public ) {
2010-03-30 15:48:52 +00:00
$output .= "Disallow: / \n " ;
2006-05-22 22:06:06 +00:00
} else {
2011-09-29 21:47:04 +00:00
$site_url = parse_url ( site_url () );
2017-11-30 23:11:00 +00:00
$path = ( ! empty ( $site_url [ 'path' ] ) ) ? $site_url [ 'path' ] : '' ;
$output .= "Disallow: $path /wp-admin/ \n " ;
$output .= "Allow: $path /wp-admin/admin-ajax.php \n " ;
2006-05-22 22:06:06 +00:00
}
2010-03-30 15:48:52 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the robots.txt output.
2014-04-14 00:20:14 +00:00
*
* @since 3.0.0
*
* @param string $output Robots.txt output.
* @param bool $public Whether the site is considered "public".
*/
echo apply_filters ( 'robots_txt' , $output , $public );
2006-05-22 22:06:06 +00:00
}
2008-08-09 04:51:51 +00:00
/**
2018-02-13 16:54:31 +00:00
* Determines whether WordPress is already installed.
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* The cache will be checked first. If you have a cache plugin, which saves
* the cache values, then this will work. If you use the default WordPress
* cache, and the database goes away, then you might have problems.
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* Checks for the 'siteurl' option for whether WordPress is installed.
2018-02-19 02:13:32 +00:00
*
2018-02-13 16:54:31 +00:00
* For more information on this and similar theme functions, check out
2018-02-19 02:13:32 +00:00
* the {@link https://developer.wordpress.org/themes/basics/conditional-tags/
2018-02-13 16:54:31 +00:00
* Conditional Tags} article in the Theme Developer Handbook.
2008-08-09 04:51:51 +00:00
*
* @since 2.1.0
*
2014-10-31 17:56:22 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2014-07-01 01:44:15 +00:00
*
2016-01-28 03:51:26 +00:00
* @return bool Whether the site is already installed.
2008-08-09 04:51:51 +00:00
*/
2006-03-31 08:07:39 +00:00
function is_blog_installed () {
2007-10-14 09:38:12 +00:00
global $wpdb ;
2007-10-13 18:39:28 +00:00
2014-07-01 01:44:15 +00:00
/*
* Check cache first. If options table goes away and we have true
* cached, oh well.
*/
2017-11-30 23:11:00 +00:00
if ( wp_cache_get ( 'is_blog_installed' ) ) {
2007-10-14 07:57:56 +00:00
return true ;
2017-11-30 23:11:00 +00:00
}
2007-10-13 18:39:28 +00:00
2008-03-12 22:41:43 +00:00
$suppress = $wpdb -> suppress_errors ();
2015-10-05 15:06:28 +00:00
if ( ! wp_installing () ) {
2010-02-05 17:59:24 +00:00
$alloptions = wp_load_alloptions ();
}
2009-04-17 01:43:53 +00:00
// If siteurl is not set to autoload, check it specifically
2017-11-30 23:11:00 +00:00
if ( ! isset ( $alloptions [ 'siteurl' ] ) ) {
2009-04-16 22:00:39 +00:00
$installed = $wpdb -> get_var ( "SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl'" );
2017-11-30 23:11:00 +00:00
} else {
2009-04-16 22:00:39 +00:00
$installed = $alloptions [ 'siteurl' ];
2017-11-30 23:11:00 +00:00
}
2009-04-17 01:43:53 +00:00
$wpdb -> suppress_errors ( $suppress );
2007-03-23 17:45:40 +00:00
2017-11-30 23:11:00 +00:00
$installed = ! empty ( $installed );
2009-04-17 01:43:53 +00:00
wp_cache_set ( 'is_blog_installed' , $installed );
2007-10-14 07:57:56 +00:00
2017-11-30 23:11:00 +00:00
if ( $installed ) {
2009-09-06 18:46:27 +00:00
return true ;
2017-11-30 23:11:00 +00:00
}
2009-09-06 18:46:27 +00:00
2011-10-21 22:16:33 +00:00
// If visiting repair.php, return true and let it take over.
2017-11-30 23:11:00 +00:00
if ( defined ( 'WP_REPAIRING' ) ) {
2011-10-21 22:16:33 +00:00
return true ;
2017-11-30 23:11:00 +00:00
}
2011-10-21 22:16:33 +00:00
2009-09-06 18:46:27 +00:00
$suppress = $wpdb -> suppress_errors ();
2014-07-01 01:44:15 +00:00
/*
2017-08-22 11:52:48 +00:00
* Loop over the WP tables. If none exist, then scratch installation is allowed.
2014-07-01 01:44:15 +00:00
* If one or more exist, suggest table repair since we got here because the
* options table could not be accessed.
*/
2011-10-21 22:16:33 +00:00
$wp_tables = $wpdb -> tables ();
2010-02-19 19:57:03 +00:00
foreach ( $wp_tables as $table ) {
2017-08-22 11:52:48 +00:00
// The existence of custom user tables shouldn't suggest an insane state or prevent a clean installation.
2017-11-30 23:11:00 +00:00
if ( defined ( 'CUSTOM_USER_TABLE' ) && CUSTOM_USER_TABLE == $table ) {
2011-10-21 22:16:33 +00:00
continue ;
2017-11-30 23:11:00 +00:00
}
if ( defined ( 'CUSTOM_USER_META_TABLE' ) && CUSTOM_USER_META_TABLE == $table ) {
2011-10-21 22:16:33 +00:00
continue ;
2017-11-30 23:11:00 +00:00
}
2010-03-03 07:27:18 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $wpdb -> get_results ( "DESCRIBE $table ;" ) ) {
2011-10-21 22:16:33 +00:00
continue ;
2017-11-30 23:11:00 +00:00
}
2011-10-21 22:16:33 +00:00
// One or more tables exist. We are insane.
2012-01-26 20:34:27 +00:00
wp_load_translations_early ();
2011-10-21 22:16:33 +00:00
// Die with a DB error.
2016-08-23 23:48:28 +00:00
$wpdb -> error = sprintf (
/* translators: %s: database repair URL */
__ ( 'One or more database tables are unavailable. The database may need to be <a href="%s">repaired</a>.' ),
'maint/repair.php?referrer=is_blog_installed'
);
2011-10-21 22:16:33 +00:00
dead_db ();
2009-09-06 18:46:27 +00:00
}
2011-10-21 22:16:33 +00:00
$wpdb -> suppress_errors ( $suppress );
2009-09-06 18:46:27 +00:00
wp_cache_set ( 'is_blog_installed' , false );
return false ;
2006-03-31 08:07:39 +00:00
}
2006-04-19 03:03:27 +00:00
2008-08-09 04:51:51 +00:00
/**
* Retrieve URL with nonce added to URL query.
*
* @since 2.0.4
*
2014-11-30 23:24:25 +00:00
* @param string $actionurl URL to add nonce action.
* @param int|string $action Optional. Nonce action name. Default -1.
* @param string $name Optional. Nonce name. Default '_wpnonce'.
2014-02-02 10:53:11 +00:00
* @return string Escaped URL with nonce action added.
2008-08-09 04:51:51 +00:00
*/
2013-02-28 18:08:53 +00:00
function wp_nonce_url ( $actionurl , $action = - 1 , $name = '_wpnonce' ) {
2007-10-11 05:46:57 +00:00
$actionurl = str_replace ( '&' , '&' , $actionurl );
2013-03-07 06:57:56 +00:00
return esc_html ( add_query_arg ( $name , wp_create_nonce ( $action ), $actionurl ) );
2006-05-02 22:08:34 +00:00
}
2008-08-10 16:45:50 +00:00
/**
* Retrieve or display nonce hidden field for forms.
*
* The nonce field is used to validate that the contents of the form came from
* the location on the current site and not somewhere else. The nonce does not
* offer absolute protection, but should protect against most cases. It is very
* important to use nonce field in forms.
*
* The $action and $name are optional, but if you want to have better security,
* it is strongly suggested to set those two parameters. It is easier to just
* call the function without any parameters, because validation of the nonce
* doesn't require any parameters, but since crackers know what the default is
* it won't be difficult for them to find a way around your nonce and cause
* damage.
*
* The input name will be whatever $name value you gave. The input value will be
* the nonce creation value.
*
* @since 2.0.4
*
2014-11-30 23:24:25 +00:00
* @param int|string $action Optional. Action name. Default -1.
* @param string $name Optional. Nonce name. Default '_wpnonce'.
* @param bool $referer Optional. Whether to set the referer field for validation. Default true.
* @param bool $echo Optional. Whether to display or return hidden form field. Default true.
2014-07-01 01:44:15 +00:00
* @return string Nonce field HTML markup.
2008-08-10 16:45:50 +00:00
*/
2017-11-30 23:11:00 +00:00
function wp_nonce_field ( $action = - 1 , $name = '_wpnonce' , $referer = true , $echo = true ) {
$name = esc_attr ( $name );
2008-03-15 22:44:34 +00:00
$nonce_field = '<input type="hidden" id="' . $name . '" name="' . $name . '" value="' . wp_create_nonce ( $action ) . '" />' ;
2008-08-09 05:36:14 +00:00
2017-11-30 23:11:00 +00:00
if ( $referer ) {
2011-06-03 18:23:41 +00:00
$nonce_field .= wp_referer_field ( false );
2017-11-30 23:11:00 +00:00
}
2011-06-03 18:23:41 +00:00
2017-11-30 23:11:00 +00:00
if ( $echo ) {
2011-06-03 18:23:41 +00:00
echo $nonce_field ;
2017-11-30 23:11:00 +00:00
}
2008-08-09 05:36:14 +00:00
2008-03-15 22:44:34 +00:00
return $nonce_field ;
2006-06-24 05:38:37 +00:00
}
2008-08-10 16:45:50 +00:00
/**
* Retrieve or display referer hidden field for forms.
*
* The referer link is the current Request URI from the server super global. The
* input name is '_wp_http_referer', in case you wanted to check manually.
*
* @since 2.0.4
*
2014-07-01 01:44:15 +00:00
* @param bool $echo Optional. Whether to echo or return the referer field. Default true.
* @return string Referer field HTML markup.
2008-08-10 16:45:50 +00:00
*/
2010-05-09 07:22:10 +00:00
function wp_referer_field ( $echo = true ) {
2017-11-30 23:11:00 +00:00
$referer_field = '<input type="hidden" name="_wp_http_referer" value="' . esc_attr ( wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) ) . '" />' ;
2008-03-15 22:44:34 +00:00
2017-11-30 23:11:00 +00:00
if ( $echo ) {
2008-03-15 22:44:34 +00:00
echo $referer_field ;
2017-11-30 23:11:00 +00:00
}
2008-03-15 22:44:34 +00:00
return $referer_field ;
2006-06-24 05:38:37 +00:00
}
2008-08-10 16:45:50 +00:00
/**
* Retrieve or display original referer hidden field for forms.
*
* The input name is '_wp_original_http_referer' and will be either the same
2014-07-01 01:44:15 +00:00
* value of wp_referer_field(), if that was posted already or it will be the
* current page, if it doesn't exist.
2008-08-10 16:45:50 +00:00
*
* @since 2.0.4
*
2014-07-01 01:44:15 +00:00
* @param bool $echo Optional. Whether to echo the original http referer. Default true.
* @param string $jump_back_to Optional. Can be 'previous' or page you want to jump back to.
* Default 'current'.
2008-08-10 16:45:50 +00:00
* @return string Original referer field.
*/
2008-03-21 03:31:12 +00:00
function wp_original_referer_field ( $echo = true , $jump_back_to = 'current' ) {
2013-03-01 17:58:43 +00:00
if ( ! $ref = wp_get_original_referer () ) {
$ref = 'previous' == $jump_back_to ? wp_get_referer () : wp_unslash ( $_SERVER [ 'REQUEST_URI' ] );
}
$orig_referer_field = '<input type="hidden" name="_wp_original_http_referer" value="' . esc_attr ( $ref ) . '" />' ;
2017-11-30 23:11:00 +00:00
if ( $echo ) {
2008-03-15 22:44:34 +00:00
echo $orig_referer_field ;
2017-11-30 23:11:00 +00:00
}
2008-03-15 22:44:34 +00:00
return $orig_referer_field ;
2006-06-24 05:38:37 +00:00
}
2008-08-10 16:45:50 +00:00
/**
2014-07-01 01:44:15 +00:00
* Retrieve referer from '_wp_http_referer' or HTTP referer.
*
* If it's the same as the current request URL, will return false.
2008-08-10 16:45:50 +00:00
*
* @since 2.0.4
*
2014-11-30 23:24:25 +00:00
* @return false|string False on failure. Referer URL on success.
2008-08-10 16:45:50 +00:00
*/
2006-06-24 05:38:37 +00:00
function wp_get_referer () {
2016-01-12 08:32:28 +00:00
if ( ! function_exists ( 'wp_validate_redirect' ) ) {
2013-09-12 13:33:09 +00:00
return false ;
2016-01-12 08:32:28 +00:00
}
$ref = wp_get_raw_referer ();
2008-03-21 03:31:12 +00:00
2016-01-09 14:36:26 +00:00
if ( $ref && $ref !== wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) && $ref !== home_url () . wp_unslash ( $_SERVER [ 'REQUEST_URI' ] ) ) {
2013-09-10 18:07:10 +00:00
return wp_validate_redirect ( $ref , false );
2016-01-09 14:36:26 +00:00
}
2006-06-24 05:38:37 +00:00
return false ;
}
2016-01-12 08:32:28 +00:00
/**
2016-02-07 08:09:25 +00:00
* Retrieves unvalidated referer from '_wp_http_referer' or HTTP referer.
2016-01-12 08:32:28 +00:00
*
2016-05-02 04:00:28 +00:00
* Do not use for redirects, use wp_get_referer() instead.
2016-01-12 08:32:28 +00:00
*
* @since 4.5.0
*
2016-02-07 08:09:25 +00:00
* @return string|false Referer URL on success, false on failure.
2016-01-12 08:32:28 +00:00
*/
function wp_get_raw_referer () {
if ( ! empty ( $_REQUEST [ '_wp_http_referer' ] ) ) {
return wp_unslash ( $_REQUEST [ '_wp_http_referer' ] );
2017-11-30 23:11:00 +00:00
} elseif ( ! empty ( $_SERVER [ 'HTTP_REFERER' ] ) ) {
2016-01-12 08:32:28 +00:00
return wp_unslash ( $_SERVER [ 'HTTP_REFERER' ] );
}
return false ;
}
2008-08-10 16:45:50 +00:00
/**
* Retrieve original referer that was posted, if it exists.
*
* @since 2.0.4
*
2014-11-30 23:24:25 +00:00
* @return string|false False if no original referer or original referer if set.
2008-08-10 16:45:50 +00:00
*/
2006-06-24 05:38:37 +00:00
function wp_get_original_referer () {
2017-11-30 23:11:00 +00:00
if ( ! empty ( $_REQUEST [ '_wp_original_http_referer' ] ) && function_exists ( 'wp_validate_redirect' ) ) {
2013-09-10 18:07:10 +00:00
return wp_validate_redirect ( wp_unslash ( $_REQUEST [ '_wp_original_http_referer' ] ), false );
2017-11-30 23:11:00 +00:00
}
2006-06-24 05:38:37 +00:00
return false ;
2006-05-02 22:08:34 +00:00
}
2008-08-10 16:45:50 +00:00
/**
* Recursive directory creation based on full path.
*
* Will attempt to set permissions on folders.
*
* @since 2.0.1
*
* @param string $target Full path to attempt to create.
2010-02-24 20:13:23 +00:00
* @return bool Whether the path was created. True if path already exists.
2008-08-10 16:45:50 +00:00
*/
2007-10-11 05:46:57 +00:00
function wp_mkdir_p ( $target ) {
2012-10-01 20:59:06 +00:00
$wrapper = null ;
2014-07-01 01:44:15 +00:00
// Strip the protocol.
2015-06-16 20:01:25 +00:00
if ( wp_is_stream ( $target ) ) {
2012-10-01 20:59:06 +00:00
list ( $wrapper , $target ) = explode ( '://' , $target , 2 );
}
2014-07-01 01:44:15 +00:00
// From php.net/mkdir user contributed notes.
2008-03-21 18:27:56 +00:00
$target = str_replace ( '//' , '/' , $target );
2010-01-17 02:44:47 +00:00
2014-07-01 01:44:15 +00:00
// Put the wrapper back on the target.
2015-06-16 20:01:25 +00:00
if ( $wrapper !== null ) {
2012-10-01 20:59:06 +00:00
$target = $wrapper . '://' . $target ;
}
2014-07-01 01:44:15 +00:00
/*
* Safe mode fails with a trailing slash under certain PHP versions.
* Use rtrim() instead of untrailingslashit to avoid formatting.php dependency.
*/
2017-11-30 23:11:00 +00:00
$target = rtrim ( $target , '/' );
if ( empty ( $target ) ) {
2010-01-17 02:44:47 +00:00
$target = '/' ;
2017-11-30 23:11:00 +00:00
}
2010-01-17 02:44:47 +00:00
2017-11-30 23:11:00 +00:00
if ( file_exists ( $target ) ) {
2007-10-11 05:46:57 +00:00
return @ is_dir ( $target );
2017-11-30 23:11:00 +00:00
}
2006-06-07 23:17:59 +00:00
2013-08-17 03:09:11 +00:00
// We need to find the permissions of the parent folder that exists and inherit that.
$target_parent = dirname ( $target );
2018-03-08 19:32:30 +00:00
while ( '.' != $target_parent && ! is_dir ( $target_parent ) && dirname ( $target_parent ) !== $target_parent ) {
2013-08-17 03:09:11 +00:00
$target_parent = dirname ( $target_parent );
}
// Get the permission bits.
2013-11-28 02:20:10 +00:00
if ( $stat = @ stat ( $target_parent ) ) {
2013-08-17 03:09:11 +00:00
$dir_perms = $stat [ 'mode' ] & 0007777 ;
} else {
$dir_perms = 0777 ;
2006-06-07 23:17:59 +00:00
}
2013-08-17 03:09:11 +00:00
if ( @ mkdir ( $target , $dir_perms , true ) ) {
2013-11-28 02:20:10 +00:00
2014-07-01 01:44:15 +00:00
/*
* If a umask is set that modifies $dir_perms, we'll have to re-set
* the $dir_perms correctly with chmod()
*/
2014-01-08 23:13:10 +00:00
if ( $dir_perms != ( $dir_perms & ~ umask () ) ) {
2013-11-28 02:20:10 +00:00
$folder_parts = explode ( '/' , substr ( $target , strlen ( $target_parent ) + 1 ) );
2015-02-26 05:48:24 +00:00
for ( $i = 1 , $c = count ( $folder_parts ); $i <= $c ; $i ++ ) {
2013-11-28 02:20:10 +00:00
@ chmod ( $target_parent . '/' . implode ( '/' , array_slice ( $folder_parts , 0 , $i ) ), $dir_perms );
}
}
2013-08-17 03:09:11 +00:00
return true ;
}
2008-12-09 18:03:31 +00:00
2006-06-07 23:17:59 +00:00
return false ;
}
2008-08-09 04:51:51 +00:00
/**
2017-10-23 22:51:46 +00:00
* Test if a given filesystem path is absolute.
2014-07-01 01:44:15 +00:00
*
* For example, '/foo/bar', or 'c:\windows'.
2008-08-09 04:51:51 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* @param string $path File path.
2008-08-09 04:51:51 +00:00
* @return bool True if path is absolute, false is not absolute.
*/
2008-02-22 17:46:03 +00:00
function path_is_absolute ( $path ) {
2014-07-01 01:44:15 +00:00
/*
* This is definitive if true but fails if $path does not exist or contains
* a symbolic link.
*/
2017-11-30 23:11:00 +00:00
if ( realpath ( $path ) == $path ) {
2008-02-22 17:46:03 +00:00
return true ;
2017-11-30 23:11:00 +00:00
}
2008-02-22 17:46:03 +00:00
2017-11-30 23:11:00 +00:00
if ( strlen ( $path ) == 0 || $path [ 0 ] == '.' ) {
2008-02-22 17:46:03 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2008-03-02 20:17:30 +00:00
2014-07-01 01:44:15 +00:00
// Windows allows absolute paths like this.
2017-11-30 23:11:00 +00:00
if ( preg_match ( '#^[a-zA-Z]:\\\\#' , $path ) ) {
2008-02-22 17:46:03 +00:00
return true ;
2017-11-30 23:11:00 +00:00
}
2008-02-22 17:46:03 +00:00
2014-07-01 01:44:15 +00:00
// A path starting with / or \ is absolute; anything else is relative.
2011-08-16 00:21:56 +00:00
return ( $path [ 0 ] == '/' || $path [ 0 ] == '\\' );
2008-02-22 17:46:03 +00:00
}
2008-08-09 04:51:51 +00:00
/**
2014-07-01 01:44:15 +00:00
* Join two filesystem paths together.
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* For example, 'give me $path relative to $base'. If the $path is absolute,
* then it the full path is returned.
2008-08-09 04:51:51 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* @param string $base Base path.
* @param string $path Path relative to $base.
2008-08-09 04:51:51 +00:00
* @return string The path with the base or absolute path.
*/
2008-02-22 17:46:03 +00:00
function path_join ( $base , $path ) {
2017-11-30 23:11:00 +00:00
if ( path_is_absolute ( $path ) ) {
2008-02-22 17:46:03 +00:00
return $path ;
2017-11-30 23:11:00 +00:00
}
2008-03-02 20:17:30 +00:00
2017-11-30 23:11:00 +00:00
return rtrim ( $base , '/' ) . '/' . ltrim ( $path , '/' );
2008-02-22 17:46:03 +00:00
}
2007-10-11 05:46:57 +00:00
2014-02-10 23:00:15 +00:00
/**
* Normalize a filesystem path.
*
2015-09-14 01:59:25 +00:00
* On windows systems, replaces backslashes with forward slashes
* and forces upper-case drive letters.
2016-03-08 06:00:26 +00:00
* Allows for two leading slashes for Windows network shares, but
* ensures that all other duplicate slashes are reduced to a single.
2014-02-10 23:00:15 +00:00
*
* @since 3.9.0
2015-09-14 01:59:25 +00:00
* @since 4.4.0 Ensures upper-case drive letters on Windows systems.
2016-03-08 06:00:26 +00:00
* @since 4.5.0 Allows for Windows network shares.
2018-07-05 15:21:25 +00:00
* @since 4.9.7 Allows for PHP file wrappers.
2014-02-10 23:00:15 +00:00
*
* @param string $path Path to normalize.
* @return string Normalized path.
*/
function wp_normalize_path ( $path ) {
2017-12-12 04:16:47 +00:00
$wrapper = '' ;
if ( wp_is_stream ( $path ) ) {
list ( $wrapper , $path ) = explode ( '://' , $path , 2 );
2018-08-17 01:51:36 +00:00
$wrapper .= '://' ;
2017-12-12 04:16:47 +00:00
}
// Standardise all paths to use /
2014-02-10 23:00:15 +00:00
$path = str_replace ( '\\' , '/' , $path );
2017-12-12 04:16:47 +00:00
// Replace multiple slashes down to a singular, allowing for network shares having two slashes.
2016-03-08 06:00:26 +00:00
$path = preg_replace ( '|(?<=.)/+|' , '/' , $path );
2017-12-12 04:16:47 +00:00
// Windows paths should uppercase the drive letter
2015-09-14 01:59:25 +00:00
if ( ':' === substr ( $path , 1 , 1 ) ) {
$path = ucfirst ( $path );
}
2017-12-12 04:16:47 +00:00
return $wrapper . $path ;
2014-02-10 23:00:15 +00:00
}
2011-03-25 02:42:20 +00:00
/**
2014-07-01 01:44:15 +00:00
* Determine a writable directory for temporary files.
*
* Function's preference is the return value of sys_get_temp_dir(),
2012-09-26 05:02:58 +00:00
* followed by your PHP temporary upload directory, followed by WP_CONTENT_DIR,
* before finally defaulting to /tmp/
2011-03-25 02:42:20 +00:00
*
2012-09-26 05:02:58 +00:00
* In the event that this function does not find a writable location,
2014-07-01 01:44:15 +00:00
* It may be overridden by the WP_TEMP_DIR constant in your wp-config.php file.
2011-03-25 02:42:20 +00:00
*
* @since 2.5.0
*
2015-05-25 16:11:25 +00:00
* @staticvar string $temp
*
2014-07-01 01:44:15 +00:00
* @return string Writable temporary directory.
2011-03-25 02:42:20 +00:00
*/
function get_temp_dir () {
2015-05-29 15:43:29 +00:00
static $temp = '' ;
2017-11-30 23:11:00 +00:00
if ( defined ( 'WP_TEMP_DIR' ) ) {
return trailingslashit ( WP_TEMP_DIR );
}
2011-03-25 02:42:20 +00:00
2017-11-30 23:11:00 +00:00
if ( $temp ) {
2014-03-01 21:45:15 +00:00
return trailingslashit ( $temp );
2017-11-30 23:11:00 +00:00
}
2011-03-25 02:42:20 +00:00
2017-11-30 23:11:00 +00:00
if ( function_exists ( 'sys_get_temp_dir' ) ) {
2011-03-25 02:42:20 +00:00
$temp = sys_get_temp_dir ();
2017-11-30 23:11:00 +00:00
if ( @ is_dir ( $temp ) && wp_is_writable ( $temp ) ) {
2014-03-01 21:45:15 +00:00
return trailingslashit ( $temp );
2017-11-30 23:11:00 +00:00
}
2011-03-25 02:42:20 +00:00
}
2017-11-30 23:11:00 +00:00
$temp = ini_get ( 'upload_tmp_dir' );
if ( @ is_dir ( $temp ) && wp_is_writable ( $temp ) ) {
2014-03-01 21:45:15 +00:00
return trailingslashit ( $temp );
2017-11-30 23:11:00 +00:00
}
2011-03-25 02:42:20 +00:00
2012-09-26 05:02:58 +00:00
$temp = WP_CONTENT_DIR . '/' ;
2017-11-30 23:11:00 +00:00
if ( is_dir ( $temp ) && wp_is_writable ( $temp ) ) {
2012-09-26 05:02:58 +00:00
return $temp ;
2017-11-30 23:11:00 +00:00
}
2012-09-26 05:02:58 +00:00
2015-05-25 16:11:25 +00:00
return '/tmp/' ;
2011-03-25 02:42:20 +00:00
}
2013-01-03 08:04:11 +00:00
/**
* Determine if a directory is writable.
*
2014-07-01 01:44:15 +00:00
* This function is used to work around certain ACL issues in PHP primarily
* affecting Windows Servers.
2013-01-03 08:04:11 +00:00
*
* @since 3.6.0
*
2014-07-01 01:44:15 +00:00
* @see win_is_writable()
*
* @param string $path Path to check for write-ability.
* @return bool Whether the path is writable.
2013-01-03 08:04:11 +00:00
*/
function wp_is_writable ( $path ) {
2017-11-30 23:11:00 +00:00
if ( 'WIN' === strtoupper ( substr ( PHP_OS , 0 , 3 ) ) ) {
2013-01-03 08:04:11 +00:00
return win_is_writable ( $path );
2017-11-30 23:11:00 +00:00
} else {
2013-01-03 08:04:11 +00:00
return @ is_writable ( $path );
2017-11-30 23:11:00 +00:00
}
2013-01-03 08:04:11 +00:00
}
2012-09-26 05:08:26 +00:00
/**
* Workaround for Windows bug in is_writable() function
*
2013-02-15 16:12:40 +00:00
* PHP has issues with Windows ACL's for determine if a
2013-01-03 07:56:38 +00:00
* directory is writable or not, this works around them by
* checking the ability to open files rather than relying
* upon PHP to interprate the OS ACL.
*
2012-09-26 05:08:26 +00:00
* @since 2.8.0
*
2016-06-10 04:50:33 +00:00
* @see https://bugs.php.net/bug.php?id=27609
* @see https://bugs.php.net/bug.php?id=30931
2014-07-01 01:44:15 +00:00
*
* @param string $path Windows path to check for write-ability.
* @return bool Whether the path is writable.
2012-09-26 05:08:26 +00:00
*/
function win_is_writable ( $path ) {
2017-11-30 23:11:00 +00:00
if ( $path [ strlen ( $path ) - 1 ] == '/' ) { // if it looks like a directory, check a random file within the directory
return win_is_writable ( $path . uniqid ( mt_rand () ) . '.tmp' );
2015-01-08 07:05:25 +00:00
} elseif ( is_dir ( $path ) ) { // If it's a directory (and not a file) check a random file within the directory
2012-09-26 05:08:26 +00:00
return win_is_writable ( $path . '/' . uniqid ( mt_rand () ) . '.tmp' );
2015-01-08 07:05:25 +00:00
}
2012-09-26 05:08:26 +00:00
// check tmp file for read/write capabilities
2017-11-30 23:11:00 +00:00
$should_delete_tmp_file = ! file_exists ( $path );
$f = @ fopen ( $path , 'a' );
if ( $f === false ) {
2012-09-26 05:08:26 +00:00
return false ;
2017-11-30 23:11:00 +00:00
}
2012-09-26 05:08:26 +00:00
fclose ( $f );
2017-11-30 23:11:00 +00:00
if ( $should_delete_tmp_file ) {
2012-09-26 05:08:26 +00:00
unlink ( $path );
2017-11-30 23:11:00 +00:00
}
2012-09-26 05:08:26 +00:00
return true ;
}
2016-02-17 22:51:26 +00:00
/**
2016-03-10 05:37:27 +00:00
* Retrieves uploads directory information.
2016-02-17 22:51:26 +00:00
*
* Same as wp_upload_dir() but "light weight" as it doesn't attempt to create the uploads directory.
2016-03-10 05:37:27 +00:00
* Intended for use in themes, when only 'basedir' and 'baseurl' are needed, generally in all cases
* when not uploading files.
2016-02-17 22:51:26 +00:00
*
* @since 4.5.0
*
2016-03-10 05:37:27 +00:00
* @see wp_upload_dir()
*
2016-02-17 22:51:26 +00:00
* @return array See wp_upload_dir() for description.
*/
function wp_get_upload_dir () {
return wp_upload_dir ( null , false );
}
2008-08-09 04:51:51 +00:00
/**
2008-08-10 16:45:50 +00:00
* Get an array containing the current upload directory's path and url.
2008-08-09 04:51:51 +00:00
*
2008-08-10 16:45:50 +00:00
* Checks the 'upload_path' option, which should be from the web root folder,
* and if it isn't empty it will be used. If it is empty, then the path will be
* 'WP_CONTENT_DIR/uploads'. If the 'UPLOADS' constant is defined, then it will
* override the 'upload_path' option and 'WP_CONTENT_DIR/uploads' path.
*
* The upload URL path is set either by the 'upload_url_path' option or by using
* the 'WP_CONTENT_URL' constant and appending '/uploads' to the path.
*
* If the 'uploads_use_yearmonth_folders' is set to true (checkbox if checked in
* the administration settings panel), then the time will be used. The format
* will be year first and then month.
*
* If the path couldn't be created, then an error will be returned with the key
* 'error' containing the error message. The error suggests that the parent
* directory is not writable by the server.
*
* On success, the returned array will have many indices:
* 'path' - base directory and sub directory or full path to upload directory.
* 'url' - base url and sub directory or absolute URL to upload directory.
* 'subdir' - sub directory if uploads use year/month folders option is on.
* 'basedir' - path without subdir.
* 'baseurl' - URL path without subdir.
2016-02-17 22:51:26 +00:00
* 'error' - false or error message.
2008-08-09 04:51:51 +00:00
*
* @since 2.0.0
2016-02-17 22:51:26 +00:00
* @uses _wp_upload_dir()
2008-08-09 04:51:51 +00:00
*
2017-07-21 10:15:44 +00:00
* @staticvar array $cache
* @staticvar array $tested_paths
*
2014-07-01 01:44:15 +00:00
* @param string $time Optional. Time formatted in 'yyyy/mm'. Default null.
2016-05-13 18:41:31 +00:00
* @param bool $create_dir Optional. Whether to check and create the uploads directory.
* Default true for backward compatibility.
2016-02-17 22:51:26 +00:00
* @param bool $refresh_cache Optional. Whether to refresh the cache. Default false.
2008-08-10 16:45:50 +00:00
* @return array See above for description.
2008-08-09 04:51:51 +00:00
*/
2016-02-17 22:51:26 +00:00
function wp_upload_dir ( $time = null , $create_dir = true , $refresh_cache = false ) {
2016-04-21 19:58:27 +00:00
static $cache = array (), $tested_paths = array ();
2016-02-17 22:51:26 +00:00
$key = sprintf ( '%d-%s' , get_current_blog_id (), ( string ) $time );
if ( $refresh_cache || empty ( $cache [ $key ] ) ) {
$cache [ $key ] = _wp_upload_dir ( $time );
}
/**
2016-05-22 18:36:27 +00:00
* Filters the uploads directory data.
2016-02-17 22:51:26 +00:00
*
* @since 2.0.0
*
* @param array $uploads Array of upload directory data with keys of 'path',
* 'url', 'subdir, 'basedir', and 'error'.
*/
$uploads = apply_filters ( 'upload_dir' , $cache [ $key ] );
if ( $create_dir ) {
$path = $uploads [ 'path' ];
2016-04-21 19:58:27 +00:00
if ( array_key_exists ( $path , $tested_paths ) ) {
$uploads [ 'error' ] = $tested_paths [ $path ];
} else {
2016-02-17 22:51:26 +00:00
if ( ! wp_mkdir_p ( $path ) ) {
if ( 0 === strpos ( $uploads [ 'basedir' ], ABSPATH ) ) {
$error_path = str_replace ( ABSPATH , '' , $uploads [ 'basedir' ] ) . $uploads [ 'subdir' ];
} else {
2019-03-01 20:58:52 +00:00
$error_path = wp_basename ( $uploads [ 'basedir' ] ) . $uploads [ 'subdir' ];
2016-02-17 22:51:26 +00:00
}
2016-08-23 23:48:28 +00:00
$uploads [ 'error' ] = sprintf (
/* translators: %s: directory path */
__ ( 'Unable to create directory %s. Is its parent directory writable by the server?' ),
esc_html ( $error_path )
);
2016-02-17 22:51:26 +00:00
}
2016-04-21 19:58:27 +00:00
$tested_paths [ $path ] = $uploads [ 'error' ];
2016-02-17 22:51:26 +00:00
}
}
return $uploads ;
}
/**
* A non-filtered, non-cached version of wp_upload_dir() that doesn't check the path.
*
2016-12-27 09:21:44 +00:00
* @since 4.5.0
2016-02-17 22:51:26 +00:00
* @access private
*
* @param string $time Optional. Time formatted in 'yyyy/mm'. Default null.
* @return array See wp_upload_dir()
*/
function _wp_upload_dir ( $time = null ) {
2017-11-30 23:11:00 +00:00
$siteurl = get_option ( 'siteurl' );
2012-09-11 22:22:20 +00:00
$upload_path = trim ( get_option ( 'upload_path' ) );
if ( empty ( $upload_path ) || 'wp-content/uploads' == $upload_path ) {
2008-07-16 16:49:22 +00:00
$dir = WP_CONTENT_DIR . '/uploads' ;
2012-09-11 22:22:20 +00:00
} elseif ( 0 !== strpos ( $upload_path , ABSPATH ) ) {
// $dir is absolute, $upload_path is (maybe) relative to ABSPATH
$dir = path_join ( ABSPATH , $upload_path );
2009-12-15 17:53:51 +00:00
} else {
2008-07-16 16:49:22 +00:00
$dir = $upload_path ;
2009-12-15 17:53:51 +00:00
}
2008-08-09 05:36:14 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $url = get_option ( 'upload_url_path' ) ) {
if ( empty ( $upload_path ) || ( 'wp-content/uploads' == $upload_path ) || ( $upload_path == $dir ) ) {
2008-07-16 16:49:22 +00:00
$url = WP_CONTENT_URL . '/uploads' ;
2017-11-30 23:11:00 +00:00
} else {
2008-07-16 16:49:22 +00:00
$url = trailingslashit ( $siteurl ) . $upload_path ;
2017-11-30 23:11:00 +00:00
}
2008-07-16 16:49:22 +00:00
}
2006-06-07 23:17:59 +00:00
2014-07-01 01:44:15 +00:00
/*
* Honor the value of UPLOADS. This happens as long as ms-files rewriting is disabled.
* We also sometimes obey UPLOADS when rewriting is enabled -- see the next block.
*/
2015-10-07 17:11:25 +00:00
if ( defined ( 'UPLOADS' ) && ! ( is_multisite () && get_site_option ( 'ms_files_rewriting' ) ) ) {
2006-06-07 23:17:59 +00:00
$dir = ABSPATH . UPLOADS ;
2007-10-11 05:46:57 +00:00
$url = trailingslashit ( $siteurl ) . UPLOADS ;
2006-06-07 23:17:59 +00:00
}
2008-07-07 23:53:54 +00:00
2012-10-12 22:05:02 +00:00
// If multisite (and if not the main site in a post-MU network)
2013-08-28 03:36:09 +00:00
if ( is_multisite () && ! ( is_main_network () && is_main_site () && defined ( 'MULTISITE' ) ) ) {
2012-09-27 04:56:58 +00:00
2015-10-07 17:11:25 +00:00
if ( ! get_site_option ( 'ms_files_rewriting' ) ) {
2014-07-01 01:44:15 +00:00
/*
* If ms-files rewriting is disabled (networks created post-3.5), it is fairly
* straightforward: Append sites/%d if we're not on the main site (for post-MU
* networks). (The extra directory prevents a four-digit ID from conflicting with
* a year-based directory for the main site. But if a MU-era network has disabled
* ms-files rewriting manually, they don't need the extra directory, as they never
* had wp-content/uploads for the main site.)
*/
2012-09-27 04:56:58 +00:00
2017-11-30 23:11:00 +00:00
if ( defined ( 'MULTISITE' ) ) {
2012-10-12 22:05:02 +00:00
$ms_dir = '/sites/' . get_current_blog_id ();
2017-11-30 23:11:00 +00:00
} else {
2012-10-12 22:05:02 +00:00
$ms_dir = '/' . get_current_blog_id ();
2017-11-30 23:11:00 +00:00
}
2012-10-12 22:05:02 +00:00
$dir .= $ms_dir ;
$url .= $ms_dir ;
} elseif ( defined ( 'UPLOADS' ) && ! ms_is_switched () ) {
2014-07-01 01:44:15 +00:00
/*
* Handle the old-form ms-files.php rewriting if the network still has that enabled.
* When ms-files rewriting is enabled, then we only listen to UPLOADS when:
* 1) We are not on the main site in a post-MU network, as wp-content/uploads is used
* there, and
* 2) We are not switched, as ms_upload_constants() hardcodes these constants to reflect
* the original blog ID.
*
* Rather than UPLOADS, we actually use BLOGUPLOADDIR if it is set, as it is absolute.
* (And it will be set, see ms_upload_constants().) Otherwise, UPLOADS can be used, as
* as it is relative to ABSPATH. For the final piece: when UPLOADS is used with ms-files
* rewriting in multisite, the resulting URL is /files. (#WP22702 for background.)
*/
2012-10-12 22:05:02 +00:00
2017-11-30 23:11:00 +00:00
if ( defined ( 'BLOGUPLOADDIR' ) ) {
2012-09-11 22:22:20 +00:00
$dir = untrailingslashit ( BLOGUPLOADDIR );
2017-11-30 23:11:00 +00:00
} else {
2012-12-03 22:24:06 +00:00
$dir = ABSPATH . UPLOADS ;
2017-11-30 23:11:00 +00:00
}
2012-12-03 22:24:06 +00:00
$url = trailingslashit ( $siteurl ) . 'files' ;
2012-09-11 22:22:20 +00:00
}
2010-01-26 20:02:11 +00:00
}
2010-01-26 19:04:55 +00:00
2012-09-11 22:06:49 +00:00
$basedir = $dir ;
$baseurl = $url ;
2008-07-07 23:53:54 +00:00
2008-02-22 17:46:03 +00:00
$subdir = '' ;
2007-10-11 05:46:57 +00:00
if ( get_option ( 'uploads_use_yearmonth_folders' ) ) {
2006-06-07 23:17:59 +00:00
// Generate the yearly and monthly dirs
2017-11-30 23:11:00 +00:00
if ( ! $time ) {
2007-12-16 21:34:48 +00:00
$time = current_time ( 'mysql' );
2017-11-30 23:11:00 +00:00
}
$y = substr ( $time , 0 , 4 );
$m = substr ( $time , 5 , 2 );
2008-02-22 17:46:03 +00:00
$subdir = "/ $y / $m " ;
2006-06-07 23:17:59 +00:00
}
2008-03-02 20:17:30 +00:00
2008-02-22 17:46:03 +00:00
$dir .= $subdir ;
$url .= $subdir ;
2006-06-07 23:17:59 +00:00
2016-02-17 22:51:26 +00:00
return array (
'path' => $dir ,
'url' => $url ,
'subdir' => $subdir ,
'basedir' => $basedir ,
'baseurl' => $baseurl ,
'error' => false ,
);
2006-06-07 23:17:59 +00:00
}
2008-08-09 04:51:51 +00:00
/**
* Get a filename that is sanitized and unique for the given directory.
*
2008-08-10 16:45:50 +00:00
* If the filename is not unique, then a number will be added to the filename
* before the extension, and will continue adding numbers until the filename is
* unique.
*
2010-10-27 22:27:06 +00:00
* The callback is passed three parameters, the first one is the directory, the
* second is the filename, and the third is the extension.
2008-08-09 04:51:51 +00:00
*
2010-12-01 19:24:38 +00:00
* @since 2.5.0
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* @param string $dir Directory.
* @param string $filename File name.
2015-09-25 23:58:25 +00:00
* @param callable $unique_filename_callback Callback. Default null.
2008-08-10 16:45:50 +00:00
* @return string New filename, if given wasn't unique.
2008-08-09 04:51:51 +00:00
*/
function wp_unique_filename ( $dir , $filename , $unique_filename_callback = null ) {
2014-07-01 01:44:15 +00:00
// Sanitize the file name before we begin processing.
2017-11-30 23:11:00 +00:00
$filename = sanitize_file_name ( $filename );
2009-05-04 20:20:48 +00:00
2014-07-01 01:44:15 +00:00
// Separate the filename into a name and extension.
2017-11-30 23:11:00 +00:00
$ext = pathinfo ( $filename , PATHINFO_EXTENSION );
2016-08-20 23:36:28 +00:00
$name = pathinfo ( $filename , PATHINFO_BASENAME );
if ( $ext ) {
$ext = '.' . $ext ;
}
2009-05-24 23:47:49 +00:00
2014-07-01 01:44:15 +00:00
// Edge case: if file is named '.ext', treat as an empty name.
2016-08-20 23:36:28 +00:00
if ( $name === $ext ) {
2008-03-21 04:03:33 +00:00
$name = '' ;
2016-08-20 23:36:28 +00:00
}
2008-02-05 06:47:27 +00:00
2014-07-01 01:44:15 +00:00
/*
* Increment the file number until we have a unique file to save in $dir.
* Use callback if supplied.
*/
2010-04-02 23:54:56 +00:00
if ( $unique_filename_callback && is_callable ( $unique_filename_callback ) ) {
2010-10-27 22:27:06 +00:00
$filename = call_user_func ( $unique_filename_callback , $dir , $name , $ext );
2007-12-16 21:34:48 +00:00
} else {
$number = '' ;
2008-03-21 04:03:33 +00:00
2014-07-01 01:44:15 +00:00
// Change '.ext' to lower case.
2017-11-30 23:11:00 +00:00
if ( $ext && strtolower ( $ext ) != $ext ) {
$ext2 = strtolower ( $ext );
$filename2 = preg_replace ( '|' . preg_quote ( $ext ) . '$|' , $ext2 , $filename );
2009-11-25 05:04:30 +00:00
2014-07-01 01:44:15 +00:00
// Check for both lower and upper case extension or image sub-sizes may be overwritten.
2017-11-30 23:11:00 +00:00
while ( file_exists ( $dir . "/ $filename " ) || file_exists ( $dir . "/ $filename2 " ) ) {
2017-02-03 20:58:42 +00:00
$new_number = ( int ) $number + 1 ;
2017-11-30 23:11:00 +00:00
$filename = str_replace ( array ( "- $number$ext " , " $number$ext " ), "- $new_number$ext " , $filename );
$filename2 = str_replace ( array ( "- $number$ext2 " , " $number$ext2 " ), "- $new_number$ext2 " , $filename2 );
$number = $new_number ;
2009-11-25 05:04:30 +00:00
}
2016-01-15 09:39:26 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the result when generating a unique file name.
2016-01-15 09:39:26 +00:00
*
* @since 4.5.0
*
* @param string $filename Unique file name.
* @param string $ext File extension, eg. ".png".
* @param string $dir Directory path.
* @param callable|null $unique_filename_callback Callback function that generates the unique file name.
*/
return apply_filters ( 'wp_unique_filename' , $filename2 , $ext , $dir , $unique_filename_callback );
2009-11-25 05:04:30 +00:00
}
2008-03-21 04:03:33 +00:00
2007-12-16 21:34:48 +00:00
while ( file_exists ( $dir . "/ $filename " ) ) {
2017-02-03 20:58:42 +00:00
$new_number = ( int ) $number + 1 ;
2015-10-20 04:05:25 +00:00
if ( '' == " $number$ext " ) {
2017-02-03 20:58:42 +00:00
$filename = " $filename -" . $new_number ;
2015-10-20 04:05:25 +00:00
} else {
2017-11-30 23:11:00 +00:00
$filename = str_replace ( array ( "- $number$ext " , " $number$ext " ), '-' . $new_number . $ext , $filename );
2015-10-20 04:05:25 +00:00
}
2017-02-03 20:58:42 +00:00
$number = $new_number ;
2007-12-16 21:34:48 +00:00
}
}
2008-02-05 06:47:27 +00:00
2016-01-15 09:39:26 +00:00
/** This filter is documented in wp-includes/functions.php */
return apply_filters ( 'wp_unique_filename' , $filename , $ext , $dir , $unique_filename_callback );
2007-12-16 21:34:48 +00:00
}
2008-08-10 16:45:50 +00:00
/**
* Create a file in the upload folder with given content.
*
* If there is an error, then the key 'error' will exist with the error message.
* If success, then the key 'file' will have the unique file path, the 'url' key
* will have the link to the new file. and the 'error' key will be set to false.
*
* This function will not move an uploaded file to the upload folder. It will
* create a new file with the content in $bits parameter. If you move the upload
* file, read the content of the uploaded file, and then you can give the
* filename and content to this function, which will add it to the upload
* folder.
*
* The permissions will be set on the new file automatically by this function.
*
* @since 2.0.0
*
2014-11-30 23:24:25 +00:00
* @param string $name Filename.
* @param null|string $deprecated Never used. Set to null.
* @param mixed $bits File content
* @param string $time Optional. Time formatted in 'yyyy/mm'. Default null.
2008-08-10 16:45:50 +00:00
* @return array
*/
2008-08-09 04:51:51 +00:00
function wp_upload_bits ( $name , $deprecated , $bits , $time = null ) {
2017-11-30 23:11:00 +00:00
if ( ! empty ( $deprecated ) ) {
2016-07-06 12:40:29 +00:00
_deprecated_argument ( __FUNCTION__ , '2.0.0' );
2017-11-30 23:11:00 +00:00
}
2009-12-30 16:23:39 +00:00
2017-11-30 23:11:00 +00:00
if ( empty ( $name ) ) {
2008-10-21 23:54:18 +00:00
return array ( 'error' => __ ( 'Empty filename' ) );
2017-11-30 23:11:00 +00:00
}
2006-06-21 23:17:19 +00:00
2007-10-11 05:46:57 +00:00
$wp_filetype = wp_check_filetype ( $name );
2017-11-30 23:11:00 +00:00
if ( ! $wp_filetype [ 'ext' ] && ! current_user_can ( 'unfiltered_upload' ) ) {
2017-01-12 06:29:43 +00:00
return array ( 'error' => __ ( 'Sorry, this file type is not permitted for security reasons.' ) );
2017-11-30 23:11:00 +00:00
}
2006-06-07 23:17:59 +00:00
2007-12-16 21:34:48 +00:00
$upload = wp_upload_dir ( $time );
2006-06-07 23:17:59 +00:00
2017-11-30 23:11:00 +00:00
if ( $upload [ 'error' ] !== false ) {
2006-06-07 23:17:59 +00:00
return $upload ;
2017-11-30 23:11:00 +00:00
}
2008-02-05 06:47:27 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to treat the upload bits as an error.
2014-04-14 00:20:14 +00:00
*
* Passing a non-array to the filter will effectively short-circuit preparing
* the upload bits, returning that value instead.
*
* @since 3.0.0
*
* @param mixed $upload_bits_error An array of upload bits data, or a non-array error to return.
*/
2017-11-30 23:11:00 +00:00
$upload_bits_error = apply_filters (
2018-08-17 01:51:36 +00:00
'wp_upload_bits' ,
array (
2017-11-30 23:11:00 +00:00
'name' => $name ,
'bits' => $bits ,
'time' => $time ,
)
);
if ( ! is_array ( $upload_bits_error ) ) {
$upload [ 'error' ] = $upload_bits_error ;
2010-01-11 22:08:49 +00:00
return $upload ;
}
2010-01-11 21:49:40 +00:00
2007-12-18 03:32:43 +00:00
$filename = wp_unique_filename ( $upload [ 'path' ], $name );
2006-06-07 23:17:59 +00:00
2007-03-09 20:14:52 +00:00
$new_file = $upload [ 'path' ] . "/ $filename " ;
2007-10-11 05:46:57 +00:00
if ( ! wp_mkdir_p ( dirname ( $new_file ) ) ) {
2017-11-30 23:11:00 +00:00
if ( 0 === strpos ( $upload [ 'basedir' ], ABSPATH ) ) {
2012-10-23 13:49:00 +00:00
$error_path = str_replace ( ABSPATH , '' , $upload [ 'basedir' ] ) . $upload [ 'subdir' ];
2017-11-30 23:11:00 +00:00
} else {
2019-03-01 20:58:52 +00:00
$error_path = wp_basename ( $upload [ 'basedir' ] ) . $upload [ 'subdir' ];
2017-11-30 23:11:00 +00:00
}
2012-10-23 13:49:00 +00:00
2016-08-23 23:48:28 +00:00
$message = sprintf (
/* translators: %s: directory path */
__ ( 'Unable to create directory %s. Is its parent directory writable by the server?' ),
$error_path
);
2007-10-11 05:46:57 +00:00
return array ( 'error' => $message );
2006-06-07 23:17:59 +00:00
}
2007-10-11 05:46:57 +00:00
$ifp = @ fopen ( $new_file , 'wb' );
2017-11-30 23:11:00 +00:00
if ( ! $ifp ) {
2007-10-11 05:46:57 +00:00
return array ( 'error' => sprintf ( __ ( 'Could not write file %s' ), $new_file ) );
2017-11-30 23:11:00 +00:00
}
2006-06-07 23:17:59 +00:00
2007-12-06 19:49:33 +00:00
@ fwrite ( $ifp , $bits );
2007-10-11 05:46:57 +00:00
fclose ( $ifp );
2010-06-02 14:01:21 +00:00
clearstatcache ();
2010-06-02 20:04:07 +00:00
2006-06-07 23:17:59 +00:00
// Set correct file permissions
2017-11-30 23:11:00 +00:00
$stat = @ stat ( dirname ( $new_file ) );
2006-06-07 23:17:59 +00:00
$perms = $stat [ 'mode' ] & 0007777 ;
$perms = $perms & 0000666 ;
2007-10-11 05:46:57 +00:00
@ chmod ( $new_file , $perms );
2010-06-02 14:01:21 +00:00
clearstatcache ();
2006-06-07 23:17:59 +00:00
2007-03-09 20:14:52 +00:00
// Compute the URL
2006-06-07 23:17:59 +00:00
$url = $upload [ 'url' ] . "/ $filename " ;
2015-09-17 04:46:25 +00:00
/** This filter is documented in wp-admin/includes/file.php */
2017-11-30 23:11:00 +00:00
return apply_filters (
2018-08-17 01:51:36 +00:00
'wp_handle_upload' ,
array (
2017-11-30 23:11:00 +00:00
'file' => $new_file ,
'url' => $url ,
'type' => $wp_filetype [ 'type' ],
'error' => false ,
2018-08-17 01:51:36 +00:00
),
'sideload'
2017-11-30 23:11:00 +00:00
);
2006-06-07 23:17:59 +00:00
}
2008-08-09 04:51:51 +00:00
/**
* Retrieve the file type based on the extension name.
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2008-08-09 04:51:51 +00:00
*
* @param string $ext The extension to search.
2015-05-25 16:11:25 +00:00
* @return string|void The file type, example: audio, video, document, spreadsheet, etc.
2008-08-09 04:51:51 +00:00
*/
2008-02-29 06:54:15 +00:00
function wp_ext2type ( $ext ) {
2013-09-14 14:34:09 +00:00
$ext = strtolower ( $ext );
2014-04-14 00:20:14 +00:00
2016-04-13 03:12:27 +00:00
$ext2type = wp_get_ext_types ();
2017-11-30 23:11:00 +00:00
foreach ( $ext2type as $type => $exts ) {
if ( in_array ( $ext , $exts ) ) {
2008-02-29 06:54:15 +00:00
return $type ;
2017-11-30 23:11:00 +00:00
}
}
2008-02-29 06:54:15 +00:00
}
2007-10-11 05:46:57 +00:00
2008-08-09 04:51:51 +00:00
/**
* Retrieve the file type from the file name.
*
* You can optionally define the mime array, if needed.
*
* @since 2.0.4
*
* @param string $filename File name or path.
2014-07-01 01:44:15 +00:00
* @param array $mimes Optional. Key is the file extension with value as the mime type.
2008-08-09 04:51:51 +00:00
* @return array Values with extension first and mime type.
*/
2007-10-11 05:46:57 +00:00
function wp_check_filetype ( $filename , $mimes = null ) {
2017-11-30 23:11:00 +00:00
if ( empty ( $mimes ) ) {
2009-11-11 23:07:29 +00:00
$mimes = get_allowed_mime_types ();
2017-11-30 23:11:00 +00:00
}
2009-11-11 23:07:29 +00:00
$type = false ;
2017-11-30 23:11:00 +00:00
$ext = false ;
2009-11-11 23:07:29 +00:00
foreach ( $mimes as $ext_preg => $mime_match ) {
2015-04-20 06:39:25 +00:00
$ext_preg = '!\.(' . $ext_preg . ')$!i' ;
2009-11-11 23:07:29 +00:00
if ( preg_match ( $ext_preg , $filename , $ext_matches ) ) {
$type = $mime_match ;
2017-11-30 23:11:00 +00:00
$ext = $ext_matches [ 1 ];
2009-11-11 23:07:29 +00:00
break ;
}
}
return compact ( 'ext' , 'type' );
}
2010-05-15 04:47:03 +00:00
/**
* Attempt to determine the real file type of a file.
2014-07-01 01:44:15 +00:00
*
2010-05-15 04:47:03 +00:00
* If unable to, the file name extension will be used to determine type.
*
* If it's determined that the extension does not match the file's real type,
* then the "proper_filename" value will be set with a proper filename and extension.
*
2017-01-11 13:08:44 +00:00
* Currently this function only supports renaming images validated via wp_get_image_mime().
2010-05-15 04:47:03 +00:00
*
* @since 3.0.0
*
2014-07-01 01:44:15 +00:00
* @param string $file Full path to the file.
* @param string $filename The name of the file (may differ from $file due to $file being
* in a tmp directory).
* @param array $mimes Optional. Key is the file extension with value as the mime type.
* @return array Values for the extension, MIME, and either a corrected filename or false
* if original $filename is valid.
2010-05-15 04:47:03 +00:00
*/
function wp_check_filetype_and_ext ( $file , $filename , $mimes = null ) {
$proper_filename = false ;
// Do basic extension validation and MIME mapping
$wp_filetype = wp_check_filetype ( $filename , $mimes );
2017-11-30 23:11:00 +00:00
$ext = $wp_filetype [ 'ext' ];
$type = $wp_filetype [ 'type' ];
2010-05-15 04:47:03 +00:00
// We can't do any further validation without a file to work with
2014-05-15 06:22:14 +00:00
if ( ! file_exists ( $file ) ) {
2010-05-15 04:47:03 +00:00
return compact ( 'ext' , 'type' , 'proper_filename' );
2014-05-15 06:22:14 +00:00
}
2010-05-15 04:47:03 +00:00
2017-02-25 16:08:44 +00:00
$real_mime = false ;
2017-01-11 13:08:44 +00:00
// Validate image types.
if ( $type && 0 === strpos ( $type , 'image/' ) ) {
2010-05-15 04:47:03 +00:00
// Attempt to figure out what type of image it actually is
2017-01-11 13:08:44 +00:00
$real_mime = wp_get_image_mime ( $file );
2010-05-15 04:47:03 +00:00
2017-02-25 16:08:44 +00:00
if ( $real_mime && $real_mime != $type ) {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the list mapping image mime types to their respective extensions.
2014-04-14 00:20:14 +00:00
*
* @since 3.0.0
*
* @param array $mime_to_ext Array of image mime types and their matching extensions.
*/
2017-11-30 23:11:00 +00:00
$mime_to_ext = apply_filters (
2018-08-17 01:51:36 +00:00
'getimagesize_mimes_to_exts' ,
array (
2017-11-30 23:11:00 +00:00
'image/jpeg' => 'jpg' ,
'image/png' => 'png' ,
'image/gif' => 'gif' ,
'image/bmp' => 'bmp' ,
'image/tiff' => 'tif' ,
)
);
2010-05-15 04:47:03 +00:00
// Replace whatever is after the last period in the filename with the correct extension
2017-01-11 13:08:44 +00:00
if ( ! empty ( $mime_to_ext [ $real_mime ] ) ) {
2010-05-15 04:47:03 +00:00
$filename_parts = explode ( '.' , $filename );
array_pop ( $filename_parts );
2017-01-11 13:08:44 +00:00
$filename_parts [] = $mime_to_ext [ $real_mime ];
2017-11-30 23:11:00 +00:00
$new_filename = implode ( '.' , $filename_parts );
2010-05-15 04:47:03 +00:00
2014-05-15 06:22:14 +00:00
if ( $new_filename != $filename ) {
2010-05-15 04:47:03 +00:00
$proper_filename = $new_filename ; // Mark that it changed
2014-05-15 06:22:14 +00:00
}
2010-05-15 04:47:03 +00:00
// Redefine the extension / MIME
$wp_filetype = wp_check_filetype ( $new_filename , $mimes );
2017-11-30 23:11:00 +00:00
$ext = $wp_filetype [ 'ext' ];
$type = $wp_filetype [ 'type' ];
2017-01-11 13:08:44 +00:00
} else {
2017-02-25 16:08:44 +00:00
// Reset $real_mime and try validating again.
$real_mime = false ;
2010-05-15 04:47:03 +00:00
}
}
2017-02-25 16:08:44 +00:00
}
// Validate files that didn't get validated during previous checks.
if ( $type && ! $real_mime && extension_loaded ( 'fileinfo' ) ) {
2017-11-30 23:11:00 +00:00
$finfo = finfo_open ( FILEINFO_MIME_TYPE );
2017-01-11 13:08:44 +00:00
$real_mime = finfo_file ( $finfo , $file );
finfo_close ( $finfo );
2018-12-18 16:35:49 +00:00
// fileinfo often misidentifies obscure files as one of these types
$nonspecific_types = array (
'application/octet-stream' ,
'application/encrypted' ,
'application/CDFV2-encrypted' ,
'application/zip' ,
);
2017-02-25 16:08:44 +00:00
/*
2018-12-18 16:35:49 +00:00
* If $real_mime doesn't match the content type we're expecting from the file's extension,
* we need to do some additional vetting. Media types and those listed in $nonspecific_types are
* allowed some leeway, but anything else must exactly match the real content type.
2017-02-25 16:08:44 +00:00
*/
2018-12-18 16:35:49 +00:00
if ( in_array ( $real_mime , $nonspecific_types , true ) ) {
// File is a non-specific binary type. That's ok if it's a type that generally tends to be binary.
if ( ! in_array ( substr ( $type , 0 , strcspn ( $type , '/' ) ), array ( 'application' , 'video' , 'audio' ) ) ) {
$type = $ext = false ;
}
} elseif ( 0 === strpos ( $real_mime , 'video/' ) || 0 === strpos ( $real_mime , 'audio/' ) ) {
/*
* For these types, only the major type must match the real value.
* This means that common mismatches are forgiven: application/vnd.apple.numbers is often misidentified as application/zip,
* and some media files are commonly named with the wrong extension (.mov instead of .mp4)
*/
if ( substr ( $real_mime , 0 , strcspn ( $real_mime , '/' ) ) !== substr ( $type , 0 , strcspn ( $type , '/' ) ) ) {
2017-02-25 16:08:44 +00:00
$type = $ext = false ;
}
2019-01-07 20:48:51 +00:00
} elseif ( 'text/plain' === $real_mime ) {
// A few common file types are occasionally detected as text/plain; allow those.
2019-01-07 21:09:49 +00:00
if ( ! in_array (
$type ,
array (
2019-01-07 20:48:51 +00:00
'text/plain' ,
'text/csv' ,
'text/richtext' ,
'text/tsv' ,
'text/vtt' ,
2019-01-07 21:09:49 +00:00
)
)
2019-01-07 20:48:51 +00:00
) {
$type = $ext = false ;
}
2019-01-07 21:09:49 +00:00
} elseif ( 'text/rtf' === $real_mime ) {
2019-01-07 20:48:51 +00:00
// Special casing for RTF files.
2019-01-07 21:09:49 +00:00
if ( ! in_array (
$type ,
array (
2019-01-07 20:48:51 +00:00
'text/rtf' ,
'text/plain' ,
'application/rtf' ,
2019-01-07 21:09:49 +00:00
)
)
2019-01-07 20:48:51 +00:00
) {
$type = $ext = false ;
}
2018-12-18 16:35:49 +00:00
} else {
if ( $type !== $real_mime ) {
/*
* Everything else including image/* and application/*:
* If the real content type doesn't match the file extension, assume it's dangerous.
*/
$type = $ext = false ;
}
}
}
// The mime type must be allowed
if ( $type ) {
$allowed = get_allowed_mime_types ();
if ( ! in_array ( $type , $allowed ) ) {
$type = $ext = false ;
2017-01-11 13:08:44 +00:00
}
2010-05-15 04:47:03 +00:00
}
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the "real" file type of the given file.
2014-04-14 00:20:14 +00:00
*
* @since 3.0.0
2019-01-21 21:52:50 +00:00
* @since 5.1.0 The $real_mime parameter was added.
2014-04-14 00:20:14 +00:00
*
2019-01-21 21:52:50 +00:00
* @param array $wp_check_filetype_and_ext File data array containing 'ext', 'type', and
* 'proper_filename' keys.
* @param string $file Full path to the file.
* @param string $filename The name of the file (may differ from $file due to
* $file being in a tmp directory).
* @param array $mimes Key is the file extension with value as the mime type.
* @param string|bool $real_mime The actual mime type or false if the type cannot be determined.
2014-04-14 00:20:14 +00:00
*/
2019-01-21 21:52:50 +00:00
return apply_filters ( 'wp_check_filetype_and_ext' , compact ( 'ext' , 'type' , 'proper_filename' ), $file , $filename , $mimes , $real_mime );
2010-05-15 04:47:03 +00:00
}
2017-01-11 13:08:44 +00:00
/**
* Returns the real mime type of an image file.
*
* This depends on exif_imagetype() or getimagesize() to determine real mime types.
*
* @since 4.7.1
*
* @param string $file Full path to the file.
* @return string|false The actual mime type or false if the type cannot be determined.
*/
function wp_get_image_mime ( $file ) {
/*
* Use exif_imagetype() to check the mimetype if available or fall back to
* getimagesize() if exif isn't avaialbe. If either function throws an Exception
* we assume the file could not be validated.
*/
try {
2017-01-11 16:36:39 +00:00
if ( is_callable ( 'exif_imagetype' ) ) {
2017-04-09 22:44:43 +00:00
$imagetype = exif_imagetype ( $file );
2017-11-30 23:11:00 +00:00
$mime = ( $imagetype ) ? image_type_to_mime_type ( $imagetype ) : false ;
2017-01-11 13:08:44 +00:00
} elseif ( function_exists ( 'getimagesize' ) ) {
$imagesize = getimagesize ( $file );
2017-11-30 23:11:00 +00:00
$mime = ( isset ( $imagesize [ 'mime' ] ) ) ? $imagesize [ 'mime' ] : false ;
2017-01-11 13:08:44 +00:00
} else {
$mime = false ;
}
} catch ( Exception $e ) {
$mime = false ;
}
return $mime ;
}
2012-08-17 17:25:19 +00:00
/**
* Retrieve list of mime types and file extensions.
*
* @since 3.5.0
2015-03-01 07:10:26 +00:00
* @since 4.2.0 Support was added for GIMP (xcf) files.
2012-08-17 17:25:19 +00:00
*
* @return array Array of mime types keyed by the file extension regex corresponding to those types.
*/
function wp_get_mime_types () {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the list of mime types and file extensions.
2014-04-14 00:20:14 +00:00
*
* This filter should be used to add, not remove, mime types. To remove
2016-05-23 19:01:27 +00:00
* mime types, use the {@see 'upload_mimes'} filter.
2014-04-14 00:20:14 +00:00
*
* @since 3.5.0
*
* @param array $wp_get_mime_types Mime types keyed by the file extension regex
* corresponding to those types.
*/
2017-11-30 23:11:00 +00:00
return apply_filters (
2018-08-17 01:51:36 +00:00
'mime_types' ,
array (
2017-11-30 23:11:00 +00:00
// Image formats.
'jpg|jpeg|jpe' => 'image/jpeg' ,
'gif' => 'image/gif' ,
'png' => 'image/png' ,
'bmp' => 'image/bmp' ,
'tiff|tif' => 'image/tiff' ,
'ico' => 'image/x-icon' ,
// Video formats.
'asf|asx' => 'video/x-ms-asf' ,
'wmv' => 'video/x-ms-wmv' ,
'wmx' => 'video/x-ms-wmx' ,
'wm' => 'video/x-ms-wm' ,
'avi' => 'video/avi' ,
'divx' => 'video/divx' ,
'flv' => 'video/x-flv' ,
'mov|qt' => 'video/quicktime' ,
'mpeg|mpg|mpe' => 'video/mpeg' ,
'mp4|m4v' => 'video/mp4' ,
'ogv' => 'video/ogg' ,
'webm' => 'video/webm' ,
'mkv' => 'video/x-matroska' ,
'3gp|3gpp' => 'video/3gpp' , // Can also be audio
'3g2|3gp2' => 'video/3gpp2' , // Can also be audio
// Text formats.
'txt|asc|c|cc|h|srt' => 'text/plain' ,
'csv' => 'text/csv' ,
'tsv' => 'text/tab-separated-values' ,
'ics' => 'text/calendar' ,
'rtx' => 'text/richtext' ,
'css' => 'text/css' ,
'htm|html' => 'text/html' ,
'vtt' => 'text/vtt' ,
'dfxp' => 'application/ttaf+xml' ,
// Audio formats.
'mp3|m4a|m4b' => 'audio/mpeg' ,
2018-02-11 16:40:31 +00:00
'aac' => 'audio/aac' ,
2017-11-30 23:11:00 +00:00
'ra|ram' => 'audio/x-realaudio' ,
'wav' => 'audio/wav' ,
'ogg|oga' => 'audio/ogg' ,
2018-01-15 22:17:47 +00:00
'flac' => 'audio/flac' ,
2017-11-30 23:11:00 +00:00
'mid|midi' => 'audio/midi' ,
'wma' => 'audio/x-ms-wma' ,
'wax' => 'audio/x-ms-wax' ,
'mka' => 'audio/x-matroska' ,
// Misc application formats.
'rtf' => 'application/rtf' ,
'js' => 'application/javascript' ,
'pdf' => 'application/pdf' ,
'swf' => 'application/x-shockwave-flash' ,
'class' => 'application/java' ,
'tar' => 'application/x-tar' ,
'zip' => 'application/zip' ,
'gz|gzip' => 'application/x-gzip' ,
'rar' => 'application/rar' ,
'7z' => 'application/x-7z-compressed' ,
'exe' => 'application/x-msdownload' ,
'psd' => 'application/octet-stream' ,
'xcf' => 'application/octet-stream' ,
// MS Office formats.
'doc' => 'application/msword' ,
'pot|pps|ppt' => 'application/vnd.ms-powerpoint' ,
'wri' => 'application/vnd.ms-write' ,
'xla|xls|xlt|xlw' => 'application/vnd.ms-excel' ,
'mdb' => 'application/vnd.ms-access' ,
'mpp' => 'application/vnd.ms-project' ,
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' ,
'docm' => 'application/vnd.ms-word.document.macroEnabled.12' ,
'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' ,
'dotm' => 'application/vnd.ms-word.template.macroEnabled.12' ,
'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' ,
'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12' ,
'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' ,
'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' ,
'xltm' => 'application/vnd.ms-excel.template.macroEnabled.12' ,
'xlam' => 'application/vnd.ms-excel.addin.macroEnabled.12' ,
'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation' ,
'pptm' => 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' ,
'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' ,
'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' ,
'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template' ,
'potm' => 'application/vnd.ms-powerpoint.template.macroEnabled.12' ,
'ppam' => 'application/vnd.ms-powerpoint.addin.macroEnabled.12' ,
'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide' ,
'sldm' => 'application/vnd.ms-powerpoint.slide.macroEnabled.12' ,
'onetoc|onetoc2|onetmp|onepkg' => 'application/onenote' ,
'oxps' => 'application/oxps' ,
'xps' => 'application/vnd.ms-xpsdocument' ,
// OpenOffice formats.
'odt' => 'application/vnd.oasis.opendocument.text' ,
'odp' => 'application/vnd.oasis.opendocument.presentation' ,
'ods' => 'application/vnd.oasis.opendocument.spreadsheet' ,
'odg' => 'application/vnd.oasis.opendocument.graphics' ,
'odc' => 'application/vnd.oasis.opendocument.chart' ,
'odb' => 'application/vnd.oasis.opendocument.database' ,
'odf' => 'application/vnd.oasis.opendocument.formula' ,
// WordPerfect formats.
'wp|wpd' => 'application/wordperfect' ,
// iWork formats.
'key' => 'application/vnd.apple.keynote' ,
'numbers' => 'application/vnd.apple.numbers' ,
'pages' => 'application/vnd.apple.pages' ,
)
);
2012-08-17 17:25:19 +00:00
}
2016-04-13 03:12:27 +00:00
/**
2016-07-20 16:57:32 +00:00
* Retrieves the list of common file extensions and their types.
2016-04-13 03:12:27 +00:00
*
* @since 4.6.0
*
* @return array Array of file extensions types keyed by the type of file.
*/
function wp_get_ext_types () {
/**
2016-05-22 18:36:27 +00:00
* Filters file type based on the extension name.
2016-04-13 03:12:27 +00:00
*
* @since 2.5.0
*
* @see wp_ext2type()
*
* @param array $ext2type Multi-dimensional array with extensions for a default set
* of file types.
*/
2017-11-30 23:11:00 +00:00
return apply_filters (
2018-08-17 01:51:36 +00:00
'ext2type' ,
array (
2017-11-30 23:11:00 +00:00
'image' => array ( 'jpg' , 'jpeg' , 'jpe' , 'gif' , 'png' , 'bmp' , 'tif' , 'tiff' , 'ico' ),
2018-01-15 22:17:47 +00:00
'audio' => array ( 'aac' , 'ac3' , 'aif' , 'aiff' , 'flac' , 'm3a' , 'm4a' , 'm4b' , 'mka' , 'mp1' , 'mp2' , 'mp3' , 'ogg' , 'oga' , 'ram' , 'wav' , 'wma' ),
2017-11-30 23:11:00 +00:00
'video' => array ( '3g2' , '3gp' , '3gpp' , 'asf' , 'avi' , 'divx' , 'dv' , 'flv' , 'm4v' , 'mkv' , 'mov' , 'mp4' , 'mpeg' , 'mpg' , 'mpv' , 'ogm' , 'ogv' , 'qt' , 'rm' , 'vob' , 'wmv' ),
'document' => array ( 'doc' , 'docx' , 'docm' , 'dotm' , 'odt' , 'pages' , 'pdf' , 'xps' , 'oxps' , 'rtf' , 'wp' , 'wpd' , 'psd' , 'xcf' ),
'spreadsheet' => array ( 'numbers' , 'ods' , 'xls' , 'xlsx' , 'xlsm' , 'xlsb' ),
'interactive' => array ( 'swf' , 'key' , 'ppt' , 'pptx' , 'pptm' , 'pps' , 'ppsx' , 'ppsm' , 'sldx' , 'sldm' , 'odp' ),
'text' => array ( 'asc' , 'csv' , 'tsv' , 'txt' ),
'archive' => array ( 'bz2' , 'cab' , 'dmg' , 'gz' , 'rar' , 'sea' , 'sit' , 'sqx' , 'tar' , 'tgz' , 'zip' , '7z' ),
'code' => array ( 'css' , 'htm' , 'html' , 'php' , 'js' ),
)
);
2016-04-13 03:12:27 +00:00
}
2009-11-11 23:07:29 +00:00
/**
* Retrieve list of allowed mime types and file extensions.
*
* @since 2.8.6
2012-06-29 15:16:36 +00:00
*
2013-09-10 18:04:09 +00:00
* @param int|WP_User $user Optional. User to check. Defaults to current user.
2014-07-01 01:44:15 +00:00
* @return array Array of mime types keyed by the file extension regex corresponding
* to those types.
2009-11-11 23:07:29 +00:00
*/
2013-09-10 18:04:09 +00:00
function get_allowed_mime_types ( $user = null ) {
$t = wp_get_mime_types ();
unset ( $t [ 'swf' ], $t [ 'exe' ] );
2017-11-30 23:11:00 +00:00
if ( function_exists ( 'current_user_can' ) ) {
2013-09-11 04:49:10 +00:00
$unfiltered = $user ? user_can ( $user , 'unfiltered_html' ) : current_user_can ( 'unfiltered_html' );
2017-11-30 23:11:00 +00:00
}
2013-09-11 04:49:10 +00:00
2017-11-29 16:00:48 +00:00
if ( empty ( $unfiltered ) ) {
unset ( $t [ 'htm|html' ], $t [ 'js' ] );
}
2013-09-10 18:04:09 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters list of allowed mime types and file extensions.
2014-04-14 00:20:14 +00:00
*
* @since 2.0.0
*
* @param array $t Mime types keyed by the file extension regex corresponding to
* those types. 'swf' and 'exe' removed from full list. 'htm|html' also
* removed depending on '$user' capabilities.
* @param int|WP_User|null $user User ID, User object or null if not provided (indicates current user).
*/
2013-09-10 18:04:09 +00:00
return apply_filters ( 'upload_mimes' , $t , $user );
2006-06-21 23:17:19 +00:00
}
2009-11-12 05:20:48 +00:00
2008-08-09 04:51:51 +00:00
/**
* Display "Are You Sure" message to confirm the action being taken.
*
2014-07-01 01:44:15 +00:00
* If the action has the nonce explain message, then it will be displayed
* along with the "Are you sure?" message.
2008-08-09 04:51:51 +00:00
*
* @since 2.0.4
*
* @param string $action The nonce action.
*/
2007-10-11 05:46:57 +00:00
function wp_nonce_ays ( $action ) {
2012-06-26 06:10:07 +00:00
if ( 'log-out' == $action ) {
2016-08-23 23:48:28 +00:00
$html = sprintf (
/* translators: %s: site name */
__ ( 'You are attempting to log out of %s' ),
get_bloginfo ( 'name' )
);
2017-11-30 23:11:00 +00:00
$html .= '</p><p>' ;
2014-02-25 20:02:14 +00:00
$redirect_to = isset ( $_REQUEST [ 'redirect_to' ] ) ? $_REQUEST [ 'redirect_to' ] : '' ;
2017-11-30 23:11:00 +00:00
$html .= sprintf (
2016-08-23 23:48:28 +00:00
/* translators: %s: logout URL */
__ ( 'Do you really want to <a href="%s">log out</a>?' ),
wp_logout_url ( $redirect_to )
);
2012-06-26 06:10:07 +00:00
} else {
2018-02-19 02:13:32 +00:00
$html = __ ( 'The link you followed has expired.' );
2016-08-23 23:48:28 +00:00
if ( wp_get_referer () ) {
$html .= '</p><p>' ;
2017-11-30 23:11:00 +00:00
$html .= sprintf (
'<a href="%s">%s</a>' ,
2016-08-23 23:48:28 +00:00
esc_url ( remove_query_arg ( 'updated' , wp_get_referer () ) ),
__ ( 'Please try again.' )
);
}
2012-06-26 06:10:07 +00:00
}
2008-09-28 21:05:37 +00:00
2018-02-19 02:13:32 +00:00
wp_die ( $html , __ ( 'Something went wrong.' ), 403 );
2006-06-27 08:06:00 +00:00
}
2008-08-09 04:51:51 +00:00
/**
2019-03-17 01:45:50 +00:00
* Kills WordPress execution and displays HTML page with an error message.
2008-08-09 04:51:51 +00:00
*
2014-11-18 16:47:23 +00:00
* This function complements the `die()` PHP function. The difference is that
2008-08-09 04:51:51 +00:00
* HTML will be displayed to the user. It is recommended to use this function
2014-11-18 16:47:23 +00:00
* only when the execution should not continue any further. It is not recommended
* to call this function very often, and try to handle as many errors as possible
* silently or more gracefully.
2014-11-16 06:11:22 +00:00
*
* As a shorthand, the desired HTTP response code may be passed as an integer to
2014-11-18 16:47:23 +00:00
* the `$title` parameter (the default title would apply) or the `$args` parameter.
2008-08-09 04:51:51 +00:00
*
* @since 2.0.4
2014-11-21 17:08:23 +00:00
* @since 4.1.0 The `$title` and `$args` parameters were changed to optionally accept
* an integer to be used as the response code.
2019-01-21 22:52:51 +00:00
* @since 5.1.0 The `$link_url`, `$link_text`, and `$exit` arguments were added.
2008-08-09 04:51:51 +00:00
*
2016-05-02 04:00:28 +00:00
* @param string|WP_Error $message Optional. Error message. If this is a WP_Error object,
2016-09-04 03:41:31 +00:00
* and not an Ajax or XML-RPC request, the error's messages are used.
* Default empty.
2014-11-18 16:47:23 +00:00
* @param string|int $title Optional. Error title. If `$message` is a `WP_Error` object,
* error data with the key 'title' may be used to specify the title.
2014-11-21 17:08:23 +00:00
* If `$title` is an integer, then it is treated as the response
* code. Default empty.
2014-11-16 06:11:22 +00:00
* @param string|array|int $args {
2014-11-18 16:47:23 +00:00
* Optional. Arguments to control behavior. If `$args` is an integer, then it is treated
* as the response code. Default empty array.
2014-11-16 06:11:22 +00:00
*
2016-10-24 13:13:58 +00:00
* @type int $response The HTTP response code. Default 200 for Ajax requests, 500 otherwise.
2019-01-16 15:21:50 +00:00
* @type string $link_url A URL to include a link to. Only works in combination with $link_text.
* Default empty string.
* @type string $link_text A label for the link to include. Only works in combination with $link_url.
* Default empty string.
2014-11-16 06:11:22 +00:00
* @type bool $back_link Whether to include a link to go back. Default false.
2014-11-18 16:47:23 +00:00
* @type string $text_direction The text direction. This is only useful internally, when WordPress
* is still loading and the site's locale is not set up yet. Accepts 'rtl'.
2016-05-02 04:00:28 +00:00
* Default is the value of is_rtl().
2019-01-21 16:02:50 +00:00
* @type string $code Error code to use. Default is 'wp_die', or the main error code if $message
* is a WP_Error.
2019-01-21 19:10:52 +00:00
* @type bool $exit Whether to exit the process after completion. Default true.
2014-11-16 06:11:22 +00:00
* }
2008-08-09 04:51:51 +00:00
*/
2012-01-31 22:12:58 +00:00
function wp_die ( $message = '' , $title = '' , $args = array () ) {
2014-11-16 06:11:22 +00:00
if ( is_int ( $args ) ) {
$args = array ( 'response' => $args );
} elseif ( is_int ( $title ) ) {
$args = array ( 'response' => $title );
$title = '' ;
}
2016-08-23 14:33:30 +00:00
if ( wp_doing_ajax () ) {
2014-04-14 00:20:14 +00:00
/**
2016-07-10 00:51:30 +00:00
* Filters the callback for killing WordPress execution for Ajax requests.
2014-04-14 00:20:14 +00:00
*
* @since 3.4.0
*
2015-09-25 23:58:25 +00:00
* @param callable $function Callback function name.
2014-04-14 00:20:14 +00:00
*/
2012-01-31 22:12:58 +00:00
$function = apply_filters ( 'wp_die_ajax_handler' , '_ajax_wp_die_handler' );
2019-01-16 15:22:56 +00:00
} elseif ( wp_is_json_request () ) {
/**
* Filters the callback for killing WordPress execution for JSON requests.
*
* @since 5.1.0
*
* @param callable $function Callback function name.
*/
$function = apply_filters ( 'wp_die_json_handler' , '_json_wp_die_handler' );
2019-03-26 22:26:52 +00:00
} elseif ( wp_is_jsonp_request () ) {
/**
* Filters the callback for killing WordPress execution for JSONP requests.
*
* @since 5.2.0
*
* @param callable $function Callback function name.
*/
$function = apply_filters ( 'wp_die_jsonp_handler' , '_jsonp_wp_die_handler' );
2014-04-14 00:20:14 +00:00
} elseif ( defined ( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
/**
2016-07-10 00:51:30 +00:00
* Filters the callback for killing WordPress execution for XML-RPC requests.
2014-04-14 00:20:14 +00:00
*
* @since 3.4.0
*
2015-09-25 23:58:25 +00:00
* @param callable $function Callback function name.
2014-04-14 00:20:14 +00:00
*/
2012-01-31 22:12:58 +00:00
$function = apply_filters ( 'wp_die_xmlrpc_handler' , '_xmlrpc_wp_die_handler' );
2019-03-26 23:11:52 +00:00
} elseif ( wp_is_xml_request ()
|| function_exists ( 'is_feed' ) && is_feed ()
|| function_exists ( 'is_comment_feed' ) && is_comment_feed ()
|| function_exists ( 'is_trackback' ) && is_trackback () ) {
/**
* Filters the callback for killing WordPress execution for XML requests.
*
* @since 5.2.0
*
* @param callable $function Callback function name.
*/
$function = apply_filters ( 'wp_die_xml_handler' , '_xml_wp_die_handler' );
2014-04-14 00:20:14 +00:00
} else {
/**
2019-03-26 23:11:52 +00:00
* Filters the callback for killing WordPress execution for all non-Ajax, non-JSON, non-XML requests.
2014-04-14 00:20:14 +00:00
*
* @since 3.0.0
*
2015-09-25 23:58:25 +00:00
* @param callable $function Callback function name.
2014-04-14 00:20:14 +00:00
*/
2012-01-31 22:12:58 +00:00
$function = apply_filters ( 'wp_die_handler' , '_default_wp_die_handler' );
2014-04-14 00:20:14 +00:00
}
2010-01-21 22:13:20 +00:00
call_user_func ( $function , $message , $title , $args );
}
/**
2019-03-17 01:45:50 +00:00
* Kills WordPress execution and displays HTML page with an error message.
2010-01-21 22:13:20 +00:00
*
2019-03-17 01:45:50 +00:00
* This is the default handler for wp_die(). If you want a custom one,
* you can override this using the {@see 'wp_die_handler'} filter in wp_die().
2010-01-21 22:13:20 +00:00
*
* @since 3.0.0
2010-05-03 13:27:15 +00:00
* @access private
2010-01-25 22:09:43 +00:00
*
2016-09-04 03:41:31 +00:00
* @param string|WP_Error $message Error message or WP_Error object.
* @param string $title Optional. Error title. Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
2010-01-21 22:13:20 +00:00
*/
function _default_wp_die_handler ( $message , $title = '' , $args = array () ) {
2019-01-21 16:02:50 +00:00
list ( $message , $title , $r ) = _wp_die_process_input ( $message , $title , $args );
2009-05-24 23:47:49 +00:00
2019-01-21 16:02:50 +00:00
if ( is_string ( $message ) ) {
if ( ! empty ( $r [ 'additional_errors' ] ) ) {
$message = array_merge (
array ( $message ),
wp_list_pluck ( $r [ 'additional_errors' ], 'message' )
);
$message = "<ul> \n\t\t <li>" . join ( "</li> \n\t\t <li>" , $message ) . "</li> \n\t </ul>" ;
} else {
$message = "<p> $message </p>" ;
2014-05-30 17:58:15 +00:00
}
2007-02-20 01:24:31 +00:00
}
2009-05-24 23:47:49 +00:00
2019-01-21 16:02:50 +00:00
$have_gettext = function_exists ( '__' );
2019-01-16 15:21:50 +00:00
if ( ! empty ( $r [ 'link_url' ] ) && ! empty ( $r [ 'link_text' ] ) ) {
$link_url = $r [ 'link_url' ];
if ( function_exists ( 'esc_url' ) ) {
$link_url = esc_url ( $link_url );
}
$link_text = $r [ 'link_text' ];
$message .= " \n <p><a href=' { $link_url } '> { $link_text } </a></p>" ;
}
2009-05-15 17:49:35 +00:00
if ( isset ( $r [ 'back_link' ] ) && $r [ 'back_link' ] ) {
2017-11-30 23:11:00 +00:00
$back_text = $have_gettext ? __ ( '« Back' ) : '« Back' ;
$message .= " \n <p><a href='javascript:history.back()'> $back_text </a></p>" ;
2009-05-15 17:49:35 +00:00
}
2009-05-24 23:47:49 +00:00
2012-01-31 22:12:58 +00:00
if ( ! did_action ( 'admin_head' ) ) :
2017-11-30 23:11:00 +00:00
if ( ! headers_sent () ) {
2019-03-11 11:47:50 +00:00
header ( 'Content-Type: text/html; charset=utf-8' );
2011-08-11 19:06:59 +00:00
status_header ( $r [ 'response' ] );
nocache_headers ();
}
2011-10-24 19:13:23 +00:00
2019-01-21 16:02:50 +00:00
$text_direction = $r [ 'text_direction' ];
2017-11-30 23:11:00 +00:00
if ( function_exists ( 'language_attributes' ) && function_exists ( 'is_rtl' ) ) {
$dir_attr = get_language_attributes ();
} else {
$dir_attr = "dir=' $text_direction '" ;
}
2018-08-17 01:51:36 +00:00
?>
2011-07-22 00:25:41 +00:00
<!DOCTYPE html>
2017-11-23 04:09:49 +00:00
<html xmlns="http://www.w3.org/1999/xhtml" <?php echo $dir_attr; ?>>
2006-07-10 05:29:10 +00:00
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2015-05-13 04:08:25 +00:00
<meta name="viewport" content="width=device-width">
2018-08-17 01:51:36 +00:00
<?php
if ( function_exists( 'wp_no_robots' ) ) {
wp_no_robots();
}
?>
2017-11-30 23:11:00 +00:00
<title><?php echo $title; ?></title>
2011-08-11 19:06:59 +00:00
<style type="text/css">
html {
2014-03-29 23:06:14 +00:00
background: #f1f1f1;
2011-08-11 19:06:59 +00:00
}
body {
background: #fff;
2014-03-29 23:06:14 +00:00
color: #444;
2016-07-26 16:39:30 +00:00
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
2011-08-11 19:06:59 +00:00
margin: 2em auto;
padding: 1em 2em;
2011-11-15 15:47:07 +00:00
max-width: 700px;
2019-03-04 22:02:52 +00:00
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
2011-08-11 19:06:59 +00:00
}
2012-03-18 11:51:25 +00:00
h1 {
border-bottom: 1px solid #dadada;
clear: both;
color: #666;
2016-05-04 22:07:37 +00:00
font-size: 24px;
2012-03-18 11:51:25 +00:00
margin: 30px 0 0 0;
padding: 0;
padding-bottom: 7px;
}
2011-08-11 19:06:59 +00:00
#error-page {
margin-top: 50px;
}
#error-page p {
2011-11-15 15:47:07 +00:00
font-size: 14px;
line-height: 1.5;
2011-08-11 19:06:59 +00:00
margin: 25px 0 20px;
}
#error-page code {
font-family: Consolas, Monaco, monospace;
}
2011-11-15 15:47:07 +00:00
ul li {
margin-bottom: 10px;
font-size: 14px ;
}
a {
2015-10-21 15:23:26 +00:00
color: #0073aa;
2011-11-15 15:47:07 +00:00
}
2015-11-03 17:59:24 +00:00
a:hover,
a:active {
2015-10-21 15:23:26 +00:00
color: #00a0d2;
}
a:focus {
color: #124964;
2017-11-30 23:11:00 +00:00
-webkit-box-shadow:
0 0 0 1px #5b9dd9,
2019-03-04 22:02:52 +00:00
0 0 2px 1px rgba(30, 140, 190, 0.8);
2017-11-30 23:11:00 +00:00
box-shadow:
0 0 0 1px #5b9dd9,
2019-03-04 22:02:52 +00:00
0 0 2px 1px rgba(30, 140, 190, 0.8);
2015-10-21 15:23:26 +00:00
outline: none;
2011-11-15 15:47:07 +00:00
}
2011-11-23 17:29:49 +00:00
.button {
2013-11-21 00:25:10 +00:00
background: #f7f7f7;
2015-10-21 15:23:26 +00:00
border: 1px solid #ccc;
2013-11-21 00:25:10 +00:00
color: #555;
2012-10-26 19:40:39 +00:00
display: inline-block;
2011-11-23 17:29:49 +00:00
text-decoration: none;
2013-11-21 00:25:10 +00:00
font-size: 13px;
line-height: 26px;
height: 28px;
2012-10-26 19:40:39 +00:00
margin: 0;
padding: 0 10px 1px;
2011-11-23 17:29:49 +00:00
cursor: pointer;
2012-10-26 19:40:39 +00:00
-webkit-border-radius: 3px;
2013-11-21 00:25:10 +00:00
-webkit-appearance: none;
2012-10-26 19:40:39 +00:00
border-radius: 3px;
white-space: nowrap;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
2013-12-11 19:49:11 +00:00
2015-10-21 15:23:26 +00:00
-webkit-box-shadow: 0 1px 0 #ccc;
box-shadow: 0 1px 0 #ccc;
2017-11-30 23:11:00 +00:00
vertical-align: top;
2012-10-26 19:40:39 +00:00
}
2012-11-17 15:11:29 +00:00
2012-10-26 19:40:39 +00:00
.button.button-large {
2015-10-21 15:23:26 +00:00
height: 30px;
2012-10-26 19:40:39 +00:00
line-height: 28px;
2015-10-21 15:23:26 +00:00
padding: 0 12px 2px;
2011-11-23 17:29:49 +00:00
}
2012-10-26 19:40:39 +00:00
.button:hover,
.button:focus {
2013-11-21 00:25:10 +00:00
background: #fafafa;
2012-10-26 19:40:39 +00:00
border-color: #999;
2015-10-21 15:23:26 +00:00
color: #23282d;
2012-10-26 19:40:39 +00:00
}
2012-11-17 15:11:29 +00:00
2019-03-04 22:02:52 +00:00
.button:focus {
2015-11-03 17:59:24 +00:00
border-color: #5b9dd9;
2019-03-04 22:02:52 +00:00
-webkit-box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
2015-10-21 15:23:26 +00:00
outline: none;
2011-11-23 17:29:49 +00:00
}
.button:active {
2012-10-26 19:40:39 +00:00
background: #eee;
border-color: #999;
2019-03-04 22:02:52 +00:00
-webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
2017-11-30 23:11:00 +00:00
-webkit-transform: translateY(1px);
-ms-transform: translateY(1px);
transform: translateY(1px);
2011-11-23 17:29:49 +00:00
}
2011-12-30 22:25:53 +00:00
2015-10-03 01:32:24 +00:00
<?php
if ( 'rtl' == $text_direction ) {
echo 'body { font-family: Tahoma, Arial; }';
}
?>
2011-08-11 19:06:59 +00:00
</style>
2006-07-10 05:29:10 +00:00
</head>
2008-02-24 04:33:51 +00:00
<body id="error-page">
2012-01-31 22:12:58 +00:00
<?php endif; // ! did_action( 'admin_head' ) ?>
2007-02-20 01:24:31 +00:00
<?php echo $message; ?>
2006-07-10 05:29:10 +00:00
</body>
</html>
2018-08-17 01:51:36 +00:00
<?php
2019-01-21 19:10:52 +00:00
if ( $r['exit'] ) {
die();
}
2006-07-05 19:13:26 +00:00
}
2019-03-26 23:11:52 +00:00
/**
* Kills WordPress execution and displays Ajax response with an error message.
*
* This is the handler for wp_die() when processing Ajax requests.
*
* @since 3.4.0
* @access private
*
* @param string $message Error message.
* @param string $title Optional. Error title (unused). Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
*/
function _ajax_wp_die_handler( $message, $title = '', $args = array() ) {
// Set default 'response' to 200 for AJAX requests.
$args = wp_parse_args(
$args,
array( 'response' => 200 )
);
list( $message, $title, $r ) = _wp_die_process_input( $message, $title, $args );
if ( ! headers_sent() ) {
// This is intentional. For backward-compatibility, support passing null here.
if ( null !== $args['response'] ) {
status_header( $r['response'] );
}
nocache_headers();
}
if ( is_scalar( $message ) ) {
$message = (string) $message;
} else {
$message = '0';
}
if ( $r['exit'] ) {
die( $message );
}
echo $message;
}
2019-01-16 15:22:56 +00:00
/**
2019-03-17 01:45:50 +00:00
* Kills WordPress execution and displays JSON response with an error message.
2019-01-16 15:22:56 +00:00
*
2019-03-17 01:45:50 +00:00
* This is the handler for wp_die() when processing JSON requests.
2019-01-16 15:22:56 +00:00
*
* @since 5.1.0
* @access private
*
* @param string $message Error message.
* @param string $title Optional. Error title. Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
*/
function _json_wp_die_handler( $message, $title = '', $args = array() ) {
2019-01-21 16:02:50 +00:00
list( $message, $title, $r ) = _wp_die_process_input( $message, $title, $args );
2019-01-16 15:22:56 +00:00
$data = array(
2019-01-21 16:02:50 +00:00
'code' => $r['code'],
'message' => $message,
'data' => array(
'status' => $r['response'],
),
'additional_errors' => $r['additional_errors'],
2019-01-16 15:22:56 +00:00
);
if ( ! headers_sent() ) {
header( 'Content-Type: application/json; charset=utf-8' );
if ( null !== $r['response'] ) {
status_header( $r['response'] );
}
2019-03-11 11:47:50 +00:00
nocache_headers();
2019-01-16 15:22:56 +00:00
}
echo wp_json_encode( $data );
2019-01-21 19:10:52 +00:00
if ( $r['exit'] ) {
die();
}
2019-01-16 15:22:56 +00:00
}
2019-03-26 22:26:52 +00:00
/**
2019-03-26 23:18:53 +00:00
* Kills WordPress execution and displays JSONP response with an error message.
2019-03-26 22:26:52 +00:00
*
2019-03-26 23:18:53 +00:00
* This is the handler for wp_die() when processing JSONP requests.
2019-03-26 22:26:52 +00:00
*
* @since 5.2.0
* @access private
*
* @param string $message Error message.
* @param string $title Optional. Error title. Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
*/
function _jsonp_wp_die_handler( $message, $title = '', $args = array() ) {
list( $message, $title, $r ) = _wp_die_process_input( $message, $title, $args );
$data = array(
'code' => $r['code'],
'message' => $message,
'data' => array(
'status' => $r['response'],
),
'additional_errors' => $r['additional_errors'],
);
if ( ! headers_sent() ) {
header( 'Content-Type: application/javascript; charset=utf-8' );
header( 'X-Content-Type-Options: nosniff' );
header( 'X-Robots-Tag: noindex' );
if ( null !== $r['response'] ) {
status_header( $r['response'] );
}
nocache_headers();
}
$result = wp_json_encode( $data );
$jsonp_callback = $_GET['_jsonp'];
echo '/**/' . $jsonp_callback . '(' . $result . ')';
if ( $r['exit'] ) {
die();
}
}
2011-04-17 08:35:51 +00:00
/**
2019-03-17 01:45:50 +00:00
* Kills WordPress execution and displays XML response with an error message.
2011-04-17 08:35:51 +00:00
*
2019-03-17 01:45:50 +00:00
* This is the handler for wp_die() when processing XMLRPC requests.
2011-04-17 08:35:51 +00:00
*
* @since 3.2.0
* @access private
*
2015-05-25 16:11:25 +00:00
* @global wp_xmlrpc_server $wp_xmlrpc_server
*
2014-07-01 01:44:15 +00:00
* @param string $message Error message.
* @param string $title Optional. Error title. Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
2011-04-17 08:35:51 +00:00
*/
2011-05-14 19:45:07 +00:00
function _xmlrpc_wp_die_handler( $message, $title = '', $args = array() ) {
2011-04-17 08:35:51 +00:00
global $wp_xmlrpc_server;
2019-01-21 16:02:50 +00:00
list( $message, $title, $r ) = _wp_die_process_input( $message, $title, $args );
2011-04-17 08:35:51 +00:00
2019-03-11 11:47:50 +00:00
if ( ! headers_sent() ) {
nocache_headers();
}
2011-05-14 19:45:07 +00:00
if ( $wp_xmlrpc_server ) {
2017-11-30 23:11:00 +00:00
$error = new IXR_Error( $r['response'], $message );
2011-05-14 19:45:07 +00:00
$wp_xmlrpc_server->output( $error->getXml() );
2011-04-17 08:35:51 +00:00
}
2019-01-21 19:10:52 +00:00
if ( $r['exit'] ) {
die();
}
2011-04-17 08:35:51 +00:00
}
/**
2019-03-26 23:18:53 +00:00
* Kills WordPress execution and displays XML response with an error message.
2011-05-14 19:45:07 +00:00
*
2019-03-26 23:18:53 +00:00
* This is the handler for wp_die() when processing XML requests.
2012-01-31 22:12:58 +00:00
*
2019-03-26 23:11:52 +00:00
* @since 5.2.0
2011-04-17 08:35:51 +00:00
* @access private
2012-01-31 22:12:58 +00:00
*
2016-08-31 16:31:29 +00:00
* @param string $message Error message.
2019-03-26 23:11:52 +00:00
* @param string $title Optional. Error title. Default empty.
2016-08-31 16:31:29 +00:00
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
*/
2019-03-26 23:11:52 +00:00
function _xml_wp_die_handler( $message, $title = '', $args = array() ) {
2019-01-21 16:02:50 +00:00
list( $message, $title, $r ) = _wp_die_process_input( $message, $title, $args );
2016-08-31 16:31:29 +00:00
2019-03-26 23:11:52 +00:00
$message = htmlspecialchars( $message );
$title = htmlspecialchars( $title );
$xml = <<<EOD
<error>
<code>{$r['code']}</code>
<title><![CDATA[{$title}]]></title>
<message><![CDATA[{$message}]]></message>
<data>
<status>{$r['response']}</status>
</data>
</error>
EOD;
2019-03-11 11:47:50 +00:00
if ( ! headers_sent() ) {
2019-03-26 23:11:52 +00:00
header( 'Content-Type: text/xml; charset=utf-8' );
if ( null !== $r['response'] ) {
2019-03-11 11:47:50 +00:00
status_header( $r['response'] );
}
nocache_headers();
2016-08-28 17:31:30 +00:00
}
2016-10-26 14:32:28 +00:00
2019-03-26 23:11:52 +00:00
echo $xml;
2019-01-21 19:10:52 +00:00
if ( $r['exit'] ) {
2019-03-26 23:11:52 +00:00
die();
2019-01-21 19:10:52 +00:00
}
2011-04-17 08:35:51 +00:00
}
2012-03-01 21:35:15 +00:00
/**
2019-03-17 01:45:50 +00:00
* Kills WordPress execution and displays an error message.
2012-03-01 21:35:15 +00:00
*
2019-03-17 01:45:50 +00:00
* This is the handler for wp_die() when processing APP requests.
2012-03-01 21:35:15 +00:00
*
* @since 3.4.0
2019-01-21 19:10:52 +00:00
* @since 5.1.0 Added the $title and $args parameters.
2012-03-01 21:35:15 +00:00
* @access private
*
2019-01-21 19:10:52 +00:00
* @param string $message Optional. Response to print. Default empty.
* @param string $title Optional. Error title (unused). Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
2012-03-01 21:35:15 +00:00
*/
2019-01-21 19:10:52 +00:00
function _scalar_wp_die_handler( $message = '', $title = '', $args = array() ) {
list( $message, $title, $r ) = _wp_die_process_input( $message, $title, $args );
if ( $r['exit'] ) {
if ( is_scalar( $message ) ) {
die( (string) $message );
}
die();
}
2017-11-30 23:11:00 +00:00
if ( is_scalar( $message ) ) {
2019-01-21 19:10:52 +00:00
echo (string) $message;
2017-11-30 23:11:00 +00:00
}
2012-03-01 21:35:15 +00:00
}
2019-01-21 16:02:50 +00:00
/**
2019-03-17 01:45:50 +00:00
* Processes arguments passed to wp_die() consistently for its handlers.
2019-01-21 16:02:50 +00:00
*
* @since 5.1.0
* @access private
*
* @param string $message Error message.
* @param string $title Optional. Error title. Default empty.
* @param string|array $args Optional. Arguments to control behavior. Default empty array.
* @return array List of processed $message string, $title string, and $args array.
*/
function _wp_die_process_input( $message, $title = '', $args = array() ) {
$defaults = array(
'response' => 0,
'code' => '',
2019-01-21 19:10:52 +00:00
'exit' => true,
2019-01-21 16:02:50 +00:00
'back_link' => false,
'link_url' => '',
'link_text' => '',
'text_direction' => '',
'additional_errors' => array(),
);
$args = wp_parse_args( $args, $defaults );
if ( function_exists( 'is_wp_error' ) && is_wp_error( $message ) ) {
if ( ! empty( $message->errors ) ) {
$errors = array();
foreach ( (array) $message->errors as $error_code => $error_messages ) {
foreach ( (array) $error_messages as $error_message ) {
$errors[] = array(
'code' => $error_code,
'message' => $error_message,
2019-01-22 08:52:50 +00:00
'data' => $message->get_error_data( $error_code ),
2019-01-21 16:02:50 +00:00
);
}
}
$message = $errors[0]['message'];
if ( empty( $args['code'] ) ) {
$args['code'] = $errors[0]['code'];
}
if ( empty( $args['response'] ) && is_array( $errors[0]['data'] ) && ! empty( $errors[0]['data']['status'] ) ) {
$args['response'] = $errors[0]['data']['status'];
}
if ( empty( $title ) && is_array( $errors[0]['data'] ) && ! empty( $errors[0]['data']['title'] ) ) {
$title = $errors[0]['data']['title'];
}
unset( $errors[0] );
$args['additional_errors'] = array_values( $errors );
} else {
$message = '';
}
}
$have_gettext = function_exists( '__' );
// The $title and these specific $args must always have a non-empty value.
if ( empty( $args['code'] ) ) {
$args['code'] = 'wp_die';
}
if ( empty( $args['response'] ) ) {
$args['response'] = 500;
}
if ( empty( $title ) ) {
$title = $have_gettext ? __( 'WordPress › Error' ) : 'WordPress › Error';
}
if ( empty( $args['text_direction'] ) || ! in_array( $args['text_direction'], array( 'ltr', 'rtl' ), true ) ) {
$args['text_direction'] = 'ltr';
if ( function_exists( 'is_rtl' ) && is_rtl() ) {
$args['text_direction'] = 'rtl';
}
}
return array( $message, $title, $args );
}
2014-10-28 18:35:19 +00:00
/**
2014-10-28 21:29:23 +00:00
* Encode a variable into JSON, with some sanity checks.
2014-10-28 18:35:19 +00:00
*
* @since 4.1.0
*
2014-10-28 21:29:23 +00:00
* @param mixed $data Variable (usually an array or object) to encode as JSON.
2014-11-28 11:36:23 +00:00
* @param int $options Optional. Options to be passed to json_encode(). Default 0.
* @param int $depth Optional. Maximum depth to walk through $data. Must be
* greater than 0. Default 512.
2015-05-25 16:11:25 +00:00
* @return string|false The JSON encoded string, or false if it cannot be encoded.
2014-10-28 18:35:19 +00:00
*/
function wp_json_encode( $data, $options = 0, $depth = 512 ) {
2014-10-28 21:29:23 +00:00
/*
* json_encode() has had extra params added over the years.
* $options was added in 5.3, and $depth in 5.5.
* We need to make sure we call it with the correct arguments.
*/
2014-10-28 18:35:19 +00:00
if ( version_compare( PHP_VERSION, '5.5', '>=' ) ) {
$args = array( $data, $options, $depth );
2014-10-28 21:29:23 +00:00
} elseif ( version_compare( PHP_VERSION, '5.3', '>=' ) ) {
2014-10-28 18:35:19 +00:00
$args = array( $data, $options );
} else {
$args = array( $data );
}
2015-10-08 01:30:25 +00:00
// Prepare the data for JSON serialization.
2016-05-17 03:55:29 +00:00
$args[0] = _wp_json_prepare_data( $data );
2015-10-08 01:30:25 +00:00
2015-08-26 03:26:21 +00:00
$json = @call_user_func_array( 'json_encode', $args );
2014-10-28 18:35:19 +00:00
2014-10-28 21:29:23 +00:00
// If json_encode() was successful, no need to do more sanity checking.
2014-11-25 05:01:23 +00:00
// ... unless we're in an old version of PHP, and json_encode() returned
// a string containing 'null'. Then we need to do more sanity checking.
2017-11-30 23:11:00 +00:00
if ( false !== $json && ( version_compare( PHP_VERSION, '5.5', '>=' ) || false === strpos( $json, 'null' ) ) ) {
2014-10-28 18:35:19 +00:00
return $json;
}
try {
$args[0] = _wp_json_sanity_check( $data, $depth );
} catch ( Exception $e ) {
return false;
}
return call_user_func_array( 'json_encode', $args );
}
/**
2014-10-28 21:29:23 +00:00
* Perform sanity checks on data that shall be encoded to JSON.
*
2015-01-13 00:51:21 +00:00
* @ignore
2014-10-28 21:29:23 +00:00
* @since 4.1.0
* @access private
2015-01-13 00:51:21 +00:00
*
* @see wp_json_encode()
2014-10-28 21:29:23 +00:00
*
* @param mixed $data Variable (usually an array or object) to encode as JSON.
* @param int $depth Maximum depth to walk through $data. Must be greater than 0.
* @return mixed The sanitized data that shall be encoded to JSON.
2014-10-28 18:35:19 +00:00
*/
function _wp_json_sanity_check( $data, $depth ) {
if ( $depth < 0 ) {
throw new Exception( 'Reached depth limit' );
}
if ( is_array( $data ) ) {
$output = array();
foreach ( $data as $id => $el ) {
// Don't forget to sanitize the ID!
if ( is_string( $id ) ) {
$clean_id = _wp_json_convert_string( $id );
} else {
$clean_id = $id;
}
2014-10-28 21:29:23 +00:00
// Check the element type, so that we're only recursing if we really have to.
2014-10-28 18:35:19 +00:00
if ( is_array( $el ) || is_object( $el ) ) {
$output[ $clean_id ] = _wp_json_sanity_check( $el, $depth - 1 );
2014-10-28 21:29:23 +00:00
} elseif ( is_string( $el ) ) {
2014-10-28 18:35:19 +00:00
$output[ $clean_id ] = _wp_json_convert_string( $el );
} else {
$output[ $clean_id ] = $el;
}
}
2014-10-28 21:29:23 +00:00
} elseif ( is_object( $data ) ) {
2014-10-28 18:35:19 +00:00
$output = new stdClass;
foreach ( $data as $id => $el ) {
if ( is_string( $id ) ) {
$clean_id = _wp_json_convert_string( $id );
} else {
$clean_id = $id;
}
if ( is_array( $el ) || is_object( $el ) ) {
$output->$clean_id = _wp_json_sanity_check( $el, $depth - 1 );
2014-10-28 21:29:23 +00:00
} elseif ( is_string( $el ) ) {
2014-10-28 18:35:19 +00:00
$output->$clean_id = _wp_json_convert_string( $el );
} else {
$output->$clean_id = $el;
}
}
2014-10-28 21:29:23 +00:00
} elseif ( is_string( $data ) ) {
2014-10-28 18:35:19 +00:00
return _wp_json_convert_string( $data );
} else {
return $data;
}
return $output;
}
/**
2014-10-28 21:29:23 +00:00
* Convert a string to UTF-8, so that it can be safely encoded to JSON.
*
2015-01-13 00:51:21 +00:00
* @ignore
2014-10-28 21:29:23 +00:00
* @since 4.1.0
* @access private
2015-01-13 00:51:21 +00:00
*
* @see _wp_json_sanity_check()
2014-10-28 21:29:23 +00:00
*
2015-05-25 16:11:25 +00:00
* @staticvar bool $use_mb
*
2014-10-28 21:29:23 +00:00
* @param string $string The string which is to be converted.
* @return string The checked string.
2014-10-28 18:35:19 +00:00
*/
function _wp_json_convert_string( $string ) {
static $use_mb = null;
if ( is_null( $use_mb ) ) {
$use_mb = function_exists( 'mb_convert_encoding' );
}
if ( $use_mb ) {
$encoding = mb_detect_encoding( $string, mb_detect_order(), true );
if ( $encoding ) {
return mb_convert_encoding( $string, 'UTF-8', $encoding );
} else {
return mb_convert_encoding( $string, 'UTF-8', 'UTF-8' );
}
} else {
2014-11-01 22:00:24 +00:00
return wp_check_invalid_utf8( $string, true );
2014-10-28 18:35:19 +00:00
}
}
2015-10-08 01:30:25 +00:00
/**
* Prepares response data to be serialized to JSON.
*
* This supports the JsonSerializable interface for PHP 5.2-5.3 as well.
*
* @ignore
* @since 4.4.0
* @access private
*
* @param mixed $data Native representation.
* @return bool|int|float|null|string|array Data ready for `json_encode()`.
*/
function _wp_json_prepare_data( $data ) {
if ( ! defined( 'WP_JSON_SERIALIZE_COMPATIBLE' ) || WP_JSON_SERIALIZE_COMPATIBLE === false ) {
return $data;
}
switch ( gettype( $data ) ) {
case 'boolean':
case 'integer':
case 'double':
case 'string':
case 'NULL':
// These values can be passed through.
return $data;
case 'array':
// Arrays must be mapped in case they also return objects.
return array_map( '_wp_json_prepare_data', $data );
case 'object':
// If this is an incomplete object (__PHP_Incomplete_Class), bail.
if ( ! is_object( $data ) ) {
return null;
}
if ( $data instanceof JsonSerializable ) {
$data = $data->jsonSerialize();
} else {
$data = get_object_vars( $data );
}
// Now, pass the array (or whatever was returned from jsonSerialize through).
return _wp_json_prepare_data( $data );
default:
return null;
}
}
2012-08-31 01:56:00 +00:00
/**
* Send a JSON response back to an Ajax request.
*
* @since 3.5.0
2016-08-28 17:42:28 +00:00
* @since 4.7.0 The `$status_code` parameter was added.
2012-08-31 01:56:00 +00:00
*
2016-08-28 17:42:28 +00:00
* @param mixed $response Variable (usually an array or object) to encode as JSON,
* then print and die.
* @param int $status_code The HTTP status code to output.
2012-08-31 01:56:00 +00:00
*/
2016-09-08 13:45:34 +00:00
function wp_send_json( $response, $status_code = null ) {
2012-08-31 01:56:00 +00:00
@header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
2016-09-08 13:45:34 +00:00
if ( null !== $status_code ) {
status_header( $status_code );
}
2014-10-28 18:35:19 +00:00
echo wp_json_encode( $response );
2016-10-26 14:32:28 +00:00
if ( wp_doing_ajax() ) {
2017-11-30 23:11:00 +00:00
wp_die(
2018-08-17 01:51:36 +00:00
'',
'',
array(
2017-11-30 23:11:00 +00:00
'response' => null,
)
);
2016-10-26 14:32:28 +00:00
} else {
2012-08-31 01:56:00 +00:00
die;
2016-10-26 14:32:28 +00:00
}
2012-08-31 01:56:00 +00:00
}
/**
* Send a JSON response back to an Ajax request, indicating success.
*
* @since 3.5.0
2016-08-28 17:42:28 +00:00
* @since 4.7.0 The `$status_code` parameter was added.
2012-08-31 01:56:00 +00:00
*
2016-08-28 17:42:28 +00:00
* @param mixed $data Data to encode as JSON, then print and die.
* @param int $status_code The HTTP status code to output.
2012-08-31 01:56:00 +00:00
*/
2016-09-08 13:45:34 +00:00
function wp_send_json_success( $data = null, $status_code = null ) {
2012-08-31 01:56:00 +00:00
$response = array( 'success' => true );
2017-11-30 23:11:00 +00:00
if ( isset( $data ) ) {
2012-08-31 01:56:00 +00:00
$response['data'] = $data;
2017-11-30 23:11:00 +00:00
}
2012-08-31 01:56:00 +00:00
2016-08-28 17:42:28 +00:00
wp_send_json( $response, $status_code );
2012-08-31 01:56:00 +00:00
}
/**
* Send a JSON response back to an Ajax request, indicating failure.
*
2016-05-02 04:00:28 +00:00
* If the `$data` parameter is a WP_Error object, the errors
2014-11-28 11:39:22 +00:00
* within the object are processed and output as an array of error
* codes and corresponding messages. All other types are output
* without further processing.
2014-11-21 16:56:23 +00:00
*
2012-08-31 01:56:00 +00:00
* @since 3.5.0
2016-05-02 04:00:28 +00:00
* @since 4.1.0 The `$data` parameter is now processed if a WP_Error object is passed in.
2016-08-28 17:42:28 +00:00
* @since 4.7.0 The `$status_code` parameter was added.
2012-08-31 01:56:00 +00:00
*
2016-08-28 17:42:28 +00:00
* @param mixed $data Data to encode as JSON, then print and die.
* @param int $status_code The HTTP status code to output.
2012-08-31 01:56:00 +00:00
*/
2016-09-08 13:45:34 +00:00
function wp_send_json_error( $data = null, $status_code = null ) {
2012-08-31 01:56:00 +00:00
$response = array( 'success' => false );
2014-11-21 16:56:23 +00:00
if ( isset( $data ) ) {
if ( is_wp_error( $data ) ) {
$result = array();
foreach ( $data->errors as $code => $messages ) {
foreach ( $messages as $message ) {
2017-11-30 23:11:00 +00:00
$result[] = array(
'code' => $code,
'message' => $message,
);
2014-11-21 16:56:23 +00:00
}
}
$response['data'] = $result;
} else {
$response['data'] = $data;
}
}
2012-08-31 01:56:00 +00:00
2016-08-28 17:42:28 +00:00
wp_send_json( $response, $status_code );
2012-08-31 01:56:00 +00:00
}
2016-06-06 21:34:28 +00:00
/**
2016-07-20 16:57:32 +00:00
* Checks that a JSONP callback is a valid JavaScript callback.
2016-06-06 21:34:28 +00:00
*
* Only allows alphanumeric characters and the dot character in callback
* function names. This helps to mitigate XSS attacks caused by directly
* outputting user input.
*
* @since 4.6.0
*
* @param string $callback Supplied JSONP callback function.
* @return bool True if valid callback, otherwise false.
*/
function wp_check_jsonp_callback( $callback ) {
if ( ! is_string( $callback ) ) {
return false;
}
2016-08-22 20:51:30 +00:00
preg_replace( '/[^\w\.]/', '', $callback, -1, $illegal_char_count );
2016-06-06 21:34:28 +00:00
return 0 === $illegal_char_count;
}
2008-08-09 04:51:51 +00:00
/**
* Retrieve the WordPress home page URL.
*
2014-07-01 01:44:15 +00:00
* If the constant named 'WP_HOME' exists, then it will be used and returned
* by the function. This can be used to counter the redirection on your local
2008-08-09 04:51:51 +00:00
* development environment.
*
* @since 2.2.0
2014-07-01 01:44:15 +00:00
* @access private
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* @see WP_HOME
*
* @param string $url URL for the home location.
2008-08-09 04:51:51 +00:00
* @return string Homepage location.
*/
2007-10-11 05:46:57 +00:00
function _config_wp_home( $url = '' ) {
2017-11-30 23:11:00 +00:00
if ( defined( 'WP_HOME' ) ) {
2011-07-21 21:35:23 +00:00
return untrailingslashit( WP_HOME );
2017-11-30 23:11:00 +00:00
}
2007-10-11 05:46:57 +00:00
return $url;
2007-03-23 17:45:40 +00:00
}
2008-08-09 04:51:51 +00:00
/**
* Retrieve the WordPress site URL.
*
* If the constant named 'WP_SITEURL' is defined, then the value in that
2014-07-01 01:44:15 +00:00
* constant will always be returned. This can be used for debugging a site
* on your localhost while not having to change the database to your URL.
2008-08-09 04:51:51 +00:00
*
* @since 2.2.0
2014-07-01 01:44:15 +00:00
* @access private
*
* @see WP_SITEURL
2008-08-09 04:51:51 +00:00
*
* @param string $url URL to set the WordPress site location.
2014-07-01 01:44:15 +00:00
* @return string The WordPress Site URL.
2008-08-09 04:51:51 +00:00
*/
2007-10-11 05:46:57 +00:00
function _config_wp_siteurl( $url = '' ) {
2017-11-30 23:11:00 +00:00
if ( defined( 'WP_SITEURL' ) ) {
2011-07-21 21:35:23 +00:00
return untrailingslashit( WP_SITEURL );
2017-11-30 23:11:00 +00:00
}
2007-10-11 05:46:57 +00:00
return $url;
2007-03-23 17:45:40 +00:00
}
2016-10-28 02:57:35 +00:00
/**
* Delete the fresh site option.
*
* @since 4.7.0
* @access private
*/
function _delete_option_fresh_site() {
2017-08-13 00:57:43 +00:00
update_option( 'fresh_site', '0' );
2016-10-28 02:57:35 +00:00
}
2008-08-09 04:51:51 +00:00
/**
* Set the localized direction for MCE plugin.
*
2014-07-01 01:44:15 +00:00
* Will only set the direction to 'rtl', if the WordPress locale has
* the text direction set to 'rtl'.
2008-08-09 04:51:51 +00:00
*
2014-07-01 01:44:15 +00:00
* Fills in the 'directionality' setting, enables the 'directionality'
* plugin, and adds the 'ltr' button to 'toolbar1', formerly
* 'theme_advanced_buttons1' array keys. These keys are then returned
2016-08-25 01:20:30 +00:00
* in the $mce_init (TinyMCE settings) array.
2008-08-09 04:51:51 +00:00
*
* @since 2.1.0
2014-07-01 01:44:15 +00:00
* @access private
2008-08-09 04:51:51 +00:00
*
2016-08-25 01:20:30 +00:00
* @param array $mce_init MCE settings array.
2008-08-09 04:51:51 +00:00
* @return array Direction set for 'rtl', if needed by locale.
*/
2016-08-25 01:20:30 +00:00
function _mce_set_direction( $mce_init ) {
2010-05-03 05:49:19 +00:00
if ( is_rtl() ) {
2016-08-25 01:20:30 +00:00
$mce_init['directionality'] = 'rtl';
2017-11-30 23:11:00 +00:00
$mce_init['rtl_ui'] = true;
2015-03-24 20:33:27 +00:00
2016-08-25 01:20:30 +00:00
if ( ! empty( $mce_init['plugins'] ) && strpos( $mce_init['plugins'], 'directionality' ) === false ) {
$mce_init['plugins'] .= ',directionality';
2015-03-24 20:33:27 +00:00
}
2016-08-25 01:20:30 +00:00
if ( ! empty( $mce_init['toolbar1'] ) && ! preg_match( '/\bltr\b/', $mce_init['toolbar1'] ) ) {
$mce_init['toolbar1'] .= ',ltr';
2015-03-24 20:33:27 +00:00
}
2006-09-21 00:34:34 +00:00
}
2016-08-25 01:20:30 +00:00
return $mce_init;
2006-09-21 00:34:34 +00:00
}
2007-03-12 21:31:24 +00:00
2013-11-15 02:46:10 +00:00
2008-08-09 04:51:51 +00:00
/**
* Convert smiley code to the icon graphic file equivalent.
*
* You can turn off smilies, by going to the write setting screen and unchecking
* the box, or by setting 'use_smilies' option to false or removing the option.
*
* Plugins may override the default smiley list by setting the $wpsmiliestrans
* to an array, with the key the code the blogger types in and the value the
* image file.
*
2009-01-06 18:20:47 +00:00
* The $wp_smiliessearch global is for the regular expression and is set each
* time the function is called.
2008-08-09 04:51:51 +00:00
*
* The full list of smilies can be found in the function and won't be listed in
* the description. Probably should create a Codex page for it, so that it is
* available.
*
* @global array $wpsmiliestrans
* @global array $wp_smiliessearch
2014-07-01 01:44:15 +00:00
*
2008-08-09 04:51:51 +00:00
* @since 2.2.0
*/
2007-03-12 21:31:24 +00:00
function smilies_init() {
2009-01-06 18:20:47 +00:00
global $wpsmiliestrans, $wp_smiliessearch;
2007-03-12 21:31:24 +00:00
// don't bother setting up smilies if they are disabled
2017-11-30 23:11:00 +00:00
if ( ! get_option( 'use_smilies' ) ) {
2007-03-12 21:31:24 +00:00
return;
2017-11-30 23:11:00 +00:00
}
2007-03-12 21:31:24 +00:00
2017-11-30 23:11:00 +00:00
if ( ! isset( $wpsmiliestrans ) ) {
2007-03-12 21:31:24 +00:00
$wpsmiliestrans = array(
2017-11-30 23:11:00 +00:00
':mrgreen:' => 'mrgreen.png',
':neutral:' => "\xf0\x9f\x98\x90",
':twisted:' => "\xf0\x9f\x98\x88",
':arrow:' => "\xe2\x9e\xa1",
':shock:' => "\xf0\x9f\x98\xaf",
':smile:' => "\xf0\x9f\x99\x82",
':???:' => "\xf0\x9f\x98\x95",
':cool:' => "\xf0\x9f\x98\x8e",
':evil:' => "\xf0\x9f\x91\xbf",
':grin:' => "\xf0\x9f\x98\x80",
':idea:' => "\xf0\x9f\x92\xa1",
':oops:' => "\xf0\x9f\x98\xb3",
':razz:' => "\xf0\x9f\x98\x9b",
':roll:' => "\xf0\x9f\x99\x84",
':wink:' => "\xf0\x9f\x98\x89",
':cry:' => "\xf0\x9f\x98\xa5",
':eek:' => "\xf0\x9f\x98\xae",
':lol:' => "\xf0\x9f\x98\x86",
':mad:' => "\xf0\x9f\x98\xa1",
':sad:' => "\xf0\x9f\x99\x81",
'8-)' => "\xf0\x9f\x98\x8e",
'8-O' => "\xf0\x9f\x98\xaf",
':-(' => "\xf0\x9f\x99\x81",
':-)' => "\xf0\x9f\x99\x82",
':-?' => "\xf0\x9f\x98\x95",
':-D' => "\xf0\x9f\x98\x80",
':-P' => "\xf0\x9f\x98\x9b",
':-o' => "\xf0\x9f\x98\xae",
':-x' => "\xf0\x9f\x98\xa1",
':-|' => "\xf0\x9f\x98\x90",
';-)' => "\xf0\x9f\x98\x89",
// This one transformation breaks regular text with frequency.
// '8)' => "\xf0\x9f\x98\x8e",
'8O' => "\xf0\x9f\x98\xaf",
':(' => "\xf0\x9f\x99\x81",
':)' => "\xf0\x9f\x99\x82",
':?' => "\xf0\x9f\x98\x95",
':D' => "\xf0\x9f\x98\x80",
':P' => "\xf0\x9f\x98\x9b",
':o' => "\xf0\x9f\x98\xae",
':x' => "\xf0\x9f\x98\xa1",
':|' => "\xf0\x9f\x98\x90",
';)' => "\xf0\x9f\x98\x89",
':!:' => "\xe2\x9d\x97",
':?:' => "\xe2\x9d\x93",
2007-03-12 21:31:24 +00:00
);
}
2016-09-02 00:00:30 +00:00
/**
2016-09-14 21:53:29 +00:00
* Filters all the smilies.
2016-09-02 00:00:30 +00:00
*
* This filter must be added before `smilies_init` is run, as
* it is normally only run once to setup the smilies regex.
*
2016-09-02 00:08:30 +00:00
* @since 4.7.0
2016-09-02 00:00:30 +00:00
*
* @param array $wpsmiliestrans List of the smilies.
*/
2017-11-30 23:11:00 +00:00
$wpsmiliestrans = apply_filters( 'smilies', $wpsmiliestrans );
2016-09-02 00:00:30 +00:00
2017-11-30 23:11:00 +00:00
if ( count( $wpsmiliestrans ) == 0 ) {
2009-01-06 18:20:47 +00:00
return;
}
/*
* NOTE: we sort the smilies in reverse key order. This is to make sure
* we match the longest possible smilie (:???: vs :?) as the regular
* expression used below is first-match
*/
2017-11-30 23:11:00 +00:00
krsort( $wpsmiliestrans );
2009-01-06 18:20:47 +00:00
2014-06-10 02:03:14 +00:00
$spaces = wp_spaces_regexp();
// Begin first "subpattern"
$wp_smiliessearch = '/(?<=' . $spaces . '|^)';
2009-01-06 18:20:47 +00:00
$subchar = '';
2007-03-12 21:31:24 +00:00
foreach ( (array) $wpsmiliestrans as $smiley => $img ) {
2017-11-30 23:11:00 +00:00
$firstchar = substr( $smiley, 0, 1 );
$rest = substr( $smiley, 1 );
2009-01-06 18:20:47 +00:00
// new subpattern?
2017-11-30 23:11:00 +00:00
if ( $firstchar != $subchar ) {
if ( $subchar != '' ) {
2014-06-10 02:03:14 +00:00
$wp_smiliessearch .= ')(?=' . $spaces . '|$)'; // End previous "subpattern"
$wp_smiliessearch .= '|(?<=' . $spaces . '|^)'; // Begin another "subpattern"
2009-01-06 18:20:47 +00:00
}
2017-11-30 23:11:00 +00:00
$subchar = $firstchar;
$wp_smiliessearch .= preg_quote( $firstchar, '/' ) . '(?:';
2009-01-06 18:20:47 +00:00
} else {
$wp_smiliessearch .= '|';
}
2017-11-30 23:11:00 +00:00
$wp_smiliessearch .= preg_quote( $rest, '/' );
2007-03-12 21:31:24 +00:00
}
2009-01-06 18:20:47 +00:00
2014-06-10 02:03:14 +00:00
$wp_smiliessearch .= ')(?=' . $spaces . '|$)/m';
2013-11-15 02:46:10 +00:00
2007-03-12 21:31:24 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Merge user defined arguments into defaults array.
*
* This function is used throughout WordPress to allow for both string or array
* to be merged into another array.
*
* @since 2.2.0
2016-09-28 08:41:29 +00:00
* @since 2.3.0 `$args` can now also be an object.
2008-06-15 09:38:32 +00:00
*
2016-09-28 08:41:29 +00:00
* @param string|array|object $args Value to merge with $defaults.
* @param array $defaults Optional. Array that serves as the defaults. Default empty.
2008-06-15 09:38:32 +00:00
* @return array Merged user defined values with defaults.
*/
2007-04-10 19:52:15 +00:00
function wp_parse_args( $args, $defaults = '' ) {
2017-11-30 23:11:00 +00:00
if ( is_object( $args ) ) {
2007-10-11 05:46:57 +00:00
$r = get_object_vars( $args );
2017-11-30 23:11:00 +00:00
} elseif ( is_array( $args ) ) {
2007-04-10 19:52:15 +00:00
$r =& $args;
2017-11-30 23:11:00 +00:00
} else {
2007-06-14 22:46:59 +00:00
wp_parse_str( $args, $r );
2017-11-30 23:11:00 +00:00
}
2007-06-14 02:25:30 +00:00
2017-11-30 23:11:00 +00:00
if ( is_array( $defaults ) ) {
2007-05-10 02:33:01 +00:00
return array_merge( $defaults, $r );
2017-11-30 23:11:00 +00:00
}
2007-10-11 05:46:57 +00:00
return $r;
2007-04-10 19:52:15 +00:00
}
2019-01-10 21:06:49 +00:00
/**
* Cleans up an array, comma- or space-separated list of scalar values.
*
* @since 5.1.0
*
* @param array|string $list List of values.
* @return array Sanitized array of values.
*/
function wp_parse_list( $list ) {
if ( ! is_array( $list ) ) {
return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY );
}
return $list;
}
2010-01-08 08:44:45 +00:00
/**
2011-07-21 17:48:25 +00:00
* Clean up an array, comma- or space-separated list of IDs.
2010-01-08 08:44:45 +00:00
*
* @since 3.0.0
*
2014-07-01 01:44:15 +00:00
* @param array|string $list List of ids.
* @return array Sanitized array of IDs.
2010-01-08 08:44:45 +00:00
*/
2010-04-16 14:08:58 +00:00
function wp_parse_id_list( $list ) {
2019-01-10 21:06:49 +00:00
$list = wp_parse_list( $list );
2010-01-08 08:44:45 +00:00
2017-11-30 23:11:00 +00:00
return array_unique( array_map( 'absint', $list ) );
2010-01-08 08:44:45 +00:00
}
2016-10-20 02:55:32 +00:00
/**
* Clean up an array, comma- or space-separated list of slugs.
*
* @since 4.7.0
*
* @param array|string $list List of slugs.
* @return array Sanitized array of slugs.
*/
function wp_parse_slug_list( $list ) {
2019-01-10 21:06:49 +00:00
$list = wp_parse_list( $list );
2016-10-20 02:55:32 +00:00
2019-01-10 21:06:49 +00:00
return array_unique( array_map( 'sanitize_title', $list ) );
2016-10-20 02:55:32 +00:00
}
2010-09-05 18:47:25 +00:00
/**
2011-07-21 17:48:25 +00:00
* Extract a slice of an array, given a list of keys.
2010-09-05 18:47:25 +00:00
*
* @since 3.1.0
*
2014-07-01 01:44:15 +00:00
* @param array $array The original array.
* @param array $keys The list of keys.
* @return array The array slice.
2010-09-05 18:47:25 +00:00
*/
function wp_array_slice_assoc( $array, $keys ) {
$slice = array();
2017-11-30 23:11:00 +00:00
foreach ( $keys as $key ) {
if ( isset( $array[ $key ] ) ) {
2010-09-05 18:47:25 +00:00
$slice[ $key ] = $array[ $key ];
2017-11-30 23:11:00 +00:00
}
}
2010-09-05 18:47:25 +00:00
return $slice;
}
2015-10-08 02:14:25 +00:00
/**
* Determines if the variable is a numeric-indexed array.
*
* @since 4.4.0
*
* @param mixed $data Variable to check.
* @return bool Whether the variable is a list.
*/
function wp_is_numeric_array( $data ) {
if ( ! is_array( $data ) ) {
return false;
}
2017-11-30 23:11:00 +00:00
$keys = array_keys( $data );
2015-10-08 02:14:25 +00:00
$string_keys = array_filter( $keys, 'is_string' );
return count( $string_keys ) === 0;
}
2010-04-16 14:08:58 +00:00
/**
2011-07-21 17:48:25 +00:00
* Filters a list of objects, based on a set of key => value arguments.
2010-04-16 14:08:58 +00:00
*
* @since 3.0.0
2018-02-09 16:55:31 +00:00
* @since 4.7.0 Uses `WP_List_Util` class.
2010-04-16 14:08:58 +00:00
*
2014-07-01 01:44:15 +00:00
* @param array $list An array of objects to filter
* @param array $args Optional. An array of key => value arguments to match
* against each object. Default empty array.
* @param string $operator Optional. The logical operation to perform. 'or' means
* only one element from the array needs to match; 'and'
2015-12-26 00:37:26 +00:00
* means all elements must match; 'not' means no elements may
* match. Default 'and'.
2014-07-01 01:44:15 +00:00
* @param bool|string $field A field from the object to place instead of the entire object.
* Default false.
* @return array A list of objects or object fields.
2010-04-16 14:08:58 +00:00
*/
function wp_filter_object_list( $list, $args = array(), $operator = 'and', $field = false ) {
2016-10-25 21:26:32 +00:00
if ( ! is_array( $list ) ) {
2011-02-09 17:06:22 +00:00
return array();
2016-10-25 21:26:32 +00:00
}
2011-02-09 17:06:22 +00:00
2016-10-25 21:26:32 +00:00
$util = new WP_List_Util( $list );
2010-04-16 14:08:58 +00:00
2016-10-25 21:26:32 +00:00
$util->filter( $args, $operator );
2010-10-02 18:48:51 +00:00
2016-10-25 21:26:32 +00:00
if ( $field ) {
$util->pluck( $field );
}
return $util->get_output();
2010-10-02 18:48:51 +00:00
}
2010-04-16 14:08:58 +00:00
2010-10-02 18:48:51 +00:00
/**
2011-07-21 17:48:25 +00:00
* Filters a list of objects, based on a set of key => value arguments.
2010-10-02 18:48:51 +00:00
*
* @since 3.1.0
2018-02-09 16:55:31 +00:00
* @since 4.7.0 Uses `WP_List_Util` class.
2010-10-02 18:48:51 +00:00
*
2014-07-01 01:44:15 +00:00
* @param array $list An array of objects to filter.
* @param array $args Optional. An array of key => value arguments to match
* against each object. Default empty array.
* @param string $operator Optional. The logical operation to perform. 'AND' means
* all elements from the array must match. 'OR' means only
* one element needs to match. 'NOT' means no elements may
* match. Default 'AND'.
* @return array Array of found values.
2010-10-02 18:48:51 +00:00
*/
2011-01-11 18:56:59 +00:00
function wp_list_filter( $list, $args = array(), $operator = 'AND' ) {
2016-10-25 21:26:32 +00:00
if ( ! is_array( $list ) ) {
2011-02-09 17:06:22 +00:00
return array();
2010-04-16 14:08:58 +00:00
}
2016-10-25 21:26:32 +00:00
$util = new WP_List_Util( $list );
return $util->filter( $args, $operator );
2010-04-16 14:08:58 +00:00
}
2010-10-02 18:48:51 +00:00
/**
2011-07-21 17:48:25 +00:00
* Pluck a certain field out of each object in a list.
2010-10-02 18:48:51 +00:00
*
2014-06-29 21:26:17 +00:00
* This has the same functionality and prototype of
* array_column() (PHP 5.5) but also supports objects.
*
2010-10-02 18:48:51 +00:00
* @since 3.1.0
2014-07-01 01:44:15 +00:00
* @since 4.0.0 $index_key parameter added.
2018-02-09 16:55:31 +00:00
* @since 4.7.0 Uses `WP_List_Util` class.
2010-10-02 18:48:51 +00:00
*
2014-07-01 01:44:15 +00:00
* @param array $list List of objects or arrays
* @param int|string $field Field from the object to place instead of the entire object
* @param int|string $index_key Optional. Field from the object to use as keys for the new array.
* Default null.
2015-02-13 16:52:27 +00:00
* @return array Array of found values. If `$index_key` is set, an array of found values with keys
* corresponding to `$index_key`. If `$index_key` is null, array keys from the original
* `$list` will be preserved in the results.
2010-10-02 18:48:51 +00:00
*/
2014-06-29 21:26:17 +00:00
function wp_list_pluck( $list, $field, $index_key = null ) {
2016-10-25 21:26:32 +00:00
$util = new WP_List_Util( $list );
return $util->pluck( $field, $index_key );
}
2010-10-02 18:48:51 +00:00
2016-10-25 21:26:32 +00:00
/**
* Sorts a list of objects, based on one or more orderby arguments.
*
* @since 4.7.0
*
2019-01-08 19:54:50 +00:00
* @param array $list An array of objects to sort.
2016-10-25 21:26:32 +00:00
* @param string|array $orderby Optional. Either the field name to order by or an array
* of multiple orderby fields as $orderby => $order.
* @param string $order Optional. Either 'ASC' or 'DESC'. Only used if $orderby
* is a string.
* @param bool $preserve_keys Optional. Whether to preserve keys. Default false.
* @return array The sorted array.
*/
function wp_list_sort( $list, $orderby = array(), $order = 'ASC', $preserve_keys = false ) {
if ( ! is_array( $list ) ) {
return array();
2014-06-29 21:26:17 +00:00
}
2016-10-25 21:26:32 +00:00
$util = new WP_List_Util( $list );
return $util->sort( $orderby, $order, $preserve_keys );
2010-10-02 18:48:51 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Determines if Widgets library should be loaded.
*
2014-07-01 01:44:15 +00:00
* Checks to make sure that the widgets library hasn't already been loaded.
* If it hasn't, then it will load the widgets library and run an action hook.
2008-06-15 09:38:32 +00:00
*
* @since 2.2.0
*/
2007-05-01 01:58:18 +00:00
function wp_maybe_load_widgets() {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to load the Widgets library.
2014-04-14 00:20:14 +00:00
*
2014-07-01 01:44:15 +00:00
* Passing a falsey value to the filter will effectively short-circuit
* the Widgets library from loading.
*
2014-04-14 00:20:14 +00:00
* @since 2.8.0
*
* @param bool $wp_maybe_load_widgets Whether to load the Widgets library.
* Default true.
*/
if ( ! apply_filters( 'load_default_widgets', true ) ) {
2009-03-16 22:02:40 +00:00
return;
2014-04-14 00:20:14 +00:00
}
2014-07-01 01:44:15 +00:00
2009-03-16 22:02:40 +00:00
require_once( ABSPATH . WPINC . '/default-widgets.php' );
2014-07-01 01:44:15 +00:00
2009-03-16 22:02:40 +00:00
add_action( '_admin_menu', 'wp_widgets_add_menu' );
2007-05-01 01:13:06 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Append the Widgets menu to the themes main menu.
*
* @since 2.2.0
2015-05-25 16:11:25 +00:00
*
* @global array $submenu
2008-06-15 09:38:32 +00:00
*/
2007-05-06 20:36:11 +00:00
function wp_widgets_add_menu() {
2007-05-03 00:52:14 +00:00
global $submenu;
2012-09-12 02:16:46 +00:00
2017-11-30 23:11:00 +00:00
if ( ! current_theme_supports( 'widgets' ) ) {
2012-09-12 02:16:46 +00:00
return;
2017-11-30 23:11:00 +00:00
}
2012-09-12 02:16:46 +00:00
2010-05-12 19:19:57 +00:00
$submenu['themes.php'][7] = array( __( 'Widgets' ), 'edit_theme_options', 'widgets.php' );
2007-10-11 05:46:57 +00:00
ksort( $submenu['themes.php'], SORT_NUMERIC );
2007-05-03 00:52:14 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Flush all output buffers for PHP 5.2.
*
2014-07-01 01:44:15 +00:00
* Make sure all output buffers are flushed before our singletons are destroyed.
2008-06-15 09:38:32 +00:00
*
* @since 2.2.0
2008-06-15 19:11:15 +00:00
*/
2007-10-11 05:46:57 +00:00
function wp_ob_end_flush_all() {
2009-05-24 23:47:49 +00:00
$levels = ob_get_level();
2017-11-30 23:11:00 +00:00
for ( $i = 0; $i < $levels; $i++ ) {
2009-05-24 23:47:49 +00:00
ob_end_flush();
2017-11-30 23:11:00 +00:00
}
2007-05-12 22:06:31 +00:00
}
2008-06-15 09:38:32 +00:00
/**
* Load custom DB error or display WordPress DB error.
*
* If a file exists in the wp-content directory named db-error.php, then it will
* be loaded instead of displaying the WordPress DB error. If it is not found,
* then the WordPress DB error will be displayed instead.
*
* The WordPress DB error sets the HTTP status header to 500 to try to prevent
* search engines from caching the message. Custom DB messages should do the
* same.
*
2013-05-10 01:39:30 +00:00
* This function was backported to WordPress 2.3.2, but originally was added
* in WordPress 2.5.0.
2008-08-10 16:45:50 +00:00
*
* @since 2.3.2
2014-07-01 01:44:15 +00:00
*
2014-10-31 17:56:22 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2008-06-15 09:38:32 +00:00
*/
2007-12-21 02:53:57 +00:00
function dead_db() {
global $wpdb;
2014-01-29 05:28:12 +00:00
wp_load_translations_early();
2007-12-21 02:53:57 +00:00
// Load custom DB error template, if present.
2008-05-27 17:55:24 +00:00
if ( file_exists( WP_CONTENT_DIR . '/db-error.php' ) ) {
require_once( WP_CONTENT_DIR . '/db-error.php' );
2007-12-21 02:53:57 +00:00
die();
}
// If installing or in the admin, provide the verbose message.
2017-11-30 23:11:00 +00:00
if ( wp_installing() || defined( 'WP_ADMIN' ) ) {
wp_die( $wpdb->error );
}
2007-12-21 02:53:57 +00:00
// Otherwise, be terse.
2019-03-11 11:31:50 +00:00
wp_die( '<h1>' . __( 'Error establishing a database connection' ) . '</h1>', __( 'Database Error' ) );
2007-12-21 02:53:57 +00:00
}
2007-10-11 05:46:57 +00:00
2007-10-10 22:11:18 +00:00
/**
2014-07-07 06:19:14 +00:00
* Convert a value to non-negative integer.
2008-06-15 09:38:32 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2008-08-09 04:51:51 +00:00
*
2014-07-07 06:19:14 +00:00
* @param mixed $maybeint Data you wish to have converted to a non-negative integer.
* @return int A non-negative integer.
2007-10-10 22:11:18 +00:00
*/
2014-06-26 18:45:14 +00:00
function absint( $maybeint ) {
return abs( intval( $maybeint ) );
2007-10-10 22:11:18 +00:00
}
2007-12-28 21:17:42 +00:00
/**
2014-07-07 07:08:15 +00:00
* Mark a function as deprecated and inform when it has been used.
2007-12-28 21:17:42 +00:00
*
2016-05-23 19:01:27 +00:00
* There is a {@see 'hook deprecated_function_run'} that will be called that can be used
2008-06-15 09:38:32 +00:00
* to get the backtrace up to what file and function called the deprecated
* function.
2007-12-28 21:17:42 +00:00
*
2016-05-23 19:01:27 +00:00
* The current behavior is to trigger a user error if `WP_DEBUG` is true.
2008-02-05 06:47:27 +00:00
*
2010-12-15 12:09:53 +00:00
* This function is to be used in every function that is deprecated.
2007-12-28 21:17:42 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2007-12-28 21:17:42 +00:00
* @access private
*
2014-07-07 06:19:14 +00:00
* @param string $function The function that was called.
* @param string $version The version of WordPress that deprecated the function.
* @param string $replacement Optional. The function that should have been called. Default null.
2007-12-28 21:17:42 +00:00
*/
2011-10-08 22:48:05 +00:00
function _deprecated_function( $function, $version, $replacement = null ) {
2007-12-28 21:17:42 +00:00
2014-04-14 00:20:14 +00:00
/**
* Fires when a deprecated function is called.
*
* @since 2.5.0
*
* @param string $function The function that was called.
* @param string $replacement The function that should have been called.
* @param string $version The version of WordPress that deprecated the function.
*/
2010-01-09 10:03:55 +00:00
do_action( 'deprecated_function_run', $function, $replacement, $version );
2007-12-28 21:17:42 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to trigger an error for deprecated functions.
2014-04-14 00:20:14 +00:00
*
* @since 2.5.0
*
* @param bool $trigger Whether to trigger the error for deprecated functions. Default true.
*/
2010-01-09 10:03:55 +00:00
if ( WP_DEBUG && apply_filters( 'deprecated_function_trigger_error', true ) ) {
2013-07-17 21:04:50 +00:00
if ( function_exists( '__' ) ) {
2016-11-19 02:39:33 +00:00
if ( ! is_null( $replacement ) ) {
/* translators: 1: PHP function name, 2: version number, 3: alternative function name */
2017-11-30 23:11:00 +00:00
trigger_error( sprintf( __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ), $function, $version, $replacement ) );
2016-11-19 02:39:33 +00:00
} else {
/* translators: 1: PHP function name, 2: version number */
2017-11-30 23:11:00 +00:00
trigger_error( sprintf( __( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ), $function, $version ) );
2016-11-19 02:39:33 +00:00
}
2013-07-17 21:04:50 +00:00
} else {
2016-11-19 02:39:33 +00:00
if ( ! is_null( $replacement ) ) {
2013-07-17 21:04:50 +00:00
trigger_error( sprintf( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.', $function, $version, $replacement ) );
2016-11-19 02:39:33 +00:00
} else {
2013-07-17 21:04:50 +00:00
trigger_error( sprintf( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.', $function, $version ) );
2016-11-19 02:39:33 +00:00
}
2013-07-17 21:04:50 +00:00
}
2007-12-28 21:17:42 +00:00
}
}
2015-06-28 14:56:24 +00:00
/**
* Marks a constructor as deprecated and informs when it has been used.
*
* Similar to _deprecated_function(), but with different strings. Used to
* remove PHP4 style constructors.
*
2015-07-13 21:35:24 +00:00
* The current behavior is to trigger a user error if `WP_DEBUG` is true.
2015-06-28 14:56:24 +00:00
*
* This function is to be used in every PHP4 style constructor method that is deprecated.
*
* @since 4.3.0
2016-02-16 23:20:26 +00:00
* @since 4.5.0 Added the `$parent_class` parameter.
*
2015-06-28 14:56:24 +00:00
* @access private
*
2016-02-16 23:20:26 +00:00
* @param string $class The class containing the deprecated constructor.
* @param string $version The version of WordPress that deprecated the function.
* @param string $parent_class Optional. The parent class calling the deprecated constructor.
* Default empty string.
2015-06-28 14:56:24 +00:00
*/
2016-02-16 23:20:26 +00:00
function _deprecated_constructor( $class, $version, $parent_class = '' ) {
2015-06-28 14:56:24 +00:00
/**
* Fires when a deprecated constructor is called.
*
* @since 4.3.0
2016-02-16 23:20:26 +00:00
* @since 4.5.0 Added the `$parent_class` parameter.
2015-06-28 14:56:24 +00:00
*
2016-02-16 23:20:26 +00:00
* @param string $class The class containing the deprecated constructor.
* @param string $version The version of WordPress that deprecated the function.
* @param string $parent_class The parent class calling the deprecated constructor.
2015-06-28 14:56:24 +00:00
*/
2016-02-16 23:20:26 +00:00
do_action( 'deprecated_constructor_run', $class, $version, $parent_class );
2015-06-28 14:56:24 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to trigger an error for deprecated functions.
2015-06-28 14:56:24 +00:00
*
2015-07-13 21:35:24 +00:00
* `WP_DEBUG` must be true in addition to the filter evaluating to true.
*
2015-06-28 14:56:24 +00:00
* @since 4.3.0
*
* @param bool $trigger Whether to trigger the error for deprecated functions. Default true.
*/
if ( WP_DEBUG && apply_filters( 'deprecated_constructor_trigger_error', true ) ) {
if ( function_exists( '__' ) ) {
2016-02-16 23:20:26 +00:00
if ( ! empty( $parent_class ) ) {
/* translators: 1: PHP class name, 2: PHP parent class name, 3: version number, 4: __construct() method */
2017-11-30 23:11:00 +00:00
trigger_error(
sprintf(
__( 'The called constructor method for %1$s in %2$s is <strong>deprecated</strong> since version %3$s! Use %4$s instead.' ),
2018-08-17 01:51:36 +00:00
$class,
$parent_class,
$version,
'<pre>__construct()</pre>'
2017-11-30 23:11:00 +00:00
)
);
2016-02-16 23:20:26 +00:00
} else {
/* translators: 1: PHP class name, 2: version number, 3: __construct() method */
2017-11-30 23:11:00 +00:00
trigger_error(
sprintf(
__( 'The called constructor method for %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ),
2018-08-17 01:51:36 +00:00
$class,
$version,
'<pre>__construct()</pre>'
2017-11-30 23:11:00 +00:00
)
);
2016-02-16 23:20:26 +00:00
}
2015-06-28 14:56:24 +00:00
} else {
2016-02-16 23:20:26 +00:00
if ( ! empty( $parent_class ) ) {
2017-11-30 23:11:00 +00:00
trigger_error(
sprintf(
'The called constructor method for %1$s in %2$s is <strong>deprecated</strong> since version %3$s! Use %4$s instead.',
2018-08-17 01:51:36 +00:00
$class,
$parent_class,
$version,
'<pre>__construct()</pre>'
2017-11-30 23:11:00 +00:00
)
);
2016-02-16 23:20:26 +00:00
} else {
2017-11-30 23:11:00 +00:00
trigger_error(
sprintf(
'The called constructor method for %1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.',
2018-08-17 01:51:36 +00:00
$class,
$version,
'<pre>__construct()</pre>'
2017-11-30 23:11:00 +00:00
)
);
2016-02-16 23:20:26 +00:00
}
2015-06-28 14:56:24 +00:00
}
}
}
2007-12-28 21:17:42 +00:00
/**
2014-07-07 07:08:15 +00:00
* Mark a file as deprecated and inform when it has been used.
2007-12-28 21:17:42 +00:00
*
2016-05-23 19:01:27 +00:00
* There is a hook {@see 'deprecated_file_included'} that will be called that can be used
2008-06-15 09:38:32 +00:00
* to get the backtrace up to what file and function included the deprecated
* file.
2007-12-28 21:17:42 +00:00
*
2016-05-23 19:01:27 +00:00
* The current behavior is to trigger a user error if `WP_DEBUG` is true.
2008-02-05 06:47:27 +00:00
*
2010-12-15 12:09:53 +00:00
* This function is to be used in every file that is deprecated.
2007-12-28 21:17:42 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2007-12-28 21:17:42 +00:00
* @access private
*
2014-07-07 06:19:14 +00:00
* @param string $file The file that was included.
* @param string $version The version of WordPress that deprecated the file.
* @param string $replacement Optional. The file that should have been included based on ABSPATH.
* Default null.
* @param string $message Optional. A message regarding the change. Default empty.
2007-12-28 21:17:42 +00:00
*/
2010-02-05 21:40:22 +00:00
function _deprecated_file( $file, $version, $replacement = null, $message = '' ) {
2007-12-28 21:17:42 +00:00
2014-04-14 00:20:14 +00:00
/**
* Fires when a deprecated file is called.
*
* @since 2.5.0
*
* @param string $file The file that was called.
* @param string $replacement The file that should have been included based on ABSPATH.
* @param string $version The version of WordPress that deprecated the file.
* @param string $message A message regarding the change.
*/
2010-02-05 21:40:22 +00:00
do_action( 'deprecated_file_included', $file, $replacement, $version, $message );
2007-12-28 21:17:42 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to trigger an error for deprecated files.
2014-04-14 00:20:14 +00:00
*
* @since 2.5.0
*
* @param bool $trigger Whether to trigger the error for deprecated files. Default true.
*/
2010-01-09 10:03:55 +00:00
if ( WP_DEBUG && apply_filters( 'deprecated_file_trigger_error', true ) ) {
2010-02-05 21:40:22 +00:00
$message = empty( $message ) ? '' : ' ' . $message;
2013-07-17 21:04:50 +00:00
if ( function_exists( '__' ) ) {
2016-11-19 02:39:33 +00:00
if ( ! is_null( $replacement ) ) {
/* translators: 1: PHP file name, 2: version number, 3: alternative file name */
2017-11-30 23:11:00 +00:00
trigger_error( sprintf( __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ), $file, $version, $replacement ) . $message );
2016-11-19 02:39:33 +00:00
} else {
/* translators: 1: PHP file name, 2: version number */
2017-11-30 23:11:00 +00:00
trigger_error( sprintf( __( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ), $file, $version ) . $message );
2016-11-19 02:39:33 +00:00
}
2013-07-17 21:04:50 +00:00
} else {
2016-11-19 02:39:33 +00:00
if ( ! is_null( $replacement ) ) {
2013-07-17 21:04:50 +00:00
trigger_error( sprintf( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.', $file, $version, $replacement ) . $message );
2016-11-19 02:39:33 +00:00
} else {
2013-07-17 21:04:50 +00:00
trigger_error( sprintf( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.', $file, $version ) . $message );
2016-11-19 02:39:33 +00:00
}
2013-07-17 21:04:50 +00:00
}
2007-12-28 21:17:42 +00:00
}
}
2009-12-24 11:06:00 +00:00
/**
2014-07-07 06:19:14 +00:00
* Mark a function argument as deprecated and inform when it has been used.
2009-12-24 11:06:00 +00:00
*
* This function is to be used whenever a deprecated function argument is used.
* Before this function is called, the argument must be checked for whether it was
* used by comparing it to its default value or evaluating whether it is empty.
* For example:
2014-11-24 05:39:22 +00:00
*
* if ( ! empty( $deprecated ) ) {
2016-07-06 12:40:29 +00:00
* _deprecated_argument( __FUNCTION__, '3.0.0' );
2014-11-24 05:39:22 +00:00
* }
*
2009-12-24 11:06:00 +00:00
* There is a hook deprecated_argument_run that will be called that can be used
* to get the backtrace up to what file and function used the deprecated
* argument.
*
2010-12-15 12:09:53 +00:00
* The current behavior is to trigger a user error if WP_DEBUG is true.
2009-12-24 11:06:00 +00:00
*
* @since 3.0.0
* @access private
*
2014-07-07 06:19:14 +00:00
* @param string $function The function that was called.
* @param string $version The version of WordPress that deprecated the argument used.
* @param string $message Optional. A message regarding the change. Default null.
2009-12-24 11:06:00 +00:00
*/
2010-01-09 10:03:55 +00:00
function _deprecated_argument( $function, $version, $message = null ) {
2009-12-24 11:06:00 +00:00
2014-04-14 00:20:14 +00:00
/**
* Fires when a deprecated argument is called.
*
* @since 3.0.0
*
* @param string $function The function that was called.
* @param string $message A message regarding the change.
* @param string $version The version of WordPress that deprecated the argument used.
*/
2010-01-10 15:02:12 +00:00
do_action( 'deprecated_argument_run', $function, $message, $version );
2009-12-24 11:06:00 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to trigger an error for deprecated arguments.
2014-04-14 00:20:14 +00:00
*
* @since 3.0.0
*
* @param bool $trigger Whether to trigger the error for deprecated arguments. Default true.
*/
2010-01-09 10:03:55 +00:00
if ( WP_DEBUG && apply_filters( 'deprecated_argument_trigger_error', true ) ) {
2013-07-17 21:04:50 +00:00
if ( function_exists( '__' ) ) {
2016-11-19 02:39:33 +00:00
if ( ! is_null( $message ) ) {
/* translators: 1: PHP function name, 2: version number, 3: optional message regarding the change */
2017-11-30 23:11:00 +00:00
trigger_error( sprintf( __( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s! %3$s' ), $function, $version, $message ) );
2016-11-19 02:39:33 +00:00
} else {
/* translators: 1: PHP function name, 2: version number */
2017-11-30 23:11:00 +00:00
trigger_error( sprintf( __( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s with no alternative available.' ), $function, $version ) );
2016-11-19 02:39:33 +00:00
}
2013-07-17 21:04:50 +00:00
} else {
2016-11-19 02:39:33 +00:00
if ( ! is_null( $message ) ) {
2013-07-17 21:04:50 +00:00
trigger_error( sprintf( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s! %3$s', $function, $version, $message ) );
2016-11-19 02:39:33 +00:00
} else {
2013-07-17 21:04:50 +00:00
trigger_error( sprintf( '%1$s was called with an argument that is <strong>deprecated</strong> since version %2$s with no alternative available.', $function, $version ) );
2016-11-19 02:39:33 +00:00
}
2013-07-17 21:04:50 +00:00
}
2009-12-24 11:06:00 +00:00
}
}
2008-03-20 00:33:59 +00:00
2016-06-26 14:26:29 +00:00
/**
* Marks a deprecated action or filter hook as deprecated and throws a notice.
*
2016-07-20 16:57:32 +00:00
* Use the {@see 'deprecated_hook_run'} action to get the backtrace describing where
* the deprecated hook was called.
2016-06-26 14:26:29 +00:00
*
2016-07-20 16:57:32 +00:00
* Default behavior is to trigger a user error if `WP_DEBUG` is true.
2016-06-26 14:26:29 +00:00
*
* This function is called by the do_action_deprecated() and apply_filters_deprecated()
* functions, and so generally does not need to be called directly.
*
* @since 4.6.0
* @access private
*
* @param string $hook The hook that was used.
* @param string $version The version of WordPress that deprecated the hook.
* @param string $replacement Optional. The hook that should have been used.
* @param string $message Optional. A message regarding the change.
*/
function _deprecated_hook( $hook, $version, $replacement = null, $message = null ) {
/**
* Fires when a deprecated hook is called.
*
* @since 4.6.0
*
* @param string $hook The hook that was called.
* @param string $replacement The hook that should be used as a replacement.
* @param string $version The version of WordPress that deprecated the argument used.
* @param string $message A message regarding the change.
*/
do_action( 'deprecated_hook_run', $hook, $replacement, $version, $message );
/**
2016-07-20 16:57:32 +00:00
* Filters whether to trigger deprecated hook errors.
2016-06-26 14:26:29 +00:00
*
* @since 4.6.0
*
* @param bool $trigger Whether to trigger deprecated hook errors. Requires
* `WP_DEBUG` to be defined true.
*/
if ( WP_DEBUG && apply_filters( 'deprecated_hook_trigger_error', true ) ) {
$message = empty( $message ) ? '' : ' ' . $message;
if ( ! is_null( $replacement ) ) {
2016-11-19 02:44:30 +00:00
/* translators: 1: WordPress hook name, 2: version number, 3: alternative hook name */
2016-06-26 14:26:29 +00:00
trigger_error( sprintf( __( '%1$s is <strong>deprecated</strong> since version %2$s! Use %3$s instead.' ), $hook, $version, $replacement ) . $message );
} else {
2016-11-19 02:44:30 +00:00
/* translators: 1: WordPress hook name, 2: version number */
2016-06-26 14:26:29 +00:00
trigger_error( sprintf( __( '%1$s is <strong>deprecated</strong> since version %2$s with no alternative available.' ), $hook, $version ) . $message );
}
}
}
2010-12-15 12:06:39 +00:00
/**
2014-07-07 06:19:14 +00:00
* Mark something as being incorrectly called.
2010-12-15 12:06:39 +00:00
*
2016-05-23 19:01:27 +00:00
* There is a hook {@see 'doing_it_wrong_run'} that will be called that can be used
2010-12-15 12:06:39 +00:00
* to get the backtrace up to what file and function called the deprecated
* function.
*
2016-05-23 19:01:27 +00:00
* The current behavior is to trigger a user error if `WP_DEBUG` is true.
2010-12-15 12:06:39 +00:00
*
* @since 3.1.0
* @access private
*
* @param string $function The function that was called.
2014-07-07 06:19:14 +00:00
* @param string $message A message explaining what has been done incorrectly.
* @param string $version The version of WordPress where the message was added.
2010-12-15 12:06:39 +00:00
*/
function _doing_it_wrong( $function, $message, $version ) {
2014-04-14 00:20:14 +00:00
/**
* Fires when the given function is being used incorrectly.
*
* @since 3.1.0
*
* @param string $function The function that was called.
* @param string $message A message explaining what has been done incorrectly.
* @param string $version The version of WordPress where the message was added.
*/
2010-12-15 12:06:39 +00:00
do_action( 'doing_it_wrong_run', $function, $message, $version );
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to trigger an error for _doing_it_wrong() calls.
2014-04-14 00:20:14 +00:00
*
* @since 3.1.0
2019-01-15 00:52:50 +00:00
* @since 5.1.0 Added the $function, $message and $version parameters.
2014-04-14 00:20:14 +00:00
*
2018-08-28 13:38:24 +00:00
* @param bool $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true.
* @param string $function The function that was called.
* @param string $message A message explaining what has been done incorrectly.
* @param string $version The version of WordPress where the message was added.
2014-04-14 00:20:14 +00:00
*/
2018-08-28 13:38:24 +00:00
if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true, $function, $message, $version ) ) {
2013-06-19 08:11:59 +00:00
if ( function_exists( '__' ) ) {
2016-08-23 23:48:28 +00:00
if ( is_null( $version ) ) {
$version = '';
} else {
/* translators: %s: version number */
$version = sprintf( __( '(This message was added in version %s.)' ), $version );
}
2015-11-18 17:41:27 +00:00
/* translators: %s: Codex URL */
2017-11-30 23:11:00 +00:00
$message .= ' ' . sprintf(
__( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
2015-11-18 17:41:27 +00:00
__( 'https://codex.wordpress.org/Debugging_in_WordPress' )
);
2016-11-21 01:22:32 +00:00
/* translators: Developer debugging message. 1: PHP function name, 2: Explanatory message, 3: Version information message */
2013-06-19 08:11:59 +00:00
trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
} else {
2016-08-23 23:48:28 +00:00
if ( is_null( $version ) ) {
$version = '';
} else {
$version = sprintf( '(This message was added in version %s.)', $version );
}
2017-11-30 23:11:00 +00:00
$message .= sprintf(
' Please see <a href="%s">Debugging in WordPress</a> for more information.',
2015-11-18 17:41:27 +00:00
'https://codex.wordpress.org/Debugging_in_WordPress'
);
2013-06-19 08:11:59 +00:00
trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
}
2010-12-15 12:06:39 +00:00
}
}
2008-03-20 00:33:59 +00:00
/**
2011-07-21 17:48:25 +00:00
* Is the server running earlier than 1.5.0 version of lighttpd?
2008-06-15 09:38:32 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2008-03-20 00:33:59 +00:00
*
2014-07-07 06:19:14 +00:00
* @return bool Whether the server is running lighttpd < 1.5.0.
2008-03-20 00:33:59 +00:00
*/
function is_lighttpd_before_150() {
2017-11-30 23:11:00 +00:00
$server_parts = explode( '/', isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '' );
$server_parts[1] = isset( $server_parts[1] ) ? $server_parts[1] : '';
2008-03-20 00:33:59 +00:00
return 'lighttpd' == $server_parts[0] && -1 == version_compare( $server_parts[1], '1.5.0' );
}
2008-03-21 04:10:01 +00:00
/**
2011-07-21 17:48:25 +00:00
* Does the specified module exist in the Apache config?
2008-06-15 09:38:32 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.5.0
2008-03-21 04:10:01 +00:00
*
2015-05-25 16:11:25 +00:00
* @global bool $is_apache
*
2014-07-07 06:19:14 +00:00
* @param string $mod The module, e.g. mod_rewrite.
* @param bool $default Optional. The default return value if the module is not found. Default false.
* @return bool Whether the specified module is loaded.
2008-03-21 04:10:01 +00:00
*/
2017-11-30 23:11:00 +00:00
function apache_mod_loaded( $mod, $default = false ) {
2008-03-21 04:10:01 +00:00
global $is_apache;
2017-11-30 23:11:00 +00:00
if ( ! $is_apache ) {
2008-03-21 04:10:01 +00:00
return false;
2017-11-30 23:11:00 +00:00
}
2008-03-21 04:10:01 +00:00
2014-07-30 17:28:17 +00:00
if ( function_exists( 'apache_get_modules' ) ) {
2008-03-21 04:10:01 +00:00
$mods = apache_get_modules();
2017-11-30 23:11:00 +00:00
if ( in_array( $mod, $mods ) ) {
2008-03-21 04:10:01 +00:00
return true;
2017-11-30 23:11:00 +00:00
}
2014-07-30 17:28:17 +00:00
} elseif ( function_exists( 'phpinfo' ) && false === strpos( ini_get( 'disable_functions' ), 'phpinfo' ) ) {
2008-03-21 04:10:01 +00:00
ob_start();
2017-11-30 23:11:00 +00:00
phpinfo( 8 );
2008-03-21 04:10:01 +00:00
$phpinfo = ob_get_clean();
2017-11-30 23:11:00 +00:00
if ( false !== strpos( $phpinfo, $mod ) ) {
return true;
}
2008-03-21 04:10:01 +00:00
}
2008-03-25 00:22:37 +00:00
return $default;
2008-03-21 04:10:01 +00:00
}
2010-12-14 08:31:33 +00:00
/**
2013-07-08 20:27:06 +00:00
* Check if IIS 7+ supports pretty permalinks.
2010-12-14 08:31:33 +00:00
*
* @since 2.8.0
*
2015-05-25 16:11:25 +00:00
* @global bool $is_iis7
*
2014-07-07 06:19:14 +00:00
* @return bool Whether IIS7 supports permalinks.
2010-12-14 08:31:33 +00:00
*/
function iis7_supports_permalinks() {
global $is_iis7;
$supports_permalinks = false;
if ( $is_iis7 ) {
2013-07-08 20:27:06 +00:00
/* First we check if the DOMDocument class exists. If it does not exist, then we cannot
* easily update the xml configuration file, hence we just bail out and tell user that
* pretty permalinks cannot be used.
*
2010-12-14 08:31:33 +00:00
* Next we check if the URL Rewrite Module 1.1 is loaded and enabled for the web site. When
* URL Rewrite 1.1 is loaded it always sets a server variable called 'IIS_UrlRewriteModule'.
* Lastly we make sure that PHP is running via FastCGI. This is important because if it runs
* via ISAPI then pretty permalinks will not work.
*/
2017-11-30 23:11:00 +00:00
$supports_permalinks = class_exists( 'DOMDocument', false ) && isset( $_SERVER['IIS_UrlRewriteModule'] ) && ( PHP_SAPI == 'cgi-fcgi' );
2010-12-14 08:31:33 +00:00
}
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether IIS 7+ supports pretty permalinks.
2014-04-14 00:20:14 +00:00
*
* @since 2.8.0
*
* @param bool $supports_permalinks Whether IIS7 supports permalinks. Default false.
*/
return apply_filters( 'iis7_supports_permalinks', $supports_permalinks );
2010-12-14 08:31:33 +00:00
}
2008-06-15 09:38:32 +00:00
/**
2017-10-24 22:50:49 +00:00
* Validates a file name and path against an allowed set of rules.
2008-06-15 09:38:32 +00:00
*
2017-10-24 22:50:49 +00:00
* A return value of `1` means the file path contains directory traversal.
*
* A return value of `2` means the file path contains a Windows drive path.
*
* A return value of `3` means the file is not in the allowed files list.
2008-06-15 09:38:32 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 1.2.0
2008-06-15 09:38:32 +00:00
*
2017-10-24 22:50:49 +00:00
* @param string $file File path.
* @param array $allowed_files Optional. List of allowed files.
2008-06-15 09:38:32 +00:00
* @return int 0 means nothing is wrong, greater than 0 means something was wrong.
*/
2017-10-24 23:15:49 +00:00
function validate_file( $file, $allowed_files = array() ) {
// `../` on its own is not allowed:
if ( '../' === $file ) {
2008-05-12 23:51:54 +00:00
return 1;
2017-10-24 23:15:49 +00:00
}
2008-05-12 23:51:54 +00:00
2017-10-24 23:15:49 +00:00
// More than one occurence of `../` is not allowed:
if ( preg_match_all( '#\.\./#', $file, $matches, PREG_SET_ORDER ) && ( count( $matches ) > 1 ) ) {
2008-05-12 23:51:54 +00:00
return 1;
2017-10-24 23:15:49 +00:00
}
// `../` which does not occur at the end of the path is not allowed:
if ( false !== strpos( $file, '../' ) && '../' !== mb_substr( $file, -3, 3 ) ) {
return 1;
}
2008-05-12 23:51:54 +00:00
2017-10-24 23:15:49 +00:00
// Files not in the allowed file list are not allowed:
2017-11-30 23:11:00 +00:00
if ( ! empty( $allowed_files ) && ! in_array( $file, $allowed_files ) ) {
2008-05-12 23:51:54 +00:00
return 3;
2017-11-30 23:11:00 +00:00
}
2008-05-12 23:51:54 +00:00
2017-10-24 23:15:49 +00:00
// Absolute Windows drive paths are not allowed:
2017-11-30 23:11:00 +00:00
if ( ':' == substr( $file, 1, 1 ) ) {
2009-12-01 22:03:13 +00:00
return 2;
2017-11-30 23:11:00 +00:00
}
2009-12-01 22:03:13 +00:00
2008-05-12 23:51:54 +00:00
return 0;
}
2008-06-15 09:38:32 +00:00
/**
2011-04-28 15:24:49 +00:00
* Whether to force SSL used for the Administration Screens.
2008-06-15 09:38:32 +00:00
*
2008-08-10 16:45:50 +00:00
* @since 2.6.0
2008-06-15 09:38:32 +00:00
*
2015-05-25 16:11:25 +00:00
* @staticvar bool $forced
*
2014-07-07 06:19:14 +00:00
* @param string|bool $force Optional. Whether to force SSL in admin screens. Default null.
2008-06-15 09:38:32 +00:00
* @return bool True if forced, false if not forced.
*/
2009-09-08 14:46:06 +00:00
function force_ssl_admin( $force = null ) {
static $forced = false;
2008-06-11 17:25:55 +00:00
2017-11-30 23:11:00 +00:00
if ( ! is_null( $force ) ) {
2008-06-14 20:58:43 +00:00
$old_forced = $forced;
2017-11-30 23:11:00 +00:00
$forced = $force;
2008-06-11 17:25:55 +00:00
return $old_forced;
}
return $forced;
}
2008-06-30 03:23:44 +00:00
/**
* Guess the URL for the site.
*
* Will remove wp-admin links to retrieve only return URLs not in the wp-admin
* directory.
*
2008-08-10 16:45:50 +00:00
* @since 2.6.0
2008-06-30 03:23:44 +00:00
*
2014-07-07 06:19:14 +00:00
* @return string The guessed URL.
2008-06-30 03:23:44 +00:00
*/
2008-06-24 17:36:21 +00:00
function wp_guess_url() {
2017-11-30 23:11:00 +00:00
if ( defined( 'WP_SITEURL' ) && '' != WP_SITEURL ) {
2008-06-24 17:36:21 +00:00
$url = WP_SITEURL;
2012-09-10 19:37:08 +00:00
} else {
2017-11-30 23:11:00 +00:00
$abspath_fix = str_replace( '\\', '/', ABSPATH );
2013-09-14 03:43:10 +00:00
$script_filename_dir = dirname( $_SERVER['SCRIPT_FILENAME'] );
2013-09-12 06:57:09 +00:00
// The request is for the admin
if ( strpos( $_SERVER['REQUEST_URI'], 'wp-admin' ) !== false || strpos( $_SERVER['REQUEST_URI'], 'wp-login.php' ) !== false ) {
$path = preg_replace( '#/(wp-admin/.*|wp-login.php)#i', '', $_SERVER['REQUEST_URI'] );
2017-11-30 23:11:00 +00:00
// The request is for a file in ABSPATH
2013-09-14 03:43:10 +00:00
} elseif ( $script_filename_dir . '/' == $abspath_fix ) {
2013-09-12 06:57:09 +00:00
// Strip off any file/query params in the path
$path = preg_replace( '#/[^/]*$#i', '', $_SERVER['PHP_SELF'] );
} else {
2013-09-14 03:43:10 +00:00
if ( false !== strpos( $_SERVER['SCRIPT_FILENAME'], $abspath_fix ) ) {
2013-09-12 06:57:09 +00:00
// Request is hitting a file inside ABSPATH
2013-09-14 03:43:10 +00:00
$directory = str_replace( ABSPATH, '', $script_filename_dir );
2015-04-29 07:19:29 +00:00
// Strip off the sub directory, and any file/query params
2017-11-30 23:11:00 +00:00
$path = preg_replace( '#/' . preg_quote( $directory, '#' ) . '/[^/]*$#i', '', $_SERVER['REQUEST_URI'] );
2013-09-14 03:43:10 +00:00
} elseif ( false !== strpos( $abspath_fix, $script_filename_dir ) ) {
2013-09-12 06:57:09 +00:00
// Request is hitting a file above ABSPATH
2013-11-07 03:34:10 +00:00
$subdirectory = substr( $abspath_fix, strpos( $abspath_fix, $script_filename_dir ) + strlen( $script_filename_dir ) );
2017-08-22 11:52:48 +00:00
// Strip off any file/query params from the path, appending the sub directory to the installation
2017-11-30 23:11:00 +00:00
$path = preg_replace( '#/[^/]*$#i', '', $_SERVER['REQUEST_URI'] ) . $subdirectory;
2013-09-14 03:43:10 +00:00
} else {
$path = $_SERVER['REQUEST_URI'];
2013-09-12 06:57:09 +00:00
}
}
2012-09-10 19:37:08 +00:00
$schema = is_ssl() ? 'https://' : 'http://'; // set_url_scheme() is not defined yet
2017-11-30 23:11:00 +00:00
$url = $schema . $_SERVER['HTTP_HOST'] . $path;
2012-09-10 19:37:08 +00:00
}
2012-08-30 13:33:00 +00:00
2017-11-30 23:11:00 +00:00
return rtrim( $url, '/' );
2008-06-24 17:36:21 +00:00
}
2011-09-15 20:23:00 +00:00
/**
* Temporarily suspend cache additions.
*
* Stops more data being added to the cache, but still allows cache retrieval.
* This is useful for actions, such as imports, when a lot of data would otherwise
* be almost uselessly added to the cache.
*
* Suspension lasts for a single page load at most. Remember to call this
* function again if you wish to re-enable cache adds earlier.
*
* @since 3.3.0
*
2015-05-25 16:11:25 +00:00
* @staticvar bool $_suspend
*
2011-09-15 20:23:00 +00:00
* @param bool $suspend Optional. Suspends additions if true, re-enables them if false.
* @return bool The current suspend setting
*/
function wp_suspend_cache_addition( $suspend = null ) {
static $_suspend = false;
2017-11-30 23:11:00 +00:00
if ( is_bool( $suspend ) ) {
2011-09-15 20:23:00 +00:00
$_suspend = $suspend;
2017-11-30 23:11:00 +00:00
}
2011-09-15 20:23:00 +00:00
return $_suspend;
}
2008-10-09 00:50:52 +00:00
/**
* Suspend cache invalidation.
*
2017-07-12 21:26:44 +00:00
* Turns cache invalidation on and off. Useful during imports where you don't want to do
2014-07-07 06:19:14 +00:00
* invalidations every time a post is inserted. Callers must be sure that what they are
* doing won't lead to an inconsistent cache when invalidation is suspended.
2008-10-09 00:50:52 +00:00
*
* @since 2.7.0
*
2015-05-25 16:11:25 +00:00
* @global bool $_wp_suspend_cache_invalidation
*
2014-07-07 06:19:14 +00:00
* @param bool $suspend Optional. Whether to suspend or enable cache invalidation. Default true.
* @return bool The current suspend setting.
2008-10-09 00:50:52 +00:00
*/
2014-07-07 06:19:14 +00:00
function wp_suspend_cache_invalidation( $suspend = true ) {
2008-10-09 00:50:52 +00:00
global $_wp_suspend_cache_invalidation;
2017-11-30 23:11:00 +00:00
$current_suspend = $_wp_suspend_cache_invalidation;
2008-10-09 00:50:52 +00:00
$_wp_suspend_cache_invalidation = $suspend;
return $current_suspend;
}
2010-01-12 21:52:51 +00:00
/**
2014-07-07 06:19:14 +00:00
* Determine whether a site is the main site of the current network.
2010-01-12 21:52:51 +00:00
*
* @since 3.0.0
2018-02-09 16:55:31 +00:00
* @since 4.9.0 The `$network_id` parameter was added.
2010-01-12 21:52:51 +00:00
*
2017-09-15 11:15:52 +00:00
* @param int $site_id Optional. Site ID to test. Defaults to current site.
* @param int $network_id Optional. Network ID of the network to check for.
* Defaults to current network.
2014-07-07 06:19:14 +00:00
* @return bool True if $site_id is the main site of the network, or if not
* running Multisite.
2010-01-12 21:52:51 +00:00
*/
2017-09-15 11:15:52 +00:00
function is_main_site( $site_id = null, $network_id = null ) {
if ( ! is_multisite() ) {
2010-01-12 21:52:51 +00:00
return true;
2017-09-15 11:15:52 +00:00
}
2010-01-12 21:52:51 +00:00
2017-09-15 11:15:52 +00:00
if ( ! $site_id ) {
2013-08-28 03:35:08 +00:00
$site_id = get_current_blog_id();
2017-09-15 11:15:52 +00:00
}
$site_id = (int) $site_id;
return $site_id === get_main_site_id( $network_id );
}
/**
* Gets the main site ID.
*
* @since 4.9.0
*
* @param int $network_id Optional. The ID of the network for which to get the main site.
* Defaults to the current network.
* @return int The ID of the main site.
*/
function get_main_site_id( $network_id = null ) {
if ( ! is_multisite() ) {
2017-10-14 22:46:48 +00:00
return get_current_blog_id();
2017-09-15 11:15:52 +00:00
}
$network = get_network( $network_id );
if ( ! $network ) {
return 0;
}
2017-10-14 22:42:54 +00:00
return $network->site_id;
2013-08-28 03:35:08 +00:00
}
/**
2017-08-22 11:52:48 +00:00
* Determine whether a network is the main network of the Multisite installation.
2013-08-28 03:35:08 +00:00
*
* @since 3.7.0
*
* @param int $network_id Optional. Network ID to test. Defaults to current network.
2014-07-07 06:19:14 +00:00
* @return bool True if $network_id is the main network, or if not running Multisite.
2013-08-28 03:35:08 +00:00
*/
function is_main_network( $network_id = null ) {
2015-06-14 21:45:25 +00:00
if ( ! is_multisite() ) {
2013-08-28 03:35:08 +00:00
return true;
2015-06-14 21:45:25 +00:00
}
2013-08-28 03:35:08 +00:00
2015-06-14 21:45:25 +00:00
if ( null === $network_id ) {
2016-10-19 04:47:30 +00:00
$network_id = get_current_network_id();
2015-06-14 21:45:25 +00:00
}
2013-08-28 03:35:08 +00:00
$network_id = (int) $network_id;
2015-06-14 21:45:25 +00:00
return ( $network_id === get_main_network_id() );
}
2013-08-28 03:35:08 +00:00
2015-06-14 21:45:25 +00:00
/**
* Get the main network ID.
*
* @since 4.3.0
*
* @return int The ID of the main network.
*/
function get_main_network_id() {
if ( ! is_multisite() ) {
return 1;
}
2013-08-28 03:35:08 +00:00
2016-10-19 04:47:30 +00:00
$current_network = get_network();
2016-06-09 20:34:28 +00:00
2015-06-14 21:45:25 +00:00
if ( defined( 'PRIMARY_NETWORK_ID' ) ) {
$main_network_id = PRIMARY_NETWORK_ID;
2016-10-19 04:47:30 +00:00
} elseif ( isset( $current_network->id ) && 1 === (int) $current_network->id ) {
2015-06-14 21:45:25 +00:00
// If the current network has an ID of 1, assume it is the main network.
$main_network_id = 1;
} else {
2017-11-30 23:11:00 +00:00
$_networks = get_networks(
array(
'fields' => 'ids',
'number' => 1,
)
);
2016-09-20 18:47:27 +00:00
$main_network_id = array_shift( $_networks );
2015-06-14 21:45:25 +00:00
}
2010-01-12 21:52:51 +00:00
2015-06-14 21:45:25 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the main network ID.
2015-06-14 21:45:25 +00:00
*
* @since 4.3.0
*
* @param int $main_network_id The ID of the main network.
*/
return (int) apply_filters( 'get_main_network_id', $main_network_id );
2010-01-12 21:52:51 +00:00
}
2010-03-16 17:17:55 +00:00
/**
2014-07-07 06:19:14 +00:00
* Determine whether global terms are enabled.
2010-03-16 17:17:55 +00:00
*
* @since 3.0.0
*
2015-05-25 16:11:25 +00:00
* @staticvar bool $global_terms
*
2014-07-07 06:19:14 +00:00
* @return bool True if multisite and global terms enabled.
2010-03-16 17:17:55 +00:00
*/
function global_terms_enabled() {
2017-11-30 23:11:00 +00:00
if ( ! is_multisite() ) {
2010-05-02 22:08:05 +00:00
return false;
2017-11-30 23:11:00 +00:00
}
2010-03-16 17:17:55 +00:00
2010-05-02 22:08:05 +00:00
static $global_terms = null;
2010-05-24 20:45:59 +00:00
if ( is_null( $global_terms ) ) {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether global terms are enabled.
2014-04-14 00:20:14 +00:00
*
* Passing a non-null value to the filter will effectively short-circuit the function,
* returning the value of the 'global_terms_enabled' site option instead.
*
* @since 3.0.0
*
2015-05-19 06:35:25 +00:00
* @param null $enabled Whether global terms are enabled.
2014-04-14 00:20:14 +00:00
*/
2010-05-24 20:45:59 +00:00
$filter = apply_filters( 'global_terms_enabled', null );
2017-11-30 23:11:00 +00:00
if ( ! is_null( $filter ) ) {
2010-05-24 20:45:59 +00:00
$global_terms = (bool) $filter;
2017-11-30 23:11:00 +00:00
} else {
2015-10-07 17:11:25 +00:00
$global_terms = (bool) get_site_option( 'global_terms_enabled', false );
2017-11-30 23:11:00 +00:00
}
2010-05-24 20:45:59 +00:00
}
2010-05-02 22:08:05 +00:00
return $global_terms;
2010-03-16 17:17:55 +00:00
}
2018-03-16 02:15:31 +00:00
/**
* Determines whether site meta is enabled.
*
* This function checks whether the 'blogmeta' database table exists. The result is saved as
* a setting for the main network, making it essentially a global setting. Subsequent requests
* will refer to this setting instead of running the query.
*
2019-01-08 08:18:50 +00:00
* @since 5.1.0
2018-03-16 02:15:31 +00:00
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @return bool True if site meta is supported, false otherwise.
*/
function is_site_meta_supported() {
global $wpdb;
if ( ! is_multisite() ) {
return false;
}
$network_id = get_main_network_id();
$supported = get_network_option( $network_id, 'site_meta_supported', false );
if ( false === $supported ) {
$supported = $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->blogmeta}'" ) ? 1 : 0;
update_network_option( $network_id, 'site_meta_supported', $supported );
}
return (bool) $supported;
}
2009-03-10 00:50:00 +00:00
/**
2011-07-21 17:48:25 +00:00
* gmt_offset modification for smart timezone handling.
2009-03-18 02:43:45 +00:00
*
2011-07-21 17:48:25 +00:00
* Overrides the gmt_offset option if we have a timezone_string available.
2010-02-13 08:59:04 +00:00
*
2010-02-19 01:08:39 +00:00
* @since 2.8.0
2010-02-13 08:59:04 +00:00
*
2015-05-25 16:11:25 +00:00
* @return float|false Timezone GMT offset, false otherwise.
2009-03-10 00:50:00 +00:00
*/
function wp_timezone_override_offset() {
2017-11-30 23:11:00 +00:00
if ( ! $timezone_string = get_option( 'timezone_string' ) ) {
2009-06-18 17:40:40 +00:00
return false;
}
2009-03-18 02:43:45 +00:00
2009-06-18 17:40:40 +00:00
$timezone_object = timezone_open( $timezone_string );
$datetime_object = date_create();
if ( false === $timezone_object || false === $datetime_object ) {
return false;
}
2012-09-25 05:26:19 +00:00
return round( timezone_offset_get( $timezone_object, $datetime_object ) / HOUR_IN_SECONDS, 2 );
2009-03-10 00:50:00 +00:00
}
2010-02-13 08:59:04 +00:00
/**
2013-08-23 13:57:08 +00:00
* Sort-helper for timezones.
2010-02-13 08:59:04 +00:00
*
2010-02-19 01:08:39 +00:00
* @since 2.9.0
2014-07-07 06:19:14 +00:00
* @access private
2010-02-13 08:59:04 +00:00
*
2013-08-23 13:57:08 +00:00
* @param array $a
* @param array $b
2010-02-19 01:08:39 +00:00
* @return int
2010-02-13 08:59:04 +00:00
*/
2009-06-18 17:40:40 +00:00
function _wp_timezone_choice_usort_callback( $a, $b ) {
// Don't use translated versions of Etc
if ( 'Etc' === $a['continent'] && 'Etc' === $b['continent'] ) {
// Make the order of these more like the old dropdown
if ( 'GMT+' === substr( $a['city'], 0, 4 ) && 'GMT+' === substr( $b['city'], 0, 4 ) ) {
return -1 * ( strnatcasecmp( $a['city'], $b['city'] ) );
}
if ( 'UTC' === $a['city'] ) {
if ( 'GMT+' === substr( $b['city'], 0, 4 ) ) {
return 1;
}
return -1;
}
if ( 'UTC' === $b['city'] ) {
if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) {
return -1;
}
return 1;
}
return strnatcasecmp( $a['city'], $b['city'] );
}
if ( $a['t_continent'] == $b['t_continent'] ) {
if ( $a['t_city'] == $b['t_city'] ) {
return strnatcasecmp( $a['t_subcity'], $b['t_subcity'] );
}
return strnatcasecmp( $a['t_city'], $b['t_city'] );
} else {
// Force Etc to the bottom of the list
if ( 'Etc' === $a['continent'] ) {
return 1;
}
if ( 'Etc' === $b['continent'] ) {
return -1;
}
return strnatcasecmp( $a['t_continent'], $b['t_continent'] );
}
2009-03-10 00:50:00 +00:00
}
/**
2014-07-07 06:19:14 +00:00
* Gives a nicely-formatted list of timezone strings.
2009-03-10 00:50:00 +00:00
*
2010-02-19 01:08:39 +00:00
* @since 2.9.0
2016-11-01 09:16:31 +00:00
* @since 4.7.0 Added the `$locale` parameter.
2009-03-10 00:50:00 +00:00
*
2015-05-25 16:11:25 +00:00
* @staticvar bool $mo_loaded
2016-11-01 09:16:31 +00:00
* @staticvar string $locale_loaded
2015-05-25 16:11:25 +00:00
*
2014-07-07 06:19:14 +00:00
* @param string $selected_zone Selected timezone.
2016-11-01 09:16:31 +00:00
* @param string $locale Optional. Locale to load the timezones in. Default current site locale.
2010-02-13 08:59:04 +00:00
* @return string
2009-03-10 00:50:00 +00:00
*/
2016-11-01 09:16:31 +00:00
function wp_timezone_choice( $selected_zone, $locale = null ) {
static $mo_loaded = false, $locale_loaded = null;
2009-05-14 18:58:37 +00:00
2017-11-30 23:11:00 +00:00
$continents = array( 'Africa', 'America', 'Antarctica', 'Arctic', 'Asia', 'Atlantic', 'Australia', 'Europe', 'Indian', 'Pacific' );
2009-03-10 15:26:52 +00:00
2016-11-01 09:16:31 +00:00
// Load translations for continents and cities.
if ( ! $mo_loaded || $locale !== $locale_loaded ) {
$locale_loaded = $locale ? $locale : get_locale();
2017-11-30 23:11:00 +00:00
$mofile = WP_LANG_DIR . '/continents-cities-' . $locale_loaded . '.mo';
2016-11-01 09:16:31 +00:00
unload_textdomain( 'continents-cities' );
2009-06-18 17:40:40 +00:00
load_textdomain( 'continents-cities', $mofile );
2009-05-14 18:58:37 +00:00
$mo_loaded = true;
}
2009-06-18 17:40:40 +00:00
$zonen = array();
foreach ( timezone_identifiers_list() as $zone ) {
$zone = explode( '/', $zone );
2017-11-30 23:11:00 +00:00
if ( ! in_array( $zone[0], $continents ) ) {
2009-03-10 15:26:52 +00:00
continue;
2009-06-18 17:40:40 +00:00
}
2009-03-10 00:50:00 +00:00
2009-06-18 17:40:40 +00:00
// This determines what gets set and translated - we don't translate Etc/* strings here, they are done later
2017-11-30 23:11:00 +00:00
$exists = array(
2010-03-19 21:15:00 +00:00
0 => ( isset( $zone[0] ) && $zone[0] ),
1 => ( isset( $zone[1] ) && $zone[1] ),
2 => ( isset( $zone[2] ) && $zone[2] ),
2009-06-18 17:40:40 +00:00
);
2010-03-19 21:15:00 +00:00
$exists[3] = ( $exists[0] && 'Etc' !== $zone[0] );
$exists[4] = ( $exists[1] && $exists[3] );
$exists[5] = ( $exists[2] && $exists[3] );
2009-06-18 17:40:40 +00:00
2019-01-11 06:04:49 +00:00
// phpcs:disable WordPress.WP.I18n.LowLevelTranslationFunction,WordPress.WP.I18n.NonSingularStringLiteralText
2009-06-18 17:40:40 +00:00
$zonen[] = array(
'continent' => ( $exists[0] ? $zone[0] : '' ),
'city' => ( $exists[1] ? $zone[1] : '' ),
'subcity' => ( $exists[2] ? $zone[2] : '' ),
't_continent' => ( $exists[3] ? translate( str_replace( '_', ' ', $zone[0] ), 'continents-cities' ) : '' ),
't_city' => ( $exists[4] ? translate( str_replace( '_', ' ', $zone[1] ), 'continents-cities' ) : '' ),
2017-11-30 23:11:00 +00:00
't_subcity' => ( $exists[5] ? translate( str_replace( '_', ' ', $zone[2] ), 'continents-cities' ) : '' ),
2009-06-18 17:40:40 +00:00
);
2019-01-11 06:04:49 +00:00
// phpcs:enable
2009-06-18 17:40:40 +00:00
}
usort( $zonen, '_wp_timezone_choice_usort_callback' );
$structure = array();
if ( empty( $selected_zone ) ) {
$structure[] = '<option selected="selected" value="">' . __( 'Select a city' ) . '</option>';
}
foreach ( $zonen as $key => $zone ) {
// Build value in an array to join later
$value = array( $zone['continent'] );
if ( empty( $zone['city'] ) ) {
// It's at the continent level (generally won't happen)
$display = $zone['t_continent'];
2009-03-10 00:50:00 +00:00
} else {
2009-06-18 17:40:40 +00:00
// It's inside a continent group
2009-09-14 14:03:32 +00:00
2009-06-18 17:40:40 +00:00
// Continent optgroup
2017-11-30 23:11:00 +00:00
if ( ! isset( $zonen[ $key - 1 ] ) || $zonen[ $key - 1 ]['continent'] !== $zone['continent'] ) {
$label = $zone['t_continent'];
$structure[] = '<optgroup label="' . esc_attr( $label ) . '">';
2009-06-18 17:40:40 +00:00
}
2009-09-14 14:03:32 +00:00
2009-06-18 17:40:40 +00:00
// Add the city to the value
$value[] = $zone['city'];
2009-12-23 14:16:36 +00:00
$display = $zone['t_city'];
2017-11-30 23:11:00 +00:00
if ( ! empty( $zone['subcity'] ) ) {
2009-12-23 14:16:36 +00:00
// Add the subcity to the value
2017-11-30 23:11:00 +00:00
$value[] = $zone['subcity'];
2009-12-23 14:16:36 +00:00
$display .= ' - ' . $zone['t_subcity'];
2009-06-18 17:40:40 +00:00
}
}
// Build the value
2017-11-30 23:11:00 +00:00
$value = join( '/', $value );
2009-06-18 17:40:40 +00:00
$selected = '';
if ( $value === $selected_zone ) {
$selected = 'selected="selected" ';
}
2017-11-30 23:11:00 +00:00
$structure[] = '<option ' . $selected . 'value="' . esc_attr( $value ) . '">' . esc_html( $display ) . '</option>';
2009-09-14 14:03:32 +00:00
2009-06-18 17:40:40 +00:00
// Close continent optgroup
2017-11-30 23:11:00 +00:00
if ( ! empty( $zone['city'] ) && ( ! isset( $zonen[ $key + 1 ] ) || ( isset( $zonen[ $key + 1 ] ) && $zonen[ $key + 1 ]['continent'] !== $zone['continent'] ) ) ) {
2009-06-18 17:40:40 +00:00
$structure[] = '</optgroup>';
2009-03-10 00:50:00 +00:00
}
}
2009-12-23 14:16:36 +00:00
// Do UTC
2017-11-30 23:11:00 +00:00
$structure[] = '<optgroup label="' . esc_attr__( 'UTC' ) . '">';
$selected = '';
if ( 'UTC' === $selected_zone ) {
2009-12-23 14:16:36 +00:00
$selected = 'selected="selected" ';
2017-11-30 23:11:00 +00:00
}
$structure[] = '<option ' . $selected . 'value="' . esc_attr( 'UTC' ) . '">' . __( 'UTC' ) . '</option>';
2009-12-23 14:16:36 +00:00
$structure[] = '</optgroup>';
// Do manual UTC offsets
2017-11-30 23:11:00 +00:00
$structure[] = '<optgroup label="' . esc_attr__( 'Manual Offsets' ) . '">';
$offset_range = array(
-12,
-11.5,
-11,
-10.5,
-10,
-9.5,
-9,
-8.5,
-8,
-7.5,
-7,
-6.5,
-6,
-5.5,
-5,
-4.5,
-4,
-3.5,
-3,
-2.5,
-2,
-1.5,
-1,
-0.5,
0,
0.5,
1,
1.5,
2,
2.5,
3,
3.5,
4,
4.5,
5,
5.5,
5.75,
6,
6.5,
7,
7.5,
8,
8.5,
8.75,
9,
9.5,
10,
10.5,
11,
11.5,
12,
12.75,
13,
13.75,
14,
);
2009-12-23 14:16:36 +00:00
foreach ( $offset_range as $offset ) {
2017-11-30 23:11:00 +00:00
if ( 0 <= $offset ) {
2009-12-23 14:16:36 +00:00
$offset_name = '+' . $offset;
2017-11-30 23:11:00 +00:00
} else {
2009-12-23 14:16:36 +00:00
$offset_name = (string) $offset;
2017-11-30 23:11:00 +00:00
}
2009-12-23 14:16:36 +00:00
$offset_value = $offset_name;
2017-11-30 23:11:00 +00:00
$offset_name = str_replace( array( '.25', '.5', '.75' ), array( ':15', ':30', ':45' ), $offset_name );
$offset_name = 'UTC' . $offset_name;
2009-12-23 14:16:36 +00:00
$offset_value = 'UTC' . $offset_value;
2017-11-30 23:11:00 +00:00
$selected = '';
if ( $offset_value === $selected_zone ) {
2009-12-23 14:16:36 +00:00
$selected = 'selected="selected" ';
2017-11-30 23:11:00 +00:00
}
$structure[] = '<option ' . $selected . 'value="' . esc_attr( $offset_value ) . '">' . esc_html( $offset_name ) . '</option>';
2010-01-15 22:11:12 +00:00
2009-12-23 14:16:36 +00:00
}
$structure[] = '</optgroup>';
2009-06-18 17:40:40 +00:00
return join( "\n", $structure );
2009-03-10 00:50:00 +00:00
}
2009-05-04 09:33:58 +00:00
/**
2011-07-21 17:48:25 +00:00
* Strip close comment and close php tags from file headers used by WP.
2009-05-04 09:33:58 +00:00
*
2010-02-19 01:08:39 +00:00
* @since 2.8.0
2014-07-07 06:19:14 +00:00
* @access private
2010-02-19 01:08:39 +00:00
*
2014-09-29 13:28:16 +00:00
* @see https://core.trac.wordpress.org/ticket/8497
2014-07-07 06:19:14 +00:00
*
* @param string $str Header comment to clean up.
2010-02-19 01:08:39 +00:00
* @return string
*/
2014-07-07 06:19:14 +00:00
function _cleanup_header_comment( $str ) {
2017-11-30 23:11:00 +00:00
return trim( preg_replace( '/\s*(?:\*\/|\?>).*/', '', $str ) );
2009-05-04 09:33:58 +00:00
}
2009-07-24 07:23:11 +00:00
/**
2015-03-25 22:45:27 +00:00
* Permanently delete comments or posts of any type that have held a status
* of 'trash' for the number of days defined in EMPTY_TRASH_DAYS.
*
* The default value of `EMPTY_TRASH_DAYS` is 30 (days).
2009-09-14 14:03:32 +00:00
*
2009-07-24 07:23:11 +00:00
* @since 2.9.0
2015-05-25 16:11:25 +00:00
*
2015-10-14 23:44:25 +00:00
* @global wpdb $wpdb WordPress database abstraction object.
2009-07-24 07:23:11 +00:00
*/
function wp_scheduled_delete() {
2009-08-25 22:05:15 +00:00
global $wpdb;
2012-09-25 05:26:19 +00:00
$delete_timestamp = time() - ( DAY_IN_SECONDS * EMPTY_TRASH_DAYS );
2009-09-14 14:03:32 +00:00
2017-11-30 23:11:00 +00:00
$posts_to_delete = $wpdb->get_results( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_wp_trash_meta_time' AND meta_value < %d", $delete_timestamp ), ARRAY_A );
2009-09-14 14:03:32 +00:00
2009-08-25 22:05:15 +00:00
foreach ( (array) $posts_to_delete as $post ) {
2009-12-16 01:35:29 +00:00
$post_id = (int) $post['post_id'];
2017-11-30 23:11:00 +00:00
if ( ! $post_id ) {
2009-12-16 01:35:29 +00:00
continue;
2017-11-30 23:11:00 +00:00
}
2009-12-16 01:35:29 +00:00
2017-11-30 23:11:00 +00:00
$del_post = get_post( $post_id );
2009-12-16 01:35:29 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $del_post || 'trash' != $del_post->post_status ) {
delete_post_meta( $post_id, '_wp_trash_meta_status' );
delete_post_meta( $post_id, '_wp_trash_meta_time' );
2009-12-16 01:35:29 +00:00
} else {
2017-11-30 23:11:00 +00:00
wp_delete_post( $post_id );
2009-12-16 01:35:29 +00:00
}
2009-08-25 22:05:15 +00:00
}
2017-11-30 23:11:00 +00:00
$comments_to_delete = $wpdb->get_results( $wpdb->prepare( "SELECT comment_id FROM $wpdb->commentmeta WHERE meta_key = '_wp_trash_meta_time' AND meta_value < %d", $delete_timestamp ), ARRAY_A );
2009-09-24 17:19:13 +00:00
2009-09-17 20:51:12 +00:00
foreach ( (array) $comments_to_delete as $comment ) {
2009-12-16 01:35:29 +00:00
$comment_id = (int) $comment['comment_id'];
2017-11-30 23:11:00 +00:00
if ( ! $comment_id ) {
2009-12-16 01:35:29 +00:00
continue;
2017-11-30 23:11:00 +00:00
}
2009-12-16 01:35:29 +00:00
2017-11-30 23:11:00 +00:00
$del_comment = get_comment( $comment_id );
2009-12-16 01:35:29 +00:00
2017-11-30 23:11:00 +00:00
if ( ! $del_comment || 'trash' != $del_comment->comment_approved ) {
delete_comment_meta( $comment_id, '_wp_trash_meta_time' );
delete_comment_meta( $comment_id, '_wp_trash_meta_status' );
2009-12-16 01:35:29 +00:00
} else {
2015-09-14 21:40:24 +00:00
wp_delete_comment( $del_comment );
2009-12-16 01:35:29 +00:00
}
2009-07-30 13:39:34 +00:00
}
2009-07-24 07:23:11 +00:00
}
2009-10-15 21:07:00 +00:00
/**
2010-12-06 03:44:36 +00:00
* Retrieve metadata from a file.
2009-10-15 21:07:00 +00:00
*
2010-12-06 03:44:36 +00:00
* Searches for metadata in the first 8kiB of a file, such as a plugin or theme.
2011-07-21 17:48:25 +00:00
* Each piece of metadata must be on its own line. Fields can not span multiple
2010-12-06 03:44:36 +00:00
* lines, the value will get cut at the end of the first line.
2010-12-13 21:21:50 +00:00
*
2010-12-06 03:44:36 +00:00
* If the file data is not within that first 8kiB, then the author should correct
* their plugin file and move the data headers to the top.
2009-10-15 21:07:00 +00:00
*
2015-04-12 21:29:32 +00:00
* @link https://codex.wordpress.org/File_Header
2009-10-15 21:07:00 +00:00
*
* @since 2.9.0
2014-11-23 17:57:22 +00:00
*
2018-03-05 21:50:31 +00:00
* @param string $file Absolute path to the file.
* @param array $default_headers List of headers, in the format `array('HeaderKey' => 'Header Name')`.
2016-05-23 19:01:27 +00:00
* @param string $context Optional. If specified adds filter hook {@see 'extra_$context_headers'}.
2014-07-07 06:19:14 +00:00
* Default empty.
2014-11-23 17:57:22 +00:00
* @return array Array of file headers in `HeaderKey => Header Value` format.
2009-10-15 21:07:00 +00:00
*/
function get_file_data( $file, $default_headers, $context = '' ) {
// We don't need to write to the file, so just open for reading.
$fp = fopen( $file, 'r' );
// Pull only the first 8kiB of the file in.
$file_data = fread( $fp, 8192 );
// PHP will close file handle, but we are good citizens.
fclose( $fp );
2012-04-30 01:25:29 +00:00
// Make sure we catch CR-only line endings.
$file_data = str_replace( "\r", "\n", $file_data );
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters extra file headers by context.
2014-04-14 00:20:14 +00:00
*
2014-11-30 12:10:23 +00:00
* The dynamic portion of the hook name, `$context`, refers to
* the context where extra headers might be loaded.
2014-04-14 00:20:14 +00:00
*
* @since 2.9.0
*
* @param array $extra_context_headers Empty array by default.
*/
2012-03-02 21:07:31 +00:00
if ( $context && $extra_headers = apply_filters( "extra_{$context}_headers", array() ) ) {
$extra_headers = array_combine( $extra_headers, $extra_headers ); // keys equal values
2017-11-30 23:11:00 +00:00
$all_headers = array_merge( $extra_headers, (array) $default_headers );
2009-10-15 21:07:00 +00:00
} else {
$all_headers = $default_headers;
}
foreach ( $all_headers as $field => $regex ) {
2017-11-30 23:11:00 +00:00
if ( preg_match( '/^[ \t\/*#@]*' . preg_quote( $regex, '/' ) . ':(.*)$/mi', $file_data, $match ) && $match[1] ) {
2012-03-02 21:07:31 +00:00
$all_headers[ $field ] = _cleanup_header_comment( $match[1] );
2017-11-30 23:11:00 +00:00
} else {
2012-03-02 21:07:31 +00:00
$all_headers[ $field ] = '';
2017-11-30 23:11:00 +00:00
}
2009-10-15 21:07:00 +00:00
}
2012-03-02 21:07:31 +00:00
return $all_headers;
2009-10-15 21:07:00 +00:00
}
2010-08-11 21:54:51 +00:00
2010-03-01 08:50:27 +00:00
/**
2011-07-21 17:48:25 +00:00
* Returns true.
2010-03-01 08:50:27 +00:00
*
2011-07-21 17:48:25 +00:00
* Useful for returning true to filters easily.
2010-03-01 08:50:27 +00:00
*
2010-05-14 16:46:53 +00:00
* @since 3.0.0
2014-07-07 06:19:14 +00:00
*
2010-03-01 08:50:27 +00:00
* @see __return_false()
2014-07-07 06:19:14 +00:00
*
2015-05-25 16:11:25 +00:00
* @return true True.
2010-03-01 08:50:27 +00:00
*/
function __return_true() {
return true;
}
2010-02-25 21:56:28 +00:00
/**
2011-07-21 17:48:25 +00:00
* Returns false.
2010-02-25 21:56:28 +00:00
*
2011-07-21 17:48:25 +00:00
* Useful for returning false to filters easily.
2010-03-01 08:50:27 +00:00
*
2010-05-14 16:46:53 +00:00
* @since 3.0.0
2014-07-07 06:19:14 +00:00
*
2010-03-01 08:50:27 +00:00
* @see __return_true()
2014-07-07 06:19:14 +00:00
*
2015-05-25 16:11:25 +00:00
* @return false False.
2010-02-25 21:56:28 +00:00
*/
function __return_false() {
return false;
2010-03-23 19:13:58 +00:00
}
2010-05-14 16:46:53 +00:00
/**
2011-07-21 17:48:25 +00:00
* Returns 0.
2010-05-14 16:46:53 +00:00
*
2011-07-21 17:48:25 +00:00
* Useful for returning 0 to filters easily.
2010-05-14 16:46:53 +00:00
*
* @since 3.0.0
2014-07-07 06:19:14 +00:00
*
* @return int 0.
2010-05-14 16:46:53 +00:00
*/
function __return_zero() {
return 0;
}
2010-05-14 16:55:26 +00:00
/**
2011-07-21 17:48:25 +00:00
* Returns an empty array.
2010-05-14 16:55:26 +00:00
*
2011-07-21 17:48:25 +00:00
* Useful for returning an empty array to filters easily.
2010-05-14 16:55:26 +00:00
*
* @since 3.0.0
2014-07-07 06:19:14 +00:00
*
* @return array Empty array.
2010-05-14 16:55:26 +00:00
*/
function __return_empty_array() {
return array();
}
2011-12-20 20:58:30 +00:00
/**
* Returns null.
*
* Useful for returning null to filters easily.
*
2011-12-20 20:59:03 +00:00
* @since 3.4.0
2014-07-07 06:19:14 +00:00
*
* @return null Null value.
2011-12-20 20:58:30 +00:00
*/
function __return_null() {
return null;
}
2013-08-16 20:02:08 +00:00
/**
* Returns an empty string.
*
* Useful for returning an empty string to filters easily.
*
* @since 3.7.0
2014-07-07 06:19:14 +00:00
*
2013-08-16 20:02:08 +00:00
* @see __return_null()
2014-07-07 06:19:14 +00:00
*
* @return string Empty string.
2013-08-16 20:02:08 +00:00
*/
function __return_empty_string() {
return '';
}
2010-03-23 19:13:58 +00:00
/**
* Send a HTTP header to disable content type sniffing in browsers which support it.
*
* @since 3.0.0
2014-07-07 06:19:14 +00:00
*
2016-06-10 04:50:33 +00:00
* @see https://blogs.msdn.com/ie/archive/2008/07/02/ie8-security-part-v-comprehensive-protection.aspx
* @see https://src.chromium.org/viewvc/chrome?view=rev&revision=6985
2010-03-23 19:13:58 +00:00
*/
function send_nosniff_header() {
@header( 'X-Content-Type-Options: nosniff' );
}
2010-05-07 05:01:29 +00:00
/**
2014-07-07 06:19:14 +00:00
* Return a MySQL expression for selecting the week number based on the start_of_week option.
2010-05-07 05:01:29 +00:00
*
2015-01-13 00:51:21 +00:00
* @ignore
2010-05-07 05:01:29 +00:00
* @since 3.0.0
2014-07-07 06:19:14 +00:00
*
* @param string $column Database column.
* @return string SQL clause.
2010-05-07 05:01:29 +00:00
*/
function _wp_mysql_week( $column ) {
switch ( $start_of_week = (int) get_option( 'start_of_week' ) ) {
2017-11-30 23:11:00 +00:00
case 1:
return "WEEK( $column, 1 )";
case 2:
case 3:
case 4:
case 5:
case 6:
return "WEEK( DATE_SUB( $column, INTERVAL $start_of_week DAY ), 0 )";
case 0:
default:
return "WEEK( $column, 0 )";
2010-05-07 05:01:29 +00:00
}
}
2010-10-14 15:09:04 +00:00
/**
2014-07-07 06:19:14 +00:00
* Find hierarchy loops using a callback function that maps object IDs to parent IDs.
2010-10-14 15:09:04 +00:00
*
2010-10-19 07:38:42 +00:00
* @since 3.1.0
2010-10-19 07:48:22 +00:00
* @access private
2010-10-14 15:09:04 +00:00
*
2015-09-25 23:58:25 +00:00
* @param callable $callback Function that accepts ( ID, $callback_args ) and outputs parent_ID.
2014-07-07 06:19:14 +00:00
* @param int $start The ID to start the loop check at.
* @param int $start_parent The parent_ID of $start to use instead of calling $callback( $start ).
* Use null to always use $callback
* @param array $callback_args Optional. Additional arguments to send to $callback.
* @return array IDs of all members of loop.
2010-10-14 15:09:04 +00:00
*/
function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_args = array() ) {
$override = is_null( $start_parent ) ? array() : array( $start => $start_parent );
2017-11-30 23:11:00 +00:00
if ( ! $arbitrary_loop_member = wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override, $callback_args ) ) {
2010-10-14 15:09:04 +00:00
return array();
2017-11-30 23:11:00 +00:00
}
2010-10-14 15:09:04 +00:00
return wp_find_hierarchy_loop_tortoise_hare( $callback, $arbitrary_loop_member, $override, $callback_args, true );
}
/**
2014-07-07 06:19:14 +00:00
* Use the "The Tortoise and the Hare" algorithm to detect loops.
2010-10-14 15:09:04 +00:00
*
* For every step of the algorithm, the hare takes two steps and the tortoise one.
* If the hare ever laps the tortoise, there must be a loop.
*
2010-10-19 07:38:42 +00:00
* @since 3.1.0
* @access private
2010-10-14 15:09:04 +00:00
*
2015-09-25 23:58:25 +00:00
* @param callable $callback Function that accepts ( ID, callback_arg, ... ) and outputs parent_ID.
2014-07-07 06:19:14 +00:00
* @param int $start The ID to start the loop check at.
* @param array $override Optional. An array of ( ID => parent_ID, ... ) to use instead of $callback.
* Default empty array.
* @param array $callback_args Optional. Additional arguments to send to $callback. Default empty array.
* @param bool $_return_loop Optional. Return loop members or just detect presence of loop? Only set
* to true if you already know the given $start is part of a loop (otherwise
* the returned array might include branches). Default false.
* @return mixed Scalar ID of some arbitrary member of the loop, or array of IDs of all members of loop if
* $_return_loop
2010-10-14 15:09:04 +00:00
*/
function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = array(), $callback_args = array(), $_return_loop = false ) {
$tortoise = $hare = $evanescent_hare = $start;
2017-11-30 23:11:00 +00:00
$return = array();
2010-10-14 15:09:04 +00:00
// Set evanescent_hare to one past hare
// Increment hare two steps
while (
$tortoise
&&
2017-11-30 23:11:00 +00:00
( $evanescent_hare = isset( $override[ $hare ] ) ? $override[ $hare ] : call_user_func_array( $callback, array_merge( array( $hare ), $callback_args ) ) )
2010-10-14 15:09:04 +00:00
&&
2017-11-30 23:11:00 +00:00
( $hare = isset( $override[ $evanescent_hare ] ) ? $override[ $evanescent_hare ] : call_user_func_array( $callback, array_merge( array( $evanescent_hare ), $callback_args ) ) )
2010-10-14 15:09:04 +00:00
) {
2017-11-30 23:11:00 +00:00
if ( $_return_loop ) {
$return[ $tortoise ] = $return[ $evanescent_hare ] = $return[ $hare ] = true;
}
2010-10-14 15:09:04 +00:00
// tortoise got lapped - must be a loop
2017-11-30 23:11:00 +00:00
if ( $tortoise == $evanescent_hare || $tortoise == $hare ) {
2010-10-14 15:09:04 +00:00
return $_return_loop ? $return : $tortoise;
2017-11-30 23:11:00 +00:00
}
2010-10-14 15:09:04 +00:00
// Increment tortoise by one step
2017-11-30 23:11:00 +00:00
$tortoise = isset( $override[ $tortoise ] ) ? $override[ $tortoise ] : call_user_func_array( $callback, array_merge( array( $tortoise ), $callback_args ) );
2010-10-14 15:09:04 +00:00
}
return false;
}
2010-10-18 17:58:36 +00:00
2011-05-06 21:28:53 +00:00
/**
* Send a HTTP header to limit rendering of pages to same origin iframes.
*
2011-05-25 15:47:17 +00:00
* @since 3.1.3
2014-07-07 06:19:14 +00:00
*
* @see https://developer.mozilla.org/en/the_x-frame-options_response_header
2011-05-06 21:28:53 +00:00
*/
function send_frame_options_header() {
@header( 'X-Frame-Options: SAMEORIGIN' );
}
2011-09-29 22:33:51 +00:00
/**
* Retrieve a list of protocols to allow in HTML attributes.
*
* @since 3.3.0
2015-05-05 00:38:27 +00:00
* @since 4.3.0 Added 'webcal' to the protocols array.
2016-09-30 13:15:28 +00:00
* @since 4.7.0 Added 'urn' to the protocols array.
2014-07-07 06:19:14 +00:00
*
2011-09-29 22:33:51 +00:00
* @see wp_kses()
* @see esc_url()
*
2015-05-25 16:11:25 +00:00
* @staticvar array $protocols
*
2018-04-28 13:58:21 +00:00
* @return string[] Array of allowed protocols. Defaults to an array containing 'http', 'https',
* 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet',
* 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal', and 'urn'. This covers
* all common link protocols, except for 'javascript' which should not be
* allowed for untrusted users.
2011-09-29 22:33:51 +00:00
*/
function wp_allowed_protocols() {
2015-05-29 15:43:29 +00:00
static $protocols = array();
2011-09-29 22:33:51 +00:00
if ( empty( $protocols ) ) {
2016-09-30 13:15:28 +00:00
$protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal', 'urn' );
2017-10-24 13:25:55 +00:00
}
2014-04-14 00:20:14 +00:00
2017-10-24 13:25:55 +00:00
if ( ! did_action( 'wp_loaded' ) ) {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters the list of protocols allowed in HTML attributes.
2014-05-05 20:08:16 +00:00
*
* @since 3.0.0
2014-04-14 00:20:14 +00:00
*
* @param array $protocols Array of allowed protocols e.g. 'http', 'ftp', 'tel', and more.
*/
2017-10-24 13:25:55 +00:00
$protocols = array_unique( (array) apply_filters( 'kses_allowed_protocols', $protocols ) );
2011-09-29 22:33:51 +00:00
}
return $protocols;
}
2012-01-28 11:56:50 +00:00
/**
2014-07-07 06:19:14 +00:00
* Return a comma-separated string of functions that have been called to get
* to the current point in code.
2012-01-28 12:37:08 +00:00
*
2013-11-06 10:17:09 +00:00
* @since 3.4.0
2012-01-28 11:56:50 +00:00
*
2014-09-29 13:28:16 +00:00
* @see https://core.trac.wordpress.org/ticket/19589
2014-07-07 06:19:14 +00:00
*
2018-03-08 17:08:31 +00:00
* @staticvar array $truncate_paths Array of paths to truncate.
*
2014-07-07 06:19:14 +00:00
* @param string $ignore_class Optional. A class to ignore all function calls within - useful
* when you want to just give info about the callee. Default null.
* @param int $skip_frames Optional. A number of stack frames to skip - useful for unwinding
* back to the source of the issue. Default 0.
* @param bool $pretty Optional. Whether or not you want a comma separated string or raw
* array returned. Default true.
* @return string|array Either a string containing a reversed comma separated trace or an array
* of individual calls.
2012-01-28 11:56:50 +00:00
*/
function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) {
2018-03-08 17:08:31 +00:00
static $truncate_paths;
2017-11-30 23:11:00 +00:00
if ( version_compare( PHP_VERSION, '5.2.5', '>=' ) ) {
2012-06-25 20:41:37 +00:00
$trace = debug_backtrace( false );
2017-11-30 23:11:00 +00:00
} else {
2012-06-25 20:41:37 +00:00
$trace = debug_backtrace();
2017-11-30 23:11:00 +00:00
}
2012-06-25 20:41:37 +00:00
2017-11-30 23:11:00 +00:00
$caller = array();
2012-01-28 11:56:50 +00:00
$check_class = ! is_null( $ignore_class );
$skip_frames++; // skip this function
2018-03-08 17:08:31 +00:00
if ( ! isset( $truncate_paths ) ) {
$truncate_paths = array(
wp_normalize_path( WP_CONTENT_DIR ),
2018-08-17 01:51:36 +00:00
wp_normalize_path( ABSPATH ),
2018-03-08 17:08:31 +00:00
);
}
2012-01-28 11:56:50 +00:00
foreach ( $trace as $call ) {
if ( $skip_frames > 0 ) {
$skip_frames--;
} elseif ( isset( $call['class'] ) ) {
2017-11-30 23:11:00 +00:00
if ( $check_class && $ignore_class == $call['class'] ) {
2012-01-28 11:56:50 +00:00
continue; // Filter out calls
2017-11-30 23:11:00 +00:00
}
2012-01-28 11:56:50 +00:00
$caller[] = "{$call['class']}{$call['type']}{$call['function']}";
} else {
2018-03-10 00:05:31 +00:00
if ( in_array( $call['function'], array( 'do_action', 'apply_filters', 'do_action_ref_array', 'apply_filters_ref_array' ) ) ) {
2012-01-28 11:56:50 +00:00
$caller[] = "{$call['function']}('{$call['args'][0]}')";
} elseif ( in_array( $call['function'], array( 'include', 'include_once', 'require', 'require_once' ) ) ) {
2018-03-10 17:31:32 +00:00
$filename = isset( $call['args'][0] ) ? $call['args'][0] : '';
$caller[] = $call['function'] . "('" . str_replace( $truncate_paths, '', wp_normalize_path( $filename ) ) . "')";
2012-01-28 11:56:50 +00:00
} else {
$caller[] = $call['function'];
}
}
}
2017-11-30 23:11:00 +00:00
if ( $pretty ) {
2012-01-28 11:56:50 +00:00
return join( ', ', array_reverse( $caller ) );
2017-11-30 23:11:00 +00:00
} else {
2012-01-28 11:56:50 +00:00
return $caller;
2017-11-30 23:11:00 +00:00
}
2012-01-28 12:37:08 +00:00
}
2012-02-14 15:09:35 +00:00
/**
2018-03-25 19:33:31 +00:00
* Retrieve IDs that are not already present in the cache.
2012-02-14 15:09:35 +00:00
*
* @since 3.4.0
2014-07-07 06:19:14 +00:00
* @access private
2012-02-14 15:09:35 +00:00
*
2018-03-25 19:33:31 +00:00
* @param int[] $object_ids Array of IDs.
2014-07-07 06:19:14 +00:00
* @param string $cache_key The cache bucket to check against.
2018-03-25 19:33:31 +00:00
* @return int[] Array of IDs not present in the cache.
2012-02-14 15:09:35 +00:00
*/
function _get_non_cached_ids( $object_ids, $cache_key ) {
$clean = array();
foreach ( $object_ids as $id ) {
$id = (int) $id;
2017-11-30 23:11:00 +00:00
if ( ! wp_cache_get( $id, $cache_key ) ) {
2012-02-14 15:09:35 +00:00
$clean[] = $id;
}
}
return $clean;
}
2012-04-12 00:16:37 +00:00
/**
* Test if the current device has the capability to upload files.
*
* @since 3.4.0
* @access private
*
2015-06-27 00:45:24 +00:00
* @return bool Whether the device is able to upload files.
2012-04-12 00:16:37 +00:00
*/
function _device_can_upload() {
2017-11-30 23:11:00 +00:00
if ( ! wp_is_mobile() ) {
2012-04-12 00:16:37 +00:00
return true;
2017-11-30 23:11:00 +00:00
}
2012-04-12 00:16:37 +00:00
$ua = $_SERVER['HTTP_USER_AGENT'];
2012-05-03 16:41:59 +00:00
2017-11-30 23:11:00 +00:00
if ( strpos( $ua, 'iPhone' ) !== false
|| strpos( $ua, 'iPad' ) !== false
|| strpos( $ua, 'iPod' ) !== false ) {
2012-06-26 20:39:04 +00:00
return preg_match( '#OS ([\d_]+) like Mac OS X#', $ua, $version ) && version_compare( $version[1], '6', '>=' );
2012-04-12 00:16:37 +00:00
}
2012-06-26 20:39:04 +00:00
return true;
2012-04-12 00:16:37 +00:00
}
2012-10-01 20:59:06 +00:00
/**
* Test if a given path is a stream URL
*
2016-12-27 09:21:44 +00:00
* @since 3.5.0
*
2014-07-07 06:19:14 +00:00
* @param string $path The resource path or URL.
* @return bool True if the path is a stream URL.
2012-10-01 20:59:06 +00:00
*/
function wp_is_stream( $path ) {
2019-01-09 09:51:54 +00:00
$scheme_separator = strpos( $path, '://' );
if ( false === $scheme_separator ) {
2018-07-17 07:54:25 +00:00
// $path isn't a stream
return false;
}
2019-01-09 09:51:54 +00:00
$stream = substr( $path, 0, $scheme_separator );
2012-10-01 20:59:06 +00:00
2019-01-09 09:51:54 +00:00
return in_array( $stream, stream_get_wrappers(), true );
2012-10-01 20:59:06 +00:00
}
2012-09-20 10:46:50 +00:00
/**
2014-06-30 03:47:16 +00:00
* Test if the supplied date is valid for the Gregorian calendar.
2012-09-20 10:46:50 +00:00
*
* @since 3.5.0
*
2018-08-30 13:49:25 +00:00
* @link https://secure.php.net/manual/en/function.checkdate.php
2014-06-30 03:47:16 +00:00
*
* @param int $month Month number.
* @param int $day Day number.
* @param int $year Year number.
* @param string $source_date The date to filter.
2014-07-07 06:19:14 +00:00
* @return bool True if valid date, false if not valid date.
2012-09-20 10:46:50 +00:00
*/
function wp_checkdate( $month, $day, $year, $source_date ) {
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether the given date is valid for the Gregorian calendar.
2014-04-14 00:20:14 +00:00
*
* @since 3.5.0
*
* @param bool $checkdate Whether the given date is valid.
* @param string $source_date Date to check.
*/
2012-09-20 10:46:50 +00:00
return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date );
2013-02-28 08:57:17 +00:00
}
/**
2013-03-27 08:43:11 +00:00
* Load the auth check for monitoring whether the user is still logged in.
2013-02-28 08:57:17 +00:00
*
2013-07-18 19:06:35 +00:00
* Can be disabled with remove_action( 'admin_enqueue_scripts', 'wp_auth_check_load' );
*
* This is disabled for certain screens where a login screen could cause an
2016-05-23 19:01:27 +00:00
* inconvenient interruption. A filter called {@see 'wp_auth_check_load'} can be used
2013-07-18 19:06:35 +00:00
* for fine-grained control.
2013-02-28 08:57:17 +00:00
*
2013-07-18 19:06:35 +00:00
* @since 3.6.0
2013-02-28 08:57:17 +00:00
*/
function wp_auth_check_load() {
2017-11-30 23:11:00 +00:00
if ( ! is_admin() && ! is_user_logged_in() ) {
2013-07-18 19:06:35 +00:00
return;
2017-11-30 23:11:00 +00:00
}
2013-03-01 01:55:33 +00:00
2017-11-30 23:11:00 +00:00
if ( defined( 'IFRAME_REQUEST' ) ) {
2013-03-27 08:43:11 +00:00
return;
2017-11-30 23:11:00 +00:00
}
2013-03-27 08:43:11 +00:00
2013-07-18 19:06:35 +00:00
$screen = get_current_screen();
$hidden = array( 'update', 'update-network', 'update-core', 'update-core-network', 'upgrade', 'upgrade-network', 'network' );
2017-11-30 23:11:00 +00:00
$show = ! in_array( $screen->id, $hidden );
2013-03-27 08:43:11 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether to load the authentication check.
2014-04-14 00:20:14 +00:00
*
2014-07-07 06:19:14 +00:00
* Passing a falsey value to the filter will effectively short-circuit
* loading the authentication check.
*
2014-04-14 00:20:14 +00:00
* @since 3.6.0
*
* @param bool $show Whether to load the authentication check.
* @param WP_Screen $screen The current screen object.
*/
2013-07-18 19:06:35 +00:00
if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) {
wp_enqueue_style( 'wp-auth-check' );
wp_enqueue_script( 'wp-auth-check' );
add_action( 'admin_print_footer_scripts', 'wp_auth_check_html', 5 );
add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 );
2013-03-27 08:43:11 +00:00
}
2013-03-01 01:55:33 +00:00
}
/**
2013-07-18 19:06:35 +00:00
* Output the HTML that shows the wp-login dialog when the user is no longer logged in.
*
* @since 3.6.0
2013-03-01 17:58:43 +00:00
*/
2013-03-27 08:43:11 +00:00
function wp_auth_check_html() {
2017-11-30 23:11:00 +00:00
$login_url = wp_login_url();
2013-03-27 08:43:11 +00:00
$current_domain = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'];
2017-11-30 23:11:00 +00:00
$same_domain = ( strpos( $login_url, $current_domain ) === 0 );
2013-04-05 23:28:40 +00:00
2014-04-14 00:20:14 +00:00
/**
2016-05-22 18:36:27 +00:00
* Filters whether the authentication check originated at the same domain.
2014-04-14 00:20:14 +00:00
*
* @since 3.6.0
*
* @param bool $same_domain Whether the authentication check originated at the same domain.
*/
2013-03-27 08:43:11 +00:00
$same_domain = apply_filters( 'wp_auth_check_same_domain', $same_domain );
2017-11-30 23:11:00 +00:00
$wrap_class = $same_domain ? 'hidden' : 'hidden fallback';
2013-03-27 08:43:11 +00:00
2013-03-01 01:55:33 +00:00
?>
2013-03-27 08:43:11 +00:00
<div id="wp-auth-check-wrap" class="<?php echo $wrap_class; ?>">
<div id="wp-auth-check-bg"></div>
<div id="wp-auth-check">
2015-12-18 23:51:26 +00:00
<button type="button" class="wp-auth-check-close button-link"><span class="screen-reader-text"><?php _e( 'Close dialog' ); ?></span></button>
2013-03-27 08:43:11 +00:00
<?php
if ( $same_domain ) {
2017-11-30 23:11:00 +00:00
$login_src = add_query_arg(
array(
'interim-login' => '1',
'wp_lang' => get_user_locale(),
2018-08-17 01:51:36 +00:00
),
$login_url
2017-11-30 23:11:00 +00:00
);
2013-03-27 08:43:11 +00:00
?>
2017-10-02 23:21:47 +00:00
<div id="wp-auth-check-form" class="loading" data-src="<?php echo esc_url( $login_src ); ?>"></div>
2013-03-27 08:43:11 +00:00
<?php
}
?>
<div class="wp-auth-fallback">
2017-11-30 23:11:00 +00:00
<p><b class="wp-auth-fallback-expired" tabindex="0"><?php _e( 'Session expired' ); ?></b></p>
<p><a href="<?php echo esc_url( $login_url ); ?>" target="_blank"><?php _e( 'Please log in again.' ); ?></a>
2018-05-05 09:45:22 +00:00
<?php _e( 'The login page will open in a new tab. After logging in you can close it and return to this page.' ); ?></p>
2013-03-27 08:43:11 +00:00
</div>
</div>
</div>
2013-03-01 01:55:33 +00:00
<?php
}
/**
2013-07-18 19:06:35 +00:00
* Check whether a user is still logged in, for the heartbeat.
*
* Send a result that shows a log-in box if the user is no longer logged in,
* or if their cookie is within the grace period.
2013-03-01 01:55:33 +00:00
*
* @since 3.6.0
2014-06-30 03:47:16 +00:00
*
2015-05-25 16:11:25 +00:00
* @global int $login_grace_period
*
* @param array $response The Heartbeat response.
* @return array $response The Heartbeat response with 'wp-auth-check' value set.
2013-03-01 01:55:33 +00:00
*/
2014-02-09 22:34:11 +00:00
function wp_auth_check( $response ) {
2013-07-18 19:06:35 +00:00
$response['wp-auth-check'] = is_user_logged_in() && empty( $GLOBALS['login_grace_period'] );
return $response;
2013-02-28 08:57:17 +00:00
}
2013-03-16 05:25:44 +00:00
/**
2014-07-07 06:19:14 +00:00
* Return RegEx body to liberally match an opening HTML tag.
*
* Matches an opening HTML tag that:
2013-03-16 05:25:44 +00:00
* 1. Is self-closing or
* 2. Has no body but has a closing tag of the same name or
* 3. Contains a body and a closing tag of the same name
*
2014-07-07 06:19:14 +00:00
* Note: this RegEx does not balance inner tags and does not attempt
* to produce valid HTML
2013-03-16 05:25:44 +00:00
*
* @since 3.6.0
*
2014-07-07 06:19:14 +00:00
* @param string $tag An HTML tag name. Example: 'video'.
* @return string Tag RegEx.
2013-03-16 05:25:44 +00:00
*/
function get_tag_regex( $tag ) {
2017-11-30 23:11:00 +00:00
if ( empty( $tag ) ) {
2013-03-16 05:25:44 +00:00
return;
2017-11-30 23:11:00 +00:00
}
2013-04-22 22:11:42 +00:00
return sprintf( '<%1$s[^<]*(?:>[\s\S]*<\/%1$s>|\s*\/>)', tag_escape( $tag ) );
2013-03-27 08:43:11 +00:00
}
2013-06-25 19:03:17 +00:00
/**
2014-07-07 06:19:14 +00:00
* Retrieve a canonical form of the provided charset appropriate for passing to PHP
2013-06-25 19:03:17 +00:00
* functions such as htmlspecialchars() and charset html attributes.
*
* @since 3.6.0
2014-07-07 06:19:14 +00:00
* @access private
*
2014-09-29 13:28:16 +00:00
* @see https://core.trac.wordpress.org/ticket/23688
2013-06-25 19:03:17 +00:00
*
2014-07-07 06:19:14 +00:00
* @param string $charset A charset name.
* @return string The canonical form of the charset.
2013-06-25 19:03:17 +00:00
*/
function _canonical_charset( $charset ) {
2017-11-30 23:11:00 +00:00
if ( 'utf-8' === strtolower( $charset ) || 'utf8' === strtolower( $charset ) ) {
2016-10-17 23:54:30 +00:00
2013-06-25 19:03:17 +00:00
return 'UTF-8';
2016-10-17 23:54:30 +00:00
}
if ( 'iso-8859-1' === strtolower( $charset ) || 'iso8859-1' === strtolower( $charset ) ) {
2013-06-25 19:03:17 +00:00
return 'ISO-8859-1';
2016-10-17 23:54:30 +00:00
}
2013-06-25 19:03:17 +00:00
return $charset;
2013-07-12 23:32:32 +00:00
}
2013-09-11 07:23:08 +00:00
/**
2014-07-07 06:19:14 +00:00
* Set the mbstring internal encoding to a binary safe encoding when func_overload
* is enabled.
2013-09-11 07:23:08 +00:00
*
2014-07-07 06:19:14 +00:00
* When mbstring.func_overload is in use for multi-byte encodings, the results from
* strlen() and similar functions respect the utf8 characters, causing binary data
* to return incorrect lengths.
2013-09-11 07:23:08 +00:00
*
2014-07-07 06:19:14 +00:00
* This function overrides the mbstring encoding to a binary-safe encoding, and
* resets it to the users expected encoding afterwards through the
* `reset_mbstring_encoding` function.
2013-09-11 07:23:08 +00:00
*
2014-07-07 06:19:14 +00:00
* It is safe to recursively call this function, however each
* `mbstring_binary_safe_encoding()` call must be followed up with an equal number
* of `reset_mbstring_encoding()` calls.
2013-09-11 07:23:08 +00:00
*
* @since 3.7.0
*
2014-07-07 06:19:14 +00:00
* @see reset_mbstring_encoding()
*
2015-05-25 16:11:25 +00:00
* @staticvar array $encodings
* @staticvar bool $overloaded
*
2014-07-07 06:19:14 +00:00
* @param bool $reset Optional. Whether to reset the encoding back to a previously-set encoding.
* Default false.
2013-09-11 07:23:08 +00:00
*/
function mbstring_binary_safe_encoding( $reset = false ) {
2017-11-30 23:11:00 +00:00
static $encodings = array();
2013-09-11 07:23:08 +00:00
static $overloaded = null;
2017-11-30 23:11:00 +00:00
if ( is_null( $overloaded ) ) {
2013-09-11 07:23:08 +00:00
$overloaded = function_exists( 'mb_internal_encoding' ) && ( ini_get( 'mbstring.func_overload' ) & 2 );
2017-11-30 23:11:00 +00:00
}
2013-09-11 07:23:08 +00:00
2017-11-30 23:11:00 +00:00
if ( false === $overloaded ) {
2013-09-11 07:23:08 +00:00
return;
2017-11-30 23:11:00 +00:00
}
2013-09-11 07:23:08 +00:00
if ( ! $reset ) {
$encoding = mb_internal_encoding();
array_push( $encodings, $encoding );
mb_internal_encoding( 'ISO-8859-1' );
}
if ( $reset && $encodings ) {
$encoding = array_pop( $encodings );
mb_internal_encoding( $encoding );
}
}
/**
2014-07-07 06:19:14 +00:00
* Reset the mbstring internal encoding to a users previously set encoding.
2013-09-11 07:23:08 +00:00
*
* @see mbstring_binary_safe_encoding()
*
* @since 3.7.0
*/
function reset_mbstring_encoding() {
mbstring_binary_safe_encoding( true );
2013-09-14 14:34:09 +00:00
}
2014-05-22 18:34:15 +00:00
/**
2014-11-03 15:55:23 +00:00
* Filter/validate a variable as a boolean.
*
* Alternative to `filter_var( $var, FILTER_VALIDATE_BOOLEAN )`.
2014-05-22 18:34:15 +00:00
*
* @since 4.0.0
*
2014-07-07 06:19:14 +00:00
* @param mixed $var Boolean value to validate.
* @return bool Whether the value is validated.
2014-05-22 18:34:15 +00:00
*/
function wp_validate_boolean( $var ) {
if ( is_bool( $var ) ) {
return $var;
}
2014-11-03 15:55:23 +00:00
if ( is_string( $var ) && 'false' === strtolower( $var ) ) {
2014-05-22 18:34:15 +00:00
return false;
}
return (bool) $var;
2014-06-10 02:03:14 +00:00
}
2015-02-27 16:51:25 +00:00
/**
* Delete a file
*
* @since 4.2.0
*
* @param string $file The path to the file to delete.
*/
function wp_delete_file( $file ) {
/**
2016-05-22 18:36:27 +00:00
* Filters the path of the file to delete.
2015-02-27 16:51:25 +00:00
*
* @since 2.1.0
*
2016-12-27 09:28:40 +00:00
* @param string $file Path to the file to delete.
2015-02-27 16:51:25 +00:00
*/
$delete = apply_filters( 'wp_delete_file', $file );
if ( ! empty( $delete ) ) {
@unlink( $delete );
}
}
2015-06-16 23:13:26 +00:00
2018-07-05 14:32:25 +00:00
/**
* Deletes a file if its path is within the given directory.
*
* @since 4.9.7
*
* @param string $file Absolute path to the file to delete.
* @param string $directory Absolute path to a directory.
* @return bool True on success, false on failure.
*/
function wp_delete_file_from_directory( $file, $directory ) {
2018-08-17 01:51:36 +00:00
$real_file = realpath( wp_normalize_path( $file ) );
2018-07-05 14:32:25 +00:00
$real_directory = realpath( wp_normalize_path( $directory ) );
if ( false === $real_file || false === $real_directory || strpos( wp_normalize_path( $real_file ), trailingslashit( wp_normalize_path( $real_directory ) ) ) !== 0 ) {
return false;
}
wp_delete_file( $file );
return true;
}
2015-06-16 23:13:26 +00:00
/**
* Outputs a small JS snippet on preview tabs/windows to remove `window.name` on unload.
2015-07-13 21:35:24 +00:00
*
2015-06-16 23:13:26 +00:00
* This prevents reusing the same tab for a preview when the user has navigated away.
*
* @since 4.3.0
2017-06-28 12:55:43 +00:00
*
* @global WP_Post $post
2015-06-16 23:13:26 +00:00
*/
function wp_post_preview_js() {
global $post;
if ( ! is_preview() || empty( $post ) ) {
return;
}
// Has to match the window name used in post_submit_meta_box()
$name = 'wp-preview-' . (int) $post->ID;
?>
<script>
( function() {
var query = document.location.search;
if ( query && query.indexOf( 'preview=true' ) !== -1 ) {
window.name = '<?php echo $name; ?>';
}
if ( window.addEventListener ) {
window.addEventListener( 'unload', function() { window.name = ''; }, false );
}
}());
</script>
<?php
}
2015-10-06 03:19:25 +00:00
/**
2018-06-28 02:45:29 +00:00
* Parses and formats a MySQL datetime (Y-m-d H:i:s) for ISO8601 (Y-m-d\TH:i:s).
2015-10-06 03:19:25 +00:00
*
* Explicitly strips timezones, as datetimes are not saved with any timezone
* information. Including any information on the offset could be misleading.
*
2018-06-28 02:45:29 +00:00
* Despite historical function name, the output does not conform to RFC3339 format,
* which must contain timezone.
*
2015-10-06 03:19:25 +00:00
* @since 4.4.0
*
* @param string $date_string Date string to parse and format.
2018-06-28 02:45:29 +00:00
* @return string Date formatted for ISO8601 without time zone.
2015-10-06 03:19:25 +00:00
*/
function mysql_to_rfc3339( $date_string ) {
2018-06-28 02:45:53 +00:00
return mysql2date( 'Y-m-d\TH:i:s', $date_string, false );
2015-10-06 03:19:25 +00:00
}
2016-07-06 18:09:32 +00:00
2016-07-08 14:37:30 +00:00
/**
* Attempts to raise the PHP memory limit for memory intensive processes.
*
* Only allows raising the existing limit and prevents lowering it.
*
* @since 4.6.0
*
2016-07-20 16:57:32 +00:00
* @param string $context Optional. Context in which the function is called. Accepts either 'admin',
* 'image', or an arbitrary other context. If an arbitrary context is passed,
* the similarly arbitrary {@see '{$context}_memory_limit'} filter will be
* invoked. Default 'admin'.
2016-07-08 14:37:30 +00:00
* @return bool|int|string The limit that was set or false on failure.
*/
function wp_raise_memory_limit( $context = 'admin' ) {
// Exit early if the limit cannot be changed.
if ( false === wp_is_ini_value_changeable( 'memory_limit' ) ) {
return false;
}
$current_limit = @ini_get( 'memory_limit' );
$current_limit_int = wp_convert_hr_to_bytes( $current_limit );
if ( -1 === $current_limit_int ) {
return false;
}
$wp_max_limit = WP_MAX_MEMORY_LIMIT;
$wp_max_limit_int = wp_convert_hr_to_bytes( $wp_max_limit );
$filtered_limit = $wp_max_limit;
switch ( $context ) {
case 'admin':
/**
* Filters the maximum memory limit available for administration screens.
*
2016-07-20 16:57:32 +00:00
* This only applies to administrators, who may require more memory for tasks
* like updates. Memory limits when processing images (uploaded or edited by
* users of any role) are handled separately.
2016-07-08 14:37:30 +00:00
*
2016-07-20 16:57:32 +00:00
* The `WP_MAX_MEMORY_LIMIT` constant specifically defines the maximum memory
* limit available when in the administration back end. The default is 256M
* (256 megabytes of memory) or the original `memory_limit` php.ini value if
* this is higher.
2016-07-08 14:37:30 +00:00
*
* @since 3.0.0
2016-07-20 16:57:32 +00:00
* @since 4.6.0 The default now takes the original `memory_limit` into account.
2016-07-08 14:37:30 +00:00
*
2016-07-20 16:57:32 +00:00
* @param int|string $filtered_limit The maximum WordPress memory limit. Accepts an integer
* (bytes), or a shorthand string notation, such as '256M'.
2016-07-08 14:37:30 +00:00
*/
$filtered_limit = apply_filters( 'admin_memory_limit', $filtered_limit );
break;
case 'image':
/**
* Filters the memory limit allocated for image manipulation.
*
* @since 3.5.0
2016-07-20 16:57:32 +00:00
* @since 4.6.0 The default now takes the original `memory_limit` into account.
2016-07-08 14:37:30 +00:00
*
* @param int|string $filtered_limit Maximum memory limit to allocate for images.
2016-07-20 16:57:32 +00:00
* Default `WP_MAX_MEMORY_LIMIT` or the original
* php.ini `memory_limit`, whichever is higher.
2016-07-08 14:37:30 +00:00
* Accepts an integer (bytes), or a shorthand string
* notation, such as '256M'.
*/
$filtered_limit = apply_filters( 'image_memory_limit', $filtered_limit );
break;
default:
/**
* Filters the memory limit allocated for arbitrary contexts.
*
* The dynamic portion of the hook name, `$context`, refers to an arbitrary
* context passed on calling the function. This allows for plugins to define
* their own contexts for raising the memory limit.
*
* @since 4.6.0
*
* @param int|string $filtered_limit Maximum memory limit to allocate for images.
2016-07-20 16:57:32 +00:00
* Default '256M' or the original php.ini `memory_limit`,
* whichever is higher. Accepts an integer (bytes), or a
* shorthand string notation, such as '256M'.
2016-07-08 14:37:30 +00:00
*/
$filtered_limit = apply_filters( "{$context}_memory_limit", $filtered_limit );
break;
}
$filtered_limit_int = wp_convert_hr_to_bytes( $filtered_limit );
if ( -1 === $filtered_limit_int || ( $filtered_limit_int > $wp_max_limit_int && $filtered_limit_int > $current_limit_int ) ) {
if ( false !== @ini_set( 'memory_limit', $filtered_limit ) ) {
return $filtered_limit;
} else {
return false;
}
} elseif ( -1 === $wp_max_limit_int || $wp_max_limit_int > $current_limit_int ) {
if ( false !== @ini_set( 'memory_limit', $wp_max_limit ) ) {
return $wp_max_limit;
} else {
return false;
}
}
return false;
}
2016-10-18 20:05:31 +00:00
/**
* Generate a random UUID (version 4).
*
* @since 4.7.0
*
* @return string UUID.
*/
function wp_generate_uuid4() {
2017-11-30 23:11:00 +00:00
return sprintf(
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
2018-08-17 01:51:36 +00:00
mt_rand( 0, 0xffff ),
mt_rand( 0, 0xffff ),
2016-10-18 20:05:31 +00:00
mt_rand( 0, 0xffff ),
mt_rand( 0, 0x0fff ) | 0x4000,
mt_rand( 0, 0x3fff ) | 0x8000,
2018-08-17 01:51:36 +00:00
mt_rand( 0, 0xffff ),
mt_rand( 0, 0xffff ),
mt_rand( 0, 0xffff )
2016-10-18 20:05:31 +00:00
);
}
2016-10-21 02:54:34 +00:00
2017-09-18 23:04:44 +00:00
/**
* Validates that a UUID is valid.
*
* @since 4.9.0
*
* @param mixed $uuid UUID to check.
2018-09-24 20:46:26 +00:00
* @param int $version Specify which version of UUID to check against. Default is none,
* to accept any UUID version. Otherwise, only version allowed is `4`.
2017-09-18 23:04:44 +00:00
* @return bool The string is a valid UUID or false on failure.
*/
function wp_is_uuid( $uuid, $version = null ) {
if ( ! is_string( $uuid ) ) {
return false;
}
if ( is_numeric( $version ) ) {
if ( 4 !== (int) $version ) {
_doing_it_wrong( __FUNCTION__, __( 'Only UUID V4 is supported at this time.' ), '4.9.0' );
return false;
}
$regex = '/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/';
} else {
$regex = '/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/';
}
return (bool) preg_match( $regex, $uuid );
}
2018-09-24 20:57:23 +00:00
/**
* Get unique ID.
*
* This is a PHP implementation of Underscore's uniqueId method. A static variable
* contains an integer that is incremented with each call. This number is returned
* with the optional prefix. As such the returned value is not universally unique,
* but it is unique across the life of the PHP process.
*
2019-01-06 19:52:51 +00:00
* @since 5.0.3
2018-09-24 20:57:23 +00:00
*
* @staticvar int $id_counter
*
* @param string $prefix Prefix for the returned ID.
* @return string Unique ID.
*/
function wp_unique_id( $prefix = '' ) {
static $id_counter = 0;
return $prefix . (string) ++$id_counter;
}
2016-10-21 02:54:34 +00:00
/**
* Get last changed date for the specified cache group.
*
* @since 4.7.0
*
2017-01-13 14:16:44 +00:00
* @param string $group Where the cache contents are grouped.
2016-10-21 02:54:34 +00:00
*
* @return string $last_changed UNIX timestamp with microseconds representing when the group was last changed.
*/
function wp_cache_get_last_changed( $group ) {
$last_changed = wp_cache_get( 'last_changed', $group );
if ( ! $last_changed ) {
$last_changed = microtime();
wp_cache_set( 'last_changed', $last_changed, $group );
}
return $last_changed;
2016-10-25 21:26:32 +00:00
}
2017-07-27 02:24:42 +00:00
/**
* Send an email to the old site admin email address when the site admin email address changes.
*
* @since 4.9.0
*
* @param string $old_email The old site admin email address.
* @param string $new_email The new site admin email address.
* @param string $option_name The relevant database option name.
*/
function wp_site_admin_email_change_notification( $old_email, $new_email, $option_name ) {
2018-01-23 13:45:32 +00:00
$send = true;
// Don't send the notification to the default 'admin_email' value.
if ( 'you@example.com' === $old_email ) {
$send = false;
}
2017-07-27 02:24:42 +00:00
/**
* Filters whether to send the site admin email change notification email.
*
* @since 4.9.0
*
* @param bool $send Whether to send the email notification.
* @param string $old_email The old site admin email address.
* @param string $new_email The new site admin email address.
*/
2018-01-23 13:45:32 +00:00
$send = apply_filters( 'send_site_admin_email_change_email', $send, $old_email, $new_email );
2017-07-27 02:24:42 +00:00
if ( ! $send ) {
return;
}
/* translators: Do not translate OLD_EMAIL, NEW_EMAIL, SITENAME, SITEURL: those are placeholders. */
2017-11-30 23:11:00 +00:00
$email_change_text = __(
'Hi,
2017-07-27 02:24:42 +00:00
This notice confirms that the admin email address was changed on ###SITENAME###.
The new admin email address is ###NEW_EMAIL###.
This email has been sent to ###OLD_EMAIL###
Regards,
All at ###SITENAME###
2017-11-30 23:11:00 +00:00
###SITEURL###'
);
2017-07-27 02:24:42 +00:00
$email_change_email = array(
'to' => $old_email,
/* translators: Site admin email change notification email subject. %s: Site title */
2019-04-08 06:17:51 +00:00
'subject' => __( '[%s] Admin Email Changed' ),
2017-07-27 02:24:42 +00:00
'message' => $email_change_text,
'headers' => '',
);
// get site name
$site_name = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
/**
* Filters the contents of the email notification sent when the site admin email address is changed.
*
* @since 4.9.0
*
* @param array $email_change_email {
* Used to build wp_mail().
*
* @type string $to The intended recipient.
* @type string $subject The subject of the email.
* @type string $message The content of the email.
* The following strings have a special meaning and will get replaced dynamically:
* - ###OLD_EMAIL### The old site admin email address.
* - ###NEW_EMAIL### The new site admin email address.
* - ###SITENAME### The name of the site.
* - ###SITEURL### The URL to the site.
* @type string $headers Headers.
* }
* @param string $old_email The old site admin email address.
* @param string $new_email The new site admin email address.
*/
$email_change_email = apply_filters( 'site_admin_email_change_email', $email_change_email, $old_email, $new_email );
$email_change_email['message'] = str_replace( '###OLD_EMAIL###', $old_email, $email_change_email['message'] );
$email_change_email['message'] = str_replace( '###NEW_EMAIL###', $new_email, $email_change_email['message'] );
2017-11-30 23:11:00 +00:00
$email_change_email['message'] = str_replace( '###SITENAME###', $site_name, $email_change_email['message'] );
$email_change_email['message'] = str_replace( '###SITEURL###', home_url(), $email_change_email['message'] );
wp_mail(
2018-08-17 01:51:36 +00:00
$email_change_email['to'],
sprintf(
2017-11-30 23:11:00 +00:00
$email_change_email['subject'],
$site_name
2018-08-17 01:51:36 +00:00
),
$email_change_email['message'],
$email_change_email['headers']
2017-11-30 23:11:00 +00:00
);
2017-07-27 02:24:42 +00:00
}
2018-04-12 21:20:23 +00:00
/**
* Return an anonymized IPv4 or IPv6 address.
*
2018-05-02 00:41:21 +00:00
* @since 4.9.6 Abstracted from `WP_Community_Events::get_unsafe_client_ip()`.
2018-04-12 21:20:23 +00:00
*
* @param string $ip_addr The IPv4 or IPv6 address to be anonymized.
* @param bool $ipv6_fallback Optional. Whether to return the original IPv6 address if the needed functions
* to anonymize it are not present. Default false, return `::` (unspecified address).
* @return string The anonymized IP address.
*/
function wp_privacy_anonymize_ip( $ip_addr, $ipv6_fallback = false ) {
// Detect what kind of IP address this is.
$ip_prefix = '';
$is_ipv6 = substr_count( $ip_addr, ':' ) > 1;
$is_ipv4 = ( 3 === substr_count( $ip_addr, '.' ) );
if ( $is_ipv6 && $is_ipv4 ) {
// IPv6 compatibility mode, temporarily strip the IPv6 part, and treat it like IPv4.
$ip_prefix = '::ffff:';
$ip_addr = preg_replace( '/^\[?[0-9a-f:]*:/i', '', $ip_addr );
$ip_addr = str_replace( ']', '', $ip_addr );
$is_ipv6 = false;
}
if ( $is_ipv6 ) {
// IPv6 addresses will always be enclosed in [] if there's a port.
$left_bracket = strpos( $ip_addr, '[' );
$right_bracket = strpos( $ip_addr, ']' );
$percent = strpos( $ip_addr, '%' );
$netmask = 'ffff:ffff:ffff:ffff:0000:0000:0000:0000';
// Strip the port (and [] from IPv6 addresses), if they exist.
if ( false !== $left_bracket && false !== $right_bracket ) {
$ip_addr = substr( $ip_addr, $left_bracket + 1, $right_bracket - $left_bracket - 1 );
} elseif ( false !== $left_bracket || false !== $right_bracket ) {
// The IP has one bracket, but not both, so it's malformed.
return '::';
}
// Strip the reachability scope.
if ( false !== $percent ) {
$ip_addr = substr( $ip_addr, 0, $percent );
}
// No invalid characters should be left.
if ( preg_match( '/[^0-9a-f:]/i', $ip_addr ) ) {
return '::';
}
// Partially anonymize the IP by reducing it to the corresponding network ID.
if ( function_exists( 'inet_pton' ) && function_exists( 'inet_ntop' ) ) {
$ip_addr = inet_ntop( inet_pton( $ip_addr ) & inet_pton( $netmask ) );
2018-08-17 01:51:36 +00:00
if ( false === $ip_addr ) {
2018-04-12 21:20:23 +00:00
return '::';
}
} elseif ( ! $ipv6_fallback ) {
return '::';
}
} elseif ( $is_ipv4 ) {
// Strip any port and partially anonymize the IP.
$last_octet_position = strrpos( $ip_addr, '.' );
$ip_addr = substr( $ip_addr, 0, $last_octet_position ) . '.0';
} else {
return '0.0.0.0';
}
// Restore the IPv6 prefix to compatibility mode addresses.
return $ip_prefix . $ip_addr;
}
/**
* Return uniform "anonymous" data by type.
*
2018-05-02 00:41:21 +00:00
* @since 4.9.6
2018-04-12 21:20:23 +00:00
*
* @param string $type The type of data to be anonymized.
* @param string $data Optional The data to be anonymized.
* @return string The anonymous data for the requested type.
*/
function wp_privacy_anonymize_data( $type, $data = '' ) {
switch ( $type ) {
case 'email':
$anonymous = 'deleted@site.invalid';
break;
case 'url':
$anonymous = 'https://site.invalid';
break;
case 'ip':
$anonymous = wp_privacy_anonymize_ip( $data );
break;
case 'date':
$anonymous = '0000-00-00 00:00:00';
break;
case 'text':
/* translators: deleted text */
$anonymous = __( '[deleted]' );
break;
case 'longtext':
/* translators: deleted long text */
$anonymous = __( 'This content was deleted by the author.' );
break;
default:
$anonymous = '';
}
/**
* Filters the anonymous data for each type.
*
2018-05-02 00:41:21 +00:00
* @since 4.9.6
2018-04-12 21:20:23 +00:00
*
* @param string $anonymous Anonymized data.
* @param string $type Type of the data.
* @param string $data Original data.
*/
return apply_filters( 'wp_privacy_anonymize_data', $anonymous, $type, $data );
}
2018-04-16 08:53:20 +00:00
2018-05-15 20:22:20 +00:00
/**
* Returns the directory used to store personal data export files.
*
* @since 4.9.6
*
* @see wp_privacy_exports_url
*
* @return string Exports directory.
*/
function wp_privacy_exports_dir() {
$upload_dir = wp_upload_dir();
$exports_dir = trailingslashit( $upload_dir['basedir'] ) . 'wp-personal-data-exports/';
/**
* Filters the directory used to store personal data export files.
*
* @since 4.9.6
*
* @param string $exports_dir Exports directory.
*/
return apply_filters( 'wp_privacy_exports_dir', $exports_dir );
}
/**
* Returns the URL of the directory used to store personal data export files.
*
* @since 4.9.6
*
* @see wp_privacy_exports_dir
*
* @return string Exports directory URL.
*/
function wp_privacy_exports_url() {
$upload_dir = wp_upload_dir();
$exports_url = trailingslashit( $upload_dir['baseurl'] ) . 'wp-personal-data-exports/';
/**
* Filters the URL of the directory used to store personal data export files.
*
* @since 4.9.6
*
* @param string $exports_url Exports directory URL.
*/
return apply_filters( 'wp_privacy_exports_url', $exports_url );
}
2018-04-30 20:09:23 +00:00
/**
* Schedule a `WP_Cron` job to delete expired export files.
*
* @since 4.9.6
*/
function wp_schedule_delete_old_privacy_export_files() {
2018-05-03 21:11:21 +00:00
if ( wp_installing() ) {
return;
}
2018-04-30 20:09:23 +00:00
if ( ! wp_next_scheduled( 'wp_privacy_delete_old_export_files' ) ) {
wp_schedule_event( time(), 'hourly', 'wp_privacy_delete_old_export_files' );
}
}
/**
* Cleans up export files older than three days old.
*
* The export files are stored in `wp-content/uploads`, and are therefore publicly
* accessible. A CSPRN is appended to the filename to mitigate the risk of an
* unauthorized person downloading the file, but it is still possible. Deleting
* the file after the data subject has had a chance to delete it adds an additional
* layer of protection.
*
* @since 4.9.6
*/
function wp_privacy_delete_old_export_files() {
2019-03-15 19:00:51 +00:00
$exports_dir = wp_privacy_exports_dir();
if ( ! is_dir( $exports_dir ) ) {
return;
}
2018-05-01 17:43:22 +00:00
2019-03-15 19:00:51 +00:00
require_once( ABSPATH . 'wp-admin/includes/file.php' );
2018-04-30 20:09:23 +00:00
$export_files = list_files( $exports_dir, 100, array( 'index.html' ) );
/**
* Filters the lifetime, in seconds, of a personal data export file.
*
* By default, the lifetime is 3 days. Once the file reaches that age, it will automatically
* be deleted by a cron job.
*
* @since 4.9.6
*
* @param int $expiration The expiration age of the export, in seconds.
*/
$expiration = apply_filters( 'wp_privacy_export_expiration', 3 * DAY_IN_SECONDS );
foreach ( (array) $export_files as $export_file ) {
$file_age_in_seconds = time() - filemtime( $export_file );
if ( $expiration < $file_age_in_seconds ) {
unlink( $export_file );
}
}
}
2019-01-08 17:27:50 +00:00
/**
* Gets the URL to learn more about updating the PHP version the site is running on.
*
* This URL can be overridden by specifying an environment variable `WP_UPDATE_PHP_URL` or by using the
* {@see 'wp_update_php_url'} filter. Providing an empty string is not allowed and will result in the
* default URL being used. Furthermore the page the URL links to should preferably be localized in the
* site language.
*
* @since 5.1.0
*
* @return string URL to learn more about updating PHP.
*/
function wp_get_update_php_url() {
$default_url = wp_get_default_update_php_url();
$update_url = $default_url;
if ( false !== getenv( 'WP_UPDATE_PHP_URL' ) ) {
$update_url = getenv( 'WP_UPDATE_PHP_URL' );
}
/**
* Filters the URL to learn more about updating the PHP version the site is running on.
*
* Providing an empty string is not allowed and will result in the default URL being used. Furthermore
* the page the URL links to should preferably be localized in the site language.
*
* @since 5.1.0
*
* @param string $update_url URL to learn more about updating PHP.
*/
$update_url = apply_filters( 'wp_update_php_url', $update_url );
if ( empty( $update_url ) ) {
$update_url = $default_url;
}
return $update_url;
}
/**
* Gets the default URL to learn more about updating the PHP version the site is running on.
*
* Do not use this function to retrieve this URL. Instead, use {@see wp_get_update_php_url()} when relying on the URL.
* This function does not allow modifying the returned URL, and is only used to compare the actually used URL with the
* default one.
*
* @since 5.1.0
* @access private
*
* @return string Default URL to learn more about updating PHP.
*/
function wp_get_default_update_php_url() {
return _x( 'https://wordpress.org/support/update-php/', 'localized PHP upgrade information page' );
}
2019-01-16 17:07:00 +00:00
/**
* Prints the default annotation for the web host altering the "Update PHP" page URL.
*
* This function is to be used after {@see wp_get_update_php_url()} to display a consistent
* annotation if the web host has altered the default "Update PHP" page URL.
*
* @since 5.1.0
2019-03-19 16:54:52 +00:00
* @since 5.2.0 Added the `$before` and `$after` parameters.
*
* @param string $before Markup to output before the annotation. Default `<p class="description">`.
* @param string $after Markup to output after the annotation. Default `</p>`.
2019-01-16 17:07:00 +00:00
*/
2019-03-19 16:54:52 +00:00
function wp_update_php_annotation( $before = '<p class="description">', $after = '</p>' ) {
$annotation = wp_get_update_php_annotation();
2019-03-27 22:37:51 +00:00
if ( $annotation ) {
echo $before . $annotation . $after;
}
2019-03-19 16:54:52 +00:00
}
/**
* Returns the default annotation for the web hosting altering the "Update PHP" page URL.
*
* This function is to be used after {@see wp_get_update_php_url()} to return a consistent
* annotation if the web host has altered the default "Update PHP" page URL.
*
* @since 5.2.0
*
* @return string $message Update PHP page annotation. An empty string if no custom URLs are provided.
*/
function wp_get_update_php_annotation() {
2019-01-16 17:07:00 +00:00
$update_url = wp_get_update_php_url();
$default_url = wp_get_default_update_php_url();
if ( $update_url === $default_url ) {
2019-03-19 16:54:52 +00:00
return '';
2019-01-16 17:07:00 +00:00
}
2019-03-19 16:54:52 +00:00
$annotation = sprintf(
2019-01-16 17:07:00 +00:00
/* translators: %s: default Update PHP page URL */
__( 'This resource is provided by your web host, and is specific to your site. For more information, <a href="%s" target="_blank">see the official WordPress documentation</a>.' ),
esc_url( $default_url )
);
2019-03-19 16:54:52 +00:00
return $annotation;
2019-01-16 17:07:00 +00:00
}
2019-03-07 21:32:50 +00:00
/**
* Gets the URL for directly updating the PHP version the site is running on.
*
* A URL will only be returned if the `WP_DIRECT_UPDATE_PHP_URL` environment variable is specified or
* by using the {@see 'wp_direct_php_update_url'} filter. This allows hosts to send users directly to
* the page where they can update PHP to a newer version.
*
2019-03-11 12:59:50 +00:00
* @since 5.1.1
*
2019-03-07 21:32:50 +00:00
* @return string URL for directly updating PHP or empty string.
*/
function wp_get_direct_php_update_url() {
$direct_update_url = '';
if ( false !== getenv( 'WP_DIRECT_UPDATE_PHP_URL' ) ) {
$direct_update_url = getenv( 'WP_DIRECT_UPDATE_PHP_URL' );
}
/**
* Filters the URL for directly updating the PHP version the site is running on from the host.
*
* @since 5.1.1
*
* @param string $direct_update_url URL for directly updating PHP.
*/
$direct_update_url = apply_filters( 'wp_direct_php_update_url', $direct_update_url );
return $direct_update_url;
}
/**
* Display a button directly linking to a PHP update process.
*
* This provides hosts with a way for users to be sent directly to their PHP update process.
*
* The button is only displayed if a URL is returned by `wp_get_direct_php_update_url()`.
*
* @since 5.1.1
*/
function wp_direct_php_update_button() {
$direct_update_url = wp_get_direct_php_update_url();
if ( empty( $direct_update_url ) ) {
return;
}
echo '<p class="button-container">';
printf(
'<a class="button button-primary" href="%1$s" target="_blank" rel="noopener noreferrer">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
esc_url( $direct_update_url ),
__( 'Update PHP' ),
/* translators: accessibility text */
__( '(opens in a new tab)' )
);
echo '</p>';
}
2019-04-02 23:33:53 +00:00
/**
* Get the size of a directory.
*
* A helper function that is used primarily to check whether
* a blog has exceeded its allowed upload space.
*
* @since MU (3.0.0)
2019-04-04 21:54:53 +00:00
* @since 5.2.0 $max_execution_time parameter added.
2019-04-02 23:33:53 +00:00
*
* @param string $directory Full path of a directory.
* @param int $max_execution_time Maximum time to run before giving up. In seconds.
* The timeout is global and is measured from the moment WordPress started to load.
* @return int|false|null Size in MB if a valid directory. False if not. Null if timeout.
*/
function get_dirsize( $directory, $max_execution_time = null ) {
$dirsize = get_transient( 'dirsize_cache' );
if ( is_array( $dirsize ) && isset( $dirsize[ $directory ]['size'] ) ) {
return $dirsize[ $directory ]['size'];
}
if ( ! is_array( $dirsize ) ) {
$dirsize = array();
}
// Exclude individual site directories from the total when checking the main site of a network
// as they are subdirectories and should not be counted.
if ( is_multisite() && is_main_site() ) {
$dirsize[ $directory ]['size'] = recurse_dirsize( $directory, $directory . '/sites', $max_execution_time );
} else {
$dirsize[ $directory ]['size'] = recurse_dirsize( $directory, null, $max_execution_time );
}
set_transient( 'dirsize_cache', $dirsize, HOUR_IN_SECONDS );
return $dirsize[ $directory ]['size'];
}
/**
* Get the size of a directory recursively.
*
* Used by get_dirsize() to get a directory's size when it contains
* other directories.
*
* @since MU (3.0.0)
* @since 4.3.0 $exclude parameter added.
2019-04-04 21:54:53 +00:00
* @since 5.2.0 $max_execution_time parameter added.
2019-04-02 23:33:53 +00:00
*
* @param string $directory Full path of a directory.
* @param string $exclude Optional. Full path of a subdirectory to exclude from the total.
* @param int $max_execution_time Maximum time to run before giving up. In seconds.
* The timeout is global and is measured from the moment WordPress started to load.
* @return int|false|null Size in MB if a valid directory. False if not. Null if timeout.
*/
function recurse_dirsize( $directory, $exclude = null, $max_execution_time = null ) {
$size = 0;
$directory = untrailingslashit( $directory );
if ( ! file_exists( $directory ) || ! is_dir( $directory ) || ! is_readable( $directory ) || $directory === $exclude ) {
return false;
}
2019-04-04 21:54:53 +00:00
if ( $max_execution_time === null ) {
// Keep the previous behavior but attempt to prevent fatal errors from timeout if possible.
2019-04-02 23:33:53 +00:00
if ( function_exists( 'ini_get' ) ) {
$max_execution_time = ini_get( 'max_execution_time' );
} else {
2019-04-04 21:54:53 +00:00
// Disable...
$max_execution_time = 0;
2019-04-02 23:33:53 +00:00
}
// Leave 1 second "buffer" for other operations if $max_execution_time has reasonable value.
if ( $max_execution_time > 10 ) {
$max_execution_time -= 1;
}
}
if ( $handle = opendir( $directory ) ) {
while ( ( $file = readdir( $handle ) ) !== false ) {
$path = $directory . '/' . $file;
if ( $file != '.' && $file != '..' ) {
if ( is_file( $path ) ) {
$size += filesize( $path );
} elseif ( is_dir( $path ) ) {
$handlesize = recurse_dirsize( $path, $exclude, $max_execution_time );
if ( $handlesize > 0 ) {
$size += $handlesize;
}
}
2019-04-04 21:54:53 +00:00
if ( $max_execution_time > 0 && microtime( true ) - WP_START_TIMESTAMP > $max_execution_time ) {
2019-04-02 23:33:53 +00:00
// Time exceeded. Give up instead of risking a fatal timeout.
$size = null;
break;
}
}
}
closedir( $handle );
}
return $size;
}