2003-04-21 23:37:11 +02:00
< ? php
2007-10-11 07:46:57 +02:00
function mysql2date ( $dateformatstring , $mysqlstring , $translate = true ) {
2006-04-02 02:20:11 +02:00
global $wp_locale ;
2003-04-21 23:37:11 +02:00
$m = $mysqlstring ;
2007-10-11 07:46:57 +02:00
if ( empty ( $m ) )
2003-04-21 23:37:11 +02:00
return false ;
2008-03-02 21:17:30 +01:00
2008-02-23 23:11:47 +01:00
if ( 'G' == $dateformatstring ) {
return gmmktime (
( int ) substr ( $m , 11 , 2 ), ( int ) substr ( $m , 14 , 2 ), ( int ) substr ( $m , 17 , 2 ),
( int ) substr ( $m , 5 , 2 ), ( int ) substr ( $m , 8 , 2 ), ( int ) substr ( $m , 0 , 4 )
);
}
2008-03-02 21:17:30 +01:00
2007-09-04 01:32:58 +02:00
$i = mktime (
( int ) substr ( $m , 11 , 2 ), ( int ) substr ( $m , 14 , 2 ), ( int ) substr ( $m , 17 , 2 ),
( int ) substr ( $m , 5 , 2 ), ( int ) substr ( $m , 8 , 2 ), ( int ) substr ( $m , 0 , 4 )
2007-04-19 04:49:19 +02:00
);
2006-02-12 08:53:23 +01:00
2006-03-07 22:24:49 +01:00
if ( 'U' == $dateformatstring )
return $i ;
2006-11-19 08:56:05 +01:00
2005-12-25 22:42:07 +01:00
if ( - 1 == $i || false == $i )
$i = 0 ;
2007-10-11 07:46:57 +02:00
if ( ! empty ( $wp_locale -> month ) && ! empty ( $wp_locale -> weekday ) && $translate ) {
$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 ) );
$datemeridiem_capital = $wp_locale -> get_meridiem ( date ( 'A' , $i ) );
$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 );
$dateformatstring = substr ( $dateformatstring , 1 , strlen ( $dateformatstring ) - 1 );
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
$j = @ date ( $dateformatstring , $i );
/*
if ( ! $j ) // for debug purposes
echo $i . " " . $mysqlstring ;
*/
2003-04-21 23:37:11 +02:00
return $j ;
}
2007-10-11 07:46:57 +02:00
function current_time ( $type , $gmt = 0 ) {
switch ( $type ) {
2003-11-15 09:58:18 +01:00
case 'mysql' :
2007-10-11 07:46:57 +02:00
return ( $gmt ) ? gmdate ( 'Y-m-d H:i:s' ) : gmdate ( 'Y-m-d H:i:s' , ( time () + ( get_option ( 'gmt_offset' ) * 3600 ) ) );
2003-11-15 09:58:18 +01:00
break ;
case 'timestamp' :
2007-10-11 07:46:57 +02:00
return ( $gmt ) ? time () : time () + ( get_option ( 'gmt_offset' ) * 3600 );
2003-11-15 09:58:18 +01:00
break ;
}
}
2007-10-11 07:46:57 +02:00
function date_i18n ( $dateformatstring , $unixtimestamp ) {
2006-04-02 02:20:11 +02:00
global $wp_locale ;
2005-10-10 11:25:38 +02:00
$i = $unixtimestamp ;
2007-10-11 07:46:57 +02: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 ) );
$datemeridiem_capital = $wp_locale -> get_meridiem ( date ( 'A' , $i ) );
2003-04-21 23:37:11 +02:00
$dateformatstring = ' ' . $dateformatstring ;
2007-10-11 07:46:57 +02:00
$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 );
$dateformatstring = substr ( $dateformatstring , 1 , strlen ( $dateformatstring ) - 1 );
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
$j = @ date ( $dateformatstring , $i );
2003-04-21 23:37:11 +02:00
return $j ;
2006-04-02 02:20:11 +02:00
}
2003-04-21 23:37:11 +02:00
2007-10-11 07:46:57 +02:00
function number_format_i18n ( $number , $decimals = null ) {
2007-04-25 02:49:57 +02:00
global $wp_locale ;
// let the user override the precision only
2007-10-11 07:46:57 +02:00
$decimals = ( is_null ( $decimals ) ) ? $wp_locale -> number_format [ 'decimals' ] : intval ( $decimals );
2007-04-25 02:49:57 +02:00
2007-10-11 07:46:57 +02:00
return number_format ( $number , $decimals , $wp_locale -> number_format [ 'decimal_point' ], $wp_locale -> number_format [ 'thousands_sep' ] );
2007-04-25 02:49:57 +02:00
}
2007-10-11 07:46:57 +02:00
function size_format ( $bytes , $decimals = null ) {
2007-07-15 19:52:50 +02:00
// technically the correct unit names for powers of 1024 are KiB, MiB etc
// see http://en.wikipedia.org/wiki/Byte
$quant = array (
2007-10-11 07:46:57 +02:00
// ========================= Origin ====
'TB' => 1099511627776 , // pow( 1024, 4)
'GB' => 1073741824 , // pow( 1024, 3)
'MB' => 1048576 , // pow( 1024, 2)
'kB' => 1024 , // pow( 1024, 1)
'B ' => 1 , // pow( 1024, 0)
2007-07-15 19:52:50 +02:00
);
2007-10-11 07:46:57 +02:00
foreach ( $quant as $unit => $mag )
2008-01-28 05:55:54 +01:00
if ( doubleval ( $bytes ) >= $mag )
2007-10-11 07:46:57 +02:00
return number_format_i18n ( $bytes / $mag , $decimals ) . ' ' . $unit ;
2008-01-28 05:55:54 +01:00
return false ;
2007-07-15 19:52:50 +02:00
}
2007-10-11 07:46:57 +02:00
2007-12-06 20:49:33 +01:00
function get_weekstartend ( $mysqlstring , $start_of_week = '' ) {
2007-10-11 07:46:57 +02:00
$my = substr ( $mysqlstring , 0 , 4 );
$mm = substr ( $mysqlstring , 8 , 2 );
$md = substr ( $mysqlstring , 5 , 2 );
$day = mktime ( 0 , 0 , 0 , $md , $mm , $my );
$weekday = date ( 'w' , $day );
2003-04-21 23:37:11 +02:00
$i = 86400 ;
2008-01-04 20:36:34 +01:00
if ( ! is_numeric ( $start_of_week ) )
2007-12-06 20:49:33 +01:00
$start_of_week = get_option ( 'start_of_week' );
2005-04-10 22:07:46 +02:00
2007-12-06 20:49:33 +01:00
if ( $weekday < $start_of_week )
$weekday = 7 - $start_of_week - $weekday ;
2005-04-10 22:07:46 +02:00
2007-12-06 20:49:33 +01:00
while ( $weekday > $start_of_week ) {
2007-10-11 07:46:57 +02:00
$weekday = date ( 'w' , $day );
2007-12-06 20:49:33 +01:00
if ( $weekday < $start_of_week )
$weekday = 7 - $start_of_week - $weekday ;
2005-04-10 22:07:46 +02:00
2007-12-06 20:49:33 +01:00
$day -= 86400 ;
2003-04-21 23:37:11 +02:00
$i = 0 ;
}
$week [ 'start' ] = $day + 86400 - $i ;
2005-04-10 22:07:46 +02:00
$week [ 'end' ] = $week [ 'start' ] + 604799 ;
2003-06-07 19:19:38 +02:00
return $week ;
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
function maybe_unserialize ( $original ) {
if ( is_serialized ( $original ) ) // don't attempt to unserialize data that wasn't serialized going in
if ( false !== $gm = @ unserialize ( $original ) )
2006-10-13 01:54:36 +02:00
return $gm ;
return $original ;
}
2007-10-11 07:46:57 +02:00
function is_serialized ( $data ) {
2006-10-31 09:24:09 +01:00
// if it isn't a string, it isn't serialized
2007-10-11 07:46:57 +02:00
if ( ! is_string ( $data ) )
2006-10-13 01:54:36 +02:00
return false ;
2007-10-11 07:46:57 +02:00
$data = trim ( $data );
2006-10-31 09:24:09 +01:00
if ( 'N;' == $data )
2006-10-13 01:54:36 +02:00
return true ;
2007-10-11 07:46:57 +02:00
if ( ! preg_match ( '/^([adObis]):/' , $data , $badions ) )
2006-10-31 09:24:09 +01:00
return false ;
2007-10-11 07:46:57 +02:00
switch ( $badions [ 1 ] ) {
case 'a' :
case 'O' :
case 's' :
if ( preg_match ( " /^ { $badions [ 1 ] } :[0-9]+:.*[;}] \$ /s " , $data ) )
return true ;
break ;
case 'b' :
case 'i' :
case 'd' :
if ( preg_match ( " /^ { $badions [ 1 ] } :[0-9.E-]+; \$ / " , $data ) )
return true ;
break ;
}
2006-10-13 01:54:36 +02:00
return false ;
}
2007-10-11 07:46:57 +02:00
function is_serialized_string ( $data ) {
2006-10-31 09:24:09 +01:00
// if it isn't a string, it isn't a serialized string
2007-10-11 07:46:57 +02:00
if ( ! is_string ( $data ) )
2006-10-13 01:54:36 +02:00
return false ;
2007-10-11 07:46:57 +02:00
$data = trim ( $data );
if ( preg_match ( '/^s:[0-9]+:.*;$/s' , $data ) ) // this should fetch all serialized strings
2006-10-13 01:54:36 +02:00
return true ;
return false ;
2005-11-29 08:58:50 +01:00
}
2007-10-11 07:46:57 +02:00
2003-10-26 02:19:23 +02:00
/* Options functions */
2007-08-01 21:14:10 +02:00
// expects $setting to already be SQL-escaped
2007-10-11 07:46:57 +02:00
function get_option ( $setting ) {
2005-11-09 22:30:40 +01:00
global $wpdb ;
2004-02-17 05:56:29 +01:00
2007-01-30 19:34:18 +01:00
// Allow plugins to short-circuit options.
2007-09-04 01:32:58 +02:00
$pre = apply_filters ( 'pre_option_' . $setting , false );
if ( false !== $pre )
return $pre ;
2007-01-30 19:34:18 +01:00
2007-02-01 09:53:08 +01:00
// prevent non-existent options from triggering multiple queries
2007-10-11 07:46:57 +02:00
$notoptions = wp_cache_get ( 'notoptions' , 'options' );
if ( isset ( $notoptions [ $setting ] ) )
2007-02-01 09:53:08 +01:00
return false ;
$alloptions = wp_load_alloptions ();
2007-10-11 07:46:57 +02:00
if ( isset ( $alloptions [ $setting ] ) ) {
2007-02-01 09:53:08 +01:00
$value = $alloptions [ $setting ];
} else {
2007-10-11 07:46:57 +02:00
$value = wp_cache_get ( $setting , 'options' );
2007-02-01 09:53:08 +01:00
if ( false === $value ) {
2007-10-11 07:46:57 +02:00
if ( defined ( 'WP_INSTALLING' ) )
2007-12-16 22:38:24 +01:00
$show = $wpdb -> hide_errors ();
2007-10-02 20:45:47 +02:00
// expected_slashed ($setting)
2007-10-11 07:46:57 +02:00
$row = $wpdb -> get_row ( " SELECT option_value FROM $wpdb->options WHERE option_name = ' $setting ' LIMIT 1 " );
if ( defined ( 'WP_INSTALLING' ) )
2007-12-16 22:38:24 +01:00
$wpdb -> show_errors ( $show );
2007-02-01 09:53:08 +01:00
2007-10-11 07:46:57 +02:00
if ( is_object ( $row ) ) { // Has to be get_row instead of get_var because of funkiness with 0, false, null values
2007-02-01 09:53:08 +01:00
$value = $row -> option_value ;
2007-10-11 07:46:57 +02:00
wp_cache_add ( $setting , $value , 'options' );
2007-02-01 09:53:08 +01:00
} else { // option does not exist, so we must cache its non-existence
$notoptions [ $setting ] = true ;
2007-10-11 07:46:57 +02:00
wp_cache_set ( 'notoptions' , $notoptions , 'options' );
2007-02-01 09:53:08 +01:00
return false ;
}
2005-11-14 10:08:27 +01:00
}
2005-11-09 22:30:40 +01:00
}
2004-09-29 22:33:05 +02:00
2005-11-09 22:30:40 +01:00
// If home is not set use siteurl.
if ( 'home' == $setting && '' == $value )
2007-10-11 07:46:57 +02:00
return get_option ( 'siteurl' );
2004-09-29 22:33:05 +02:00
2007-10-11 07:46:57 +02:00
if ( in_array ( $setting , array ( 'siteurl' , 'home' , 'category_base' , 'tag_base' ) ) )
$value = untrailingslashit ( $value );
2004-11-28 20:53:11 +01:00
2007-10-11 07:46:57 +02:00
return apply_filters ( 'option_' . $setting , maybe_unserialize ( $value ) );
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
function wp_protect_special_option ( $option ) {
$protected = array ( 'alloptions' , 'notoptions' );
if ( in_array ( $option , $protected ) )
die ( sprintf ( __ ( '%s is a protected WP option and may not be modified' ), wp_specialchars ( $option ) ) );
2007-02-01 09:53:08 +01:00
}
2007-10-11 07:46:57 +02:00
function form_option ( $option ) {
echo attribute_escape ( get_option ( $option ) );
2004-09-05 02:24:28 +02:00
}
2003-06-13 00:45:08 +02:00
function get_alloptions () {
2004-10-08 21:49:58 +02:00
global $wpdb , $wp_queries ;
2007-12-16 22:38:24 +01:00
$show = $wpdb -> hide_errors ();
2007-10-11 07:46:57 +02:00
if ( ! $options = $wpdb -> get_results ( " SELECT option_name, option_value FROM $wpdb->options WHERE autoload = 'yes' " ) )
$options = $wpdb -> get_results ( " SELECT option_name, option_value FROM $wpdb->options " );
2007-12-16 22:38:24 +01:00
$wpdb -> show_errors ( $show );
2004-10-08 21:49:58 +02:00
2007-10-11 07:46:57 +02:00
foreach ( $options as $option ) {
2005-10-10 11:25:38 +02:00
// "When trying to design a foolproof system,
2004-10-08 21:49:58 +02:00
// never underestimate the ingenuity of the fools :)" -- Dougal
2007-10-11 07:46:57 +02:00
if ( in_array ( $option -> option_name , array ( 'siteurl' , 'home' , 'category_base' ) ) )
$option -> option_value = untrailingslashit ( $option -> option_value );
$value = maybe_unserialize ( $option -> option_value );
$all_options -> { $option -> option_name } = apply_filters ( 'pre_option_' . $option -> option_name , $value );
2004-02-17 05:56:29 +01:00
}
2007-10-11 07:46:57 +02:00
return apply_filters ( 'all_options' , $all_options );
2003-06-13 00:45:08 +02:00
}
2003-10-26 02:19:23 +02:00
2007-10-11 07:46:57 +02:00
2007-02-01 09:53:08 +01:00
function wp_load_alloptions () {
global $wpdb ;
2007-10-11 07:46:57 +02:00
$alloptions = wp_cache_get ( 'alloptions' , 'options' );
2007-02-01 09:53:08 +01:00
if ( ! $alloptions ) {
2007-12-16 22:38:24 +01:00
$show = $wpdb -> hide_errors ();
2007-10-11 07:46:57 +02:00
if ( ! $alloptions_db = $wpdb -> get_results ( " SELECT option_name, option_value FROM $wpdb->options WHERE autoload = 'yes' " ) )
$alloptions_db = $wpdb -> get_results ( " SELECT option_name, option_value FROM $wpdb->options " );
2007-12-16 22:38:24 +01:00
$wpdb -> show_errors ( $show );
2007-02-01 09:53:08 +01:00
$alloptions = array ();
foreach ( ( array ) $alloptions_db as $o )
$alloptions [ $o -> option_name ] = $o -> option_value ;
2007-10-11 07:46:57 +02:00
wp_cache_add ( 'alloptions' , $alloptions , 'options' );
2007-02-01 09:53:08 +01:00
}
return $alloptions ;
}
2007-10-11 07:46:57 +02:00
2007-08-01 21:14:10 +02:00
// expects $option_name to NOT be SQL-escaped
2007-10-11 07:46:57 +02:00
function update_option ( $option_name , $newvalue ) {
2005-11-09 22:30:40 +01:00
global $wpdb ;
2004-07-23 11:14:30 +02:00
2007-10-11 07:46:57 +02:00
wp_protect_special_option ( $option_name );
2007-02-01 09:53:08 +01:00
2007-10-11 07:46:57 +02:00
$safe_option_name = $wpdb -> escape ( $option_name );
$newvalue = sanitize_option ( $option_name , $newvalue );
2007-05-25 04:22:30 +02:00
2005-07-16 23:13:14 +02:00
// If the new and old values are the same, no need to update.
2007-10-11 07:46:57 +02:00
$oldvalue = get_option ( $safe_option_name );
if ( $newvalue === $oldvalue )
2005-11-12 10:36:20 +01:00
return false ;
2005-07-16 23:13:14 +02:00
2006-01-09 23:24:57 +01:00
if ( false === $oldvalue ) {
2007-10-11 07:46:57 +02:00
add_option ( $option_name , $newvalue );
2006-01-09 23:24:57 +01:00
return true ;
2005-11-11 03:24:09 +01:00
}
2007-10-11 07:46:57 +02:00
$notoptions = wp_cache_get ( 'notoptions' , 'options' );
if ( is_array ( $notoptions ) && isset ( $notoptions [ $option_name ] ) ) {
unset ( $notoptions [ $option_name ] );
wp_cache_set ( 'notoptions' , $notoptions , 'options' );
2007-02-01 09:53:08 +01:00
}
2006-03-25 22:46:53 +01:00
$_newvalue = $newvalue ;
2007-10-11 07:46:57 +02:00
$newvalue = maybe_serialize ( $newvalue );
2004-06-24 03:00:31 +02:00
2007-02-01 09:53:08 +01:00
$alloptions = wp_load_alloptions ();
2007-10-11 07:46:57 +02:00
if ( isset ( $alloptions [ $option_name ] ) ) {
2007-02-03 01:56:23 +01:00
$alloptions [ $option_name ] = $newvalue ;
2007-10-11 07:46:57 +02:00
wp_cache_set ( 'alloptions' , $alloptions , 'options' );
2007-02-01 09:53:08 +01:00
} else {
2007-10-11 07:46:57 +02:00
wp_cache_set ( $option_name , $newvalue , 'options' );
2007-02-01 09:53:08 +01:00
}
2005-11-07 22:56:03 +01:00
2007-10-11 07:46:57 +02:00
$wpdb -> query ( $wpdb -> prepare ( " UPDATE $wpdb->options SET option_value = %s WHERE option_name = %s " , $newvalue , $option_name ) );
2006-01-25 07:46:21 +01:00
if ( $wpdb -> rows_affected == 1 ) {
2007-10-11 07:46:57 +02:00
do_action ( " update_option_ { $option_name } " , $oldvalue , $_newvalue );
2006-01-25 07:46:21 +01:00
return true ;
}
return false ;
2003-10-26 02:19:23 +02:00
}
2007-10-11 07:46:57 +02:00
2004-04-16 23:17:09 +02:00
// thx Alex Stapleton, http://alex.vort-x.net/blog/
2007-08-01 21:14:10 +02:00
// expects $name to NOT be SQL-escaped
2007-10-11 07:46:57 +02:00
function add_option ( $name , $value = '' , $deprecated = '' , $autoload = 'yes' ) {
2005-11-09 22:30:40 +01:00
global $wpdb ;
2005-09-08 23:08:48 +02:00
2007-10-11 07:46:57 +02:00
wp_protect_special_option ( $name );
$safe_name = $wpdb -> escape ( $name );
2007-02-01 09:53:08 +01:00
2007-07-07 06:06:29 +02:00
// Make sure the option doesn't already exist. We can check the 'notoptions' cache before we ask for a db query
2007-10-11 07:46:57 +02:00
$notoptions = wp_cache_get ( 'notoptions' , 'options' );
if ( ! is_array ( $notoptions ) || ! isset ( $notoptions [ $name ] ) )
if ( false !== get_option ( $safe_name ) )
2007-02-01 09:53:08 +01:00
return ;
2005-09-08 23:08:48 +02:00
2007-10-11 07:46:57 +02:00
$value = maybe_serialize ( $value );
2007-06-12 22:57:58 +02:00
$autoload = ( 'no' === $autoload ) ? 'no' : 'yes' ;
2004-07-23 11:14:30 +02:00
2007-02-01 09:53:08 +01:00
if ( 'yes' == $autoload ) {
$alloptions = wp_load_alloptions ();
$alloptions [ $name ] = $value ;
2007-10-11 07:46:57 +02:00
wp_cache_set ( 'alloptions' , $alloptions , 'options' );
2007-02-01 09:53:08 +01:00
} else {
2007-10-11 07:46:57 +02:00
wp_cache_set ( $name , $value , 'options' );
2007-02-01 09:53:08 +01:00
}
2005-11-09 22:30:40 +01:00
2007-07-07 06:06:29 +02:00
// This option exists now
2007-10-11 07:46:57 +02:00
$notoptions = wp_cache_get ( 'notoptions' , 'options' ); // yes, again... we need it to be fresh
if ( is_array ( $notoptions ) && isset ( $notoptions [ $name ] ) ) {
unset ( $notoptions [ $name ] );
wp_cache_set ( 'notoptions' , $notoptions , 'options' );
2007-07-07 06:06:29 +02:00
}
2007-10-11 07:46:57 +02:00
$wpdb -> query ( $wpdb -> prepare ( " INSERT INTO $wpdb->options (option_name, option_value, autoload) VALUES (%s, %s, %s) " , $name , $value , $autoload ) );
2004-04-16 23:17:09 +02:00
return ;
2003-10-26 02:19:23 +02:00
}
2007-10-11 07:46:57 +02:00
function delete_option ( $name ) {
2004-05-24 10:22:18 +02:00
global $wpdb ;
2007-02-01 09:53:08 +01:00
2007-10-11 07:46:57 +02:00
wp_protect_special_option ( $name );
2007-02-01 09:53:08 +01:00
2004-04-24 23:21:19 +02:00
// Get the ID, if no ID then return
2007-10-02 20:45:47 +02:00
// expected_slashed ($name)
2007-10-11 07:46:57 +02:00
$option = $wpdb -> get_row ( " SELECT option_id, autoload FROM $wpdb->options WHERE option_name = ' $name ' " );
2008-02-22 18:43:56 +01:00
if ( is_null ( $option ) || ! $option -> option_id )
2007-10-11 07:46:57 +02:00
return false ;
2007-10-02 20:45:47 +02:00
// expected_slashed ($name)
2007-10-11 07:46:57 +02:00
$wpdb -> query ( " DELETE FROM $wpdb->options WHERE option_name = ' $name ' " );
2007-02-01 09:53:08 +01:00
if ( 'yes' == $option -> autoload ) {
$alloptions = wp_load_alloptions ();
2007-10-11 07:46:57 +02:00
if ( isset ( $alloptions [ $name ] ) ) {
unset ( $alloptions [ $name ] );
wp_cache_set ( 'alloptions' , $alloptions , 'options' );
2007-02-01 09:53:08 +01:00
}
} else {
2007-10-11 07:46:57 +02:00
wp_cache_delete ( $name , 'options' );
2007-02-01 09:53:08 +01:00
}
2004-04-24 23:21:19 +02:00
return true ;
}
2007-10-11 07:46:57 +02:00
function maybe_serialize ( $data ) {
if ( is_string ( $data ) )
$data = trim ( $data );
elseif ( is_array ( $data ) || is_object ( $data ) )
return serialize ( $data );
if ( is_serialized ( $data ) )
return serialize ( $data );
2006-10-13 01:54:36 +02:00
return $data ;
}
2004-06-10 12:01:45 +02:00
2007-10-11 07:46:57 +02:00
function make_url_footnote ( $content ) {
preg_match_all ( '/<a(.+?)href=\"(.+?)\"(.*?)>(.+?)<\/a>/' , $content , $matches );
2003-04-21 23:37:11 +02:00
$j = 0 ;
2007-10-11 07:46:57 +02:00
for ( $i = 0 ; $i < count ( $matches [ 0 ]); $i ++ ) {
$links_summary = ( ! $j ) ? " \n " : $links_summary ;
2003-04-21 23:37:11 +02:00
$j ++ ;
$link_match = $matches [ 0 ][ $i ];
$link_number = '[' . ( $i + 1 ) . ']' ;
$link_url = $matches [ 2 ][ $i ];
$link_text = $matches [ 4 ][ $i ];
2007-10-11 07:46:57 +02:00
$content = str_replace ( $link_match , $link_text . ' ' . $link_number , $content );
$link_url = ( ( strtolower ( substr ( $link_url , 0 , 7 ) ) != 'http://' ) && ( strtolower ( substr ( $link_url , 0 , 8 ) ) != 'https://' ) ) ? get_option ( 'home' ) . $link_url : $link_url ;
$links_summary .= " \n " . $link_number . ' ' . $link_url ;
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
$content = strip_tags ( $content );
2003-04-21 23:37:11 +02:00
$content .= $links_summary ;
2003-06-07 19:19:38 +02:00
return $content ;
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
function xmlrpc_getposttitle ( $content ) {
2003-04-21 23:37:11 +02:00
global $post_default_title ;
2007-10-11 07:46:57 +02:00
if ( preg_match ( '/<title>(.+?)<\/title>/is' , $content , $matchtitle ) ) {
2003-04-21 23:37:11 +02:00
$post_title = $matchtitle [ 0 ];
2007-10-11 07:46:57 +02:00
$post_title = preg_replace ( '/<title>/si' , '' , $post_title );
$post_title = preg_replace ( '/<\/title>/si' , '' , $post_title );
2003-04-21 23:37:11 +02:00
} else {
$post_title = $post_default_title ;
}
2003-06-07 19:19:38 +02:00
return $post_title ;
2003-04-21 23:37:11 +02:00
}
2005-10-10 11:25:38 +02:00
2007-10-11 07:46:57 +02:00
function xmlrpc_getpostcategory ( $content ) {
2003-04-21 23:37:11 +02:00
global $post_default_category ;
2007-10-11 07:46:57 +02:00
if ( preg_match ( '/<category>(.+?)<\/category>/is' , $content , $matchcat ) ) {
$post_category = trim ( $matchcat [ 1 ], ',' );
$post_category = explode ( ',' , $post_category );
2003-04-21 23:37:11 +02:00
} else {
$post_category = $post_default_category ;
}
2003-06-07 19:19:38 +02:00
return $post_category ;
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02: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 19:19:38 +02:00
return $content ;
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
function debug_fopen ( $filename , $mode ) {
2003-04-21 23:37:11 +02:00
global $debug ;
2007-10-11 07:46:57 +02:00
if ( 1 == $debug ) {
$fp = fopen ( $filename , $mode );
2003-04-21 23:37:11 +02:00
return $fp ;
} else {
return false ;
}
}
2007-10-11 07:46:57 +02:00
function debug_fwrite ( $fp , $string ) {
2003-04-21 23:37:11 +02:00
global $debug ;
2007-10-11 07:46:57 +02:00
if ( 1 == $debug )
fwrite ( $fp , $string );
2003-04-21 23:37:11 +02:00
}
2007-10-11 07:46:57 +02:00
function debug_fclose ( $fp ) {
2003-04-21 23:37:11 +02:00
global $debug ;
2007-10-11 07:46:57 +02:00
if ( 1 == $debug )
fclose ( $fp );
2003-04-21 23:37:11 +02:00
}
2004-10-18 14:09:20 +02:00
function do_enclose ( $content , $post_ID ) {
2007-12-06 20:49:33 +01:00
global $wpdb ;
2007-10-11 07:46:57 +02:00
include_once ( ABSPATH . WPINC . '/class-IXR.php' );
2004-10-18 14:09:20 +02:00
2007-10-11 07:46:57 +02:00
$log = debug_fopen ( ABSPATH . 'enclosures.log' , 'a' );
2004-10-18 14:09:20 +02:00
$post_links = array ();
2007-10-11 07:46:57 +02:00
debug_fwrite ( $log , 'BEGIN ' . date ( 'YmdHis' , time () ) . " \n " );
2004-10-18 14:09:20 +02:00
2005-02-12 09:58:10 +01:00
$pung = get_enclosed ( $post_ID );
2004-10-18 14:09:20 +02:00
$ltrs = '\w' ;
$gunk = '/#~:.?+=&%@!\-' ;
$punc = '.:?\-' ;
$any = $ltrs . $gunk . $punc ;
2007-10-11 07:46:57 +02:00
preg_match_all ( " { \ b http : [ $any ] +? (?= [ $punc ] * [^ $any ] | $ )}x " , $content , $post_links_temp );
2004-10-18 14:09:20 +02:00
2007-10-11 07:46:57 +02:00
debug_fwrite ( $log , 'Post contents:' );
debug_fwrite ( $log , $content . " \n " );
2004-10-18 14:09:20 +02:00
2007-10-11 07:46:57 +02:00
foreach ( $post_links_temp [ 0 ] as $link_test ) {
if ( ! in_array ( $link_test , $pung ) ) { // If we haven't pung it already
$test = parse_url ( $link_test );
if ( isset ( $test [ 'query' ] ) )
2004-10-18 14:09:20 +02:00
$post_links [] = $link_test ;
2007-10-11 07:46:57 +02:00
elseif ( $test [ 'path' ] != '/' && $test [ 'path' ] != '' )
2004-10-18 14:09:20 +02:00
$post_links [] = $link_test ;
2007-10-11 07:46:57 +02:00
}
}
2004-10-18 14:09:20 +02:00
2007-10-11 07:46:57 +02:00
foreach ( $post_links as $url ) {
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 , $url . '%' ) ) ) {
2005-03-07 09:56:47 +01:00
if ( $headers = wp_get_http_headers ( $url ) ) {
2005-10-10 11:25:38 +02:00
$len = ( int ) $headers [ 'content-length' ];
2005-07-05 22:47:22 +02:00
$type = $wpdb -> escape ( $headers [ 'content-type' ] );
2005-03-07 09:56:47 +01:00
$allowed_types = array ( 'video' , 'audio' );
2005-10-10 11:25:38 +02:00
if ( in_array ( substr ( $type , 0 , strpos ( $type , " / " ) ), $allowed_types ) ) {
2005-03-07 09:56:47 +01:00
$meta_value = " $url\n $len\n $type\n " ;
2007-10-11 07:46:57 +02:00
$wpdb -> query ( $wpdb -> prepare ( " INSERT INTO ` $wpdb->postmeta ` ( `post_id` , `meta_key` , `meta_value` )
VALUES ( % d , 'enclosure' , % s ) " , $post_ID , $meta_value ) );
2005-03-07 09:56:47 +01:00
}
}
}
2007-10-11 07:46:57 +02:00
}
2005-03-07 09:56:47 +01:00
}
2007-12-16 22:34:48 +01:00
// perform a HTTP HEAD or GET request
// if $file_path is a writable filename, this will do a GET request and write the file to that path
// returns a list of HTTP headers
function wp_get_http ( $url , $file_path = false , $red = 1 ) {
2005-10-10 18:36:54 +02:00
global $wp_version ;
2005-10-10 11:25:38 +02:00
@ set_time_limit ( 60 );
2005-10-19 08:09:23 +02:00
if ( $red > 5 )
2006-11-19 08:56:05 +01:00
return false ;
2005-10-19 08:09:23 +02:00
2005-03-07 09:56:47 +01:00
$parts = parse_url ( $url );
2007-10-11 07:46:57 +02:00
$file = $parts [ 'path' ] . ( ( $parts [ 'query' ] ) ? '?' . $parts [ 'query' ] : '' );
2005-10-10 11:25:38 +02:00
$host = $parts [ 'host' ];
2005-03-07 09:56:47 +01:00
if ( ! isset ( $parts [ 'port' ] ) )
$parts [ 'port' ] = 80 ;
2007-12-16 22:34:48 +01:00
if ( $file_path )
$request_type = 'GET' ;
else
$request_type = 'HEAD' ;
2008-02-05 07:47:27 +01:00
2007-12-16 22:34:48 +01:00
$head = " $request_type $file HTTP/1.1 \r \n HOST: $host\r\nUser -Agent: WordPress/ " . $wp_version . " \r \n \r \n " ;
2005-03-07 09:56:47 +01:00
2007-10-11 07:46:57 +02:00
$fp = @ fsockopen ( $host , $parts [ 'port' ], $err_num , $err_msg , 3 );
2005-03-07 09:56:47 +01:00
if ( ! $fp )
return false ;
$response = '' ;
fputs ( $fp , $head );
while ( ! feof ( $fp ) && strpos ( $response , " \r \n \r \n " ) == false )
$response .= fgets ( $fp , 2048 );
2007-10-11 07:46:57 +02:00
preg_match_all ( '/(.*?): (.*)\r/' , $response , $matches );
$count = count ( $matches [ 1 ] );
for ( $i = 0 ; $i < $count ; $i ++ ) {
$key = strtolower ( $matches [ 1 ][ $i ] );
2005-03-07 09:56:47 +01:00
$headers [ " $key " ] = $matches [ 2 ][ $i ];
}
2007-10-11 07:46:57 +02:00
preg_match ( '/.*([0-9]{3}).*/' , $response , $return );
2005-03-07 09:56:47 +01:00
$headers [ 'response' ] = $return [ 1 ]; // HTTP response code eg 204, 200, 404
2006-05-26 19:25:48 +02:00
2006-11-19 08:56:05 +01:00
$code = $headers [ 'response' ];
2007-12-16 22:34:48 +01:00
if ( ( '302' == $code || '301' == $code ) && isset ( $headers [ 'location' ] ) ) {
fclose ( $fp );
2007-12-18 06:28:44 +01:00
return wp_get_http ( $headers [ 'location' ], $file_path , ++ $red );
2007-12-16 22:34:48 +01:00
}
2008-02-05 07:47:27 +01:00
2007-12-16 22:34:48 +01:00
// make a note of the final location, so the caller can tell if we were redirected or not
$headers [ 'x-final-location' ] = $url ;
// HEAD request only
if ( ! $file_path ) {
fclose ( $fp );
return $headers ;
}
2008-02-05 07:47:27 +01:00
2007-12-16 22:34:48 +01:00
// GET request - fetch and write it to the supplied filename
$content_length = $headers [ 'content-length' ];
$got_bytes = 0 ;
$out_fp = fopen ( $file_path , 'w' );
while ( ! feof ( $fp ) ) {
$buf = fread ( $fp , 4096 );
fwrite ( $out_fp , $buf );
$got_bytes += strlen ( $buf );
// don't read past the content-length
if ( $content_length and $got_bytes >= $content_length )
break ;
}
2008-02-05 07:47:27 +01:00
2007-12-16 22:34:48 +01:00
fclose ( $out_fp );
fclose ( $fp );
2005-03-07 09:56:47 +01:00
return $headers ;
2004-10-18 14:09:20 +02:00
}
2007-12-18 06:28:44 +01:00
function wp_get_http_headers ( $url , $red = 1 ) {
return wp_get_http ( $url , false , $red );
2007-12-16 22:34:48 +01:00
}
2007-10-11 07:46:57 +02:00
2003-10-27 08:00:42 +01:00
function is_new_day () {
global $day , $previousday ;
2007-10-11 07:46:57 +02:00
if ( $day != $previousday )
return 1 ;
else
return 0 ;
2003-10-27 08:00:42 +01:00
}
2007-10-11 07:46:57 +02:00
function build_query ( $data ) {
return _http_build_query ( $data , NULL , '&' , '' , false );
2007-09-08 16:27:24 +02:00
}
2007-10-11 07:46:57 +02:00
2004-10-20 23:28:37 +02:00
/*
add_query_arg : Returns a modified querystring by adding
a single key & value or an associative array .
Setting a key value to emptystring removes the key .
Omitting oldquery_or_uri uses the $_SERVER value .
Parameters :
add_query_arg ( newkey , newvalue , oldquery_or_uri ) or
add_query_arg ( associative_array , oldquery_or_uri )
*/
function add_query_arg () {
$ret = '' ;
2007-10-11 07:46:57 +02:00
if ( is_array ( func_get_arg ( 0 ) ) ) {
if ( @ func_num_args () < 2 || false === @ func_get_arg ( 1 ) )
2006-01-24 00:42:25 +01:00
$uri = $_SERVER [ 'REQUEST_URI' ];
else
2007-10-11 07:46:57 +02:00
$uri = @ func_get_arg ( 1 );
2005-10-10 11:25:38 +02:00
} else {
2007-10-11 07:46:57 +02:00
if ( @ func_num_args () < 3 || false === @ func_get_arg ( 2 ) )
2004-11-21 07:03:19 +01:00
$uri = $_SERVER [ 'REQUEST_URI' ];
2005-10-10 11:25:38 +02:00
else
2007-10-11 07:46:57 +02:00
$uri = @ func_get_arg ( 2 );
2004-10-20 23:28:37 +02:00
}
2004-11-21 07:03:19 +01:00
2007-10-11 07:46:57 +02:00
if ( $frag = strstr ( $uri , '#' ) )
$uri = substr ( $uri , 0 , - strlen ( $frag ) );
2006-08-30 03:02:45 +02:00
else
$frag = '' ;
2007-10-11 07:46:57 +02:00
if ( preg_match ( '|^https?://|i' , $uri , $matches ) ) {
2006-06-08 20:36:05 +02:00
$protocol = $matches [ 0 ];
2007-10-11 07:46:57 +02:00
$uri = substr ( $uri , strlen ( $protocol ) );
2006-06-08 20:36:05 +02:00
} else {
$protocol = '' ;
}
2007-10-11 07:46:57 +02:00
if ( strpos ( $uri , '?' ) !== false ) {
$parts = explode ( '?' , $uri , 2 );
if ( 1 == count ( $parts ) ) {
2004-10-20 23:28:37 +02:00
$base = '?' ;
$query = $parts [ 0 ];
2005-10-10 11:25:38 +02:00
} else {
2004-10-20 23:28:37 +02:00
$base = $parts [ 0 ] . '?' ;
$query = $parts [ 1 ];
}
2007-10-11 07:46:57 +02:00
} elseif ( ! empty ( $protocol ) || strpos ( $uri , '=' ) === false ) {
2004-10-20 23:28:37 +02:00
$base = $uri . '?' ;
$query = '' ;
2005-04-01 07:42:46 +02:00
} else {
$base = '' ;
$query = $uri ;
2004-10-20 23:28:37 +02:00
}
2005-04-01 07:42:46 +02:00
2007-10-11 07:46:57 +02:00
wp_parse_str ( $query , $qs );
$qs = urlencode_deep ( $qs ); // this re-URL-encodes things that were already in the query string
if ( is_array ( func_get_arg ( 0 ) ) ) {
$kayvees = func_get_arg ( 0 );
$qs = array_merge ( $qs , $kayvees );
2005-10-10 11:25:38 +02:00
} else {
2007-10-11 07:46:57 +02:00
$qs [ func_get_arg ( 0 )] = func_get_arg ( 1 );
2004-10-20 23:28:37 +02:00
}
2005-10-10 11:25:38 +02:00
2007-09-01 05:41:50 +02:00
foreach ( $qs as $k => $v ) {
if ( $v === false )
2007-10-11 07:46:57 +02:00
unset ( $qs [ $k ] );
2005-10-10 11:25:38 +02:00
}
2007-09-01 05:41:50 +02:00
2007-10-11 07:46:57 +02:00
$ret = build_query ( $qs );
$ret = trim ( $ret , '?' );
$ret = preg_replace ( '#=(&|$)#' , '$1' , $ret );
2006-08-30 03:02:45 +02:00
$ret = $protocol . $base . $ret . $frag ;
2007-10-11 07:46:57 +02:00
$ret = rtrim ( $ret , '?' );
2007-04-06 06:21:21 +02:00
return $ret ;
2004-10-20 23:28:37 +02:00
}
2007-10-11 07:46:57 +02:00
2006-06-08 20:36:05 +02:00
/*
remove_query_arg : Returns a modified querystring by removing
a single key or an array of keys .
Omitting oldquery_or_uri uses the $_SERVER value .
Parameters :
remove_query_arg ( removekey , [ oldquery_or_uri ]) or
remove_query_arg ( removekeyarray , [ oldquery_or_uri ])
*/
2007-10-11 07:46:57 +02:00
function remove_query_arg ( $key , $query = FALSE ) {
if ( is_array ( $key ) ) { // removing multiple keys
2006-06-08 20:36:05 +02:00
foreach ( ( array ) $key as $k )
2007-10-11 07:46:57 +02:00
$query = add_query_arg ( $k , FALSE , $query );
2006-06-08 20:36:05 +02:00
return $query ;
}
2007-10-11 07:46:57 +02:00
return add_query_arg ( $key , FALSE , $query );
2004-10-20 23:28:37 +02:00
}
2004-12-04 01:12:08 +01:00
2007-10-11 07:46:57 +02:00
function add_magic_quotes ( $array ) {
2005-07-05 22:47:22 +02:00
global $wpdb ;
2007-10-11 07:46:57 +02:00
foreach ( $array as $k => $v ) {
if ( is_array ( $v ) ) {
$array [ $k ] = add_magic_quotes ( $v );
2004-12-16 03:57:05 +01:00
} else {
2007-10-11 07:46:57 +02:00
$array [ $k ] = $wpdb -> escape ( $v );
2004-12-16 03:57:05 +01:00
}
}
return $array ;
}
2005-05-03 09:52:11 +02:00
function wp_remote_fopen ( $uri ) {
2007-01-16 19:41:05 +01:00
$timeout = 10 ;
2007-10-11 07:46:57 +02:00
$parsed_url = @ parse_url ( $uri );
2007-01-16 19:41:05 +01:00
2007-10-11 07:46:57 +02:00
if ( ! $parsed_url || ! is_array ( $parsed_url ) )
2007-01-16 19:41:05 +01:00
return false ;
2007-10-11 07:46:57 +02:00
if ( ! isset ( $parsed_url [ 'scheme' ] ) || ! in_array ( $parsed_url [ 'scheme' ], array ( 'http' , 'https' ) ) )
2007-01-16 19:41:05 +01:00
$uri = 'http://' . $uri ;
2007-10-11 07:46:57 +02:00
if ( ini_get ( 'allow_url_fopen' ) ) {
2006-11-15 23:46:35 +01:00
$fp = @ fopen ( $uri , 'r' );
2005-05-13 23:53:18 +02:00
if ( ! $fp )
return false ;
2007-01-16 19:41:05 +01:00
//stream_set_timeout($fp, $timeout); // Requires php 4.3
2005-05-13 23:53:18 +02:00
$linea = '' ;
2007-10-11 07:46:57 +02:00
while ( $remote_read = fread ( $fp , 4096 ) )
2005-05-13 23:53:18 +02:00
$linea .= $remote_read ;
2007-10-11 07:46:57 +02:00
fclose ( $fp );
2005-10-10 11:25:38 +02:00
return $linea ;
2007-10-11 07:46:57 +02:00
} elseif ( function_exists ( 'curl_init' ) ) {
2005-05-03 09:52:11 +02:00
$handle = curl_init ();
2007-10-11 07:46:57 +02:00
curl_setopt ( $handle , CURLOPT_URL , $uri );
curl_setopt ( $handle , CURLOPT_CONNECTTIMEOUT , 1 );
curl_setopt ( $handle , CURLOPT_RETURNTRANSFER , 1 );
curl_setopt ( $handle , CURLOPT_TIMEOUT , $timeout );
$buffer = curl_exec ( $handle );
curl_close ( $handle );
2005-05-03 09:52:11 +02:00
return $buffer ;
} else {
2005-05-13 23:53:18 +02:00
return false ;
2005-10-10 11:25:38 +02:00
}
2005-05-03 09:52:11 +02:00
}
2006-02-12 08:53:23 +01:00
2007-10-11 07:46:57 +02:00
function wp ( $query_vars = '' ) {
2007-10-12 23:47:34 +02:00
global $wp , $wp_query , $wp_the_query ;
2007-10-11 07:46:57 +02:00
$wp -> main ( $query_vars );
2007-10-12 23:47:34 +02:00
if ( ! isset ( $wp_the_query ) )
$wp_the_query = $wp_query ;
2005-06-11 01:15:13 +02:00
}
2007-10-11 07:46:57 +02:00
2007-05-11 05:34:50 +02:00
function get_status_header_desc ( $code ) {
global $wp_header_to_desc ;
2007-06-14 04:25:30 +02:00
2007-10-11 07:46:57 +02:00
$code = absint ( $code );
2007-06-14 04:25:30 +02:00
2007-10-11 07:46:57 +02:00
if ( ! isset ( $wp_header_to_desc ) ) {
2007-09-13 06:48:41 +02:00
$wp_header_to_desc = array (
100 => 'Continue' ,
101 => 'Switching Protocols' ,
200 => 'OK' ,
201 => 'Created' ,
202 => 'Accepted' ,
203 => 'Non-Authoritative Information' ,
204 => 'No Content' ,
205 => 'Reset Content' ,
206 => 'Partial Content' ,
300 => 'Multiple Choices' ,
301 => 'Moved Permanently' ,
302 => 'Found' ,
303 => 'See Other' ,
304 => 'Not Modified' ,
305 => 'Use Proxy' ,
307 => 'Temporary Redirect' ,
400 => 'Bad Request' ,
401 => 'Unauthorized' ,
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' ,
500 => 'Internal Server Error' ,
501 => 'Not Implemented' ,
502 => 'Bad Gateway' ,
503 => 'Service Unavailable' ,
504 => 'Gateway Timeout' ,
505 => 'HTTP Version Not Supported'
);
}
2007-10-11 07:46:57 +02:00
if ( isset ( $wp_header_to_desc [ $code ] ) )
2007-05-11 05:34:50 +02:00
return $wp_header_to_desc [ $code ];
2007-10-11 07:46:57 +02:00
else
2007-05-11 05:34:50 +02:00
return '' ;
}
2007-10-11 07:46:57 +02:00
2005-06-09 02:17:43 +02:00
function status_header ( $header ) {
2007-05-11 06:02:30 +02:00
$text = get_status_header_desc ( $header );
2007-06-14 04:25:30 +02:00
2007-05-12 23:55:14 +02:00
if ( empty ( $text ) )
2007-05-11 05:34:50 +02:00
return false ;
2007-05-12 23:55:14 +02:00
$protocol = $_SERVER [ " SERVER_PROTOCOL " ];
2007-10-11 07:46:57 +02:00
if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
2007-05-12 23:55:14 +02:00
$protocol = 'HTTP/1.0' ;
$status_header = " $protocol $header $text " ;
2007-10-11 07:46:57 +02:00
if ( function_exists ( 'apply_filters' ) )
$status_header = apply_filters ( 'status_header' , $status_header , $header , $text , $protocol );
2007-05-12 23:55:14 +02:00
2007-10-11 07:46:57 +02:00
if ( version_compare ( phpversion (), '4.3.0' , '>=' ) )
2007-05-12 23:55:14 +02:00
return @ header ( $status_header , true , $header );
2007-10-11 07:46:57 +02:00
else
2007-05-12 23:55:14 +02:00
return @ header ( $status_header );
2005-06-09 02:17:43 +02:00
}
2007-10-11 07:46:57 +02:00
2005-06-09 02:17:43 +02:00
function nocache_headers () {
2007-10-11 07:46:57 +02:00
// why are these @-silenced when other header calls aren't?
@ header ( 'Expires: Wed, 11 Jan 1984 05:00:00 GMT' );
@ header ( 'Last-Modified: ' . gmdate ( 'D, d M Y H:i:s' ) . ' GMT' );
@ header ( 'Cache-Control: no-cache, must-revalidate, max-age=0' );
@ header ( 'Pragma: no-cache' );
2005-06-09 02:17:43 +02:00
}
2007-10-11 07:46:57 +02:00
2006-08-22 19:31:53 +02:00
function cache_javascript_headers () {
$expiresOffset = 864000 ; // 10 days
2007-10-11 07:46:57 +02: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 19:31:53 +02:00
}
2007-10-11 07:46:57 +02:00
2005-11-17 00:48:12 +01:00
function get_num_queries () {
global $wpdb ;
return $wpdb -> num_queries ;
}
2007-10-11 07:46:57 +02:00
2007-05-28 19:11:42 +02:00
function bool_from_yn ( $yn ) {
return ( strtolower ( $yn ) == 'y' );
2006-02-27 05:57:30 +01:00
}
2006-03-12 23:57:00 +01:00
2007-10-11 07:46:57 +02:00
2006-03-12 23:57:00 +01:00
function do_feed () {
2007-02-24 08:33:29 +01:00
global $wp_query ;
2007-10-11 07:46:57 +02:00
$feed = get_query_var ( 'feed' );
2006-03-12 23:57:00 +01:00
// Remove the pad, if present.
2007-10-11 07:46:57 +02:00
$feed = preg_replace ( '/^_+/' , '' , $feed );
2006-03-12 23:57:00 +01:00
2007-02-23 09:18:30 +01:00
if ( $feed == '' || $feed == 'feed' )
2007-12-06 20:58:15 +01:00
$feed = get_default_feed ();
2006-03-12 23:57:00 +01:00
$hook = 'do_feed_' . $feed ;
2008-02-26 11:05:05 +01:00
if ( ! has_action ( $hook ) ) {
$message = sprintf ( __ ( 'ERROR: %s is not a valid feed template' ), wp_specialchars ( $feed ));
wp_die ( $message );
}
2008-03-02 21:17:30 +01:00
do_action ( $hook , $wp_query -> is_comment_feed );
2006-03-12 23:57:00 +01:00
}
2007-10-11 07:46:57 +02:00
2006-03-12 23:57:00 +01:00
function do_feed_rdf () {
2007-10-11 07:46:57 +02:00
load_template ( ABSPATH . WPINC . '/feed-rdf.php' );
2006-03-12 23:57:00 +01:00
}
2007-10-11 07:46:57 +02:00
2006-03-12 23:57:00 +01:00
function do_feed_rss () {
2007-10-11 07:46:57 +02:00
load_template ( ABSPATH . WPINC . '/feed-rss.php' );
2006-03-12 23:57:00 +01:00
}
2007-10-11 07:46:57 +02:00
function do_feed_rss2 ( $for_comments ) {
if ( $for_comments )
load_template ( ABSPATH . WPINC . '/feed-rss2-comments.php' );
else
load_template ( ABSPATH . WPINC . '/feed-rss2.php' );
2006-03-12 23:57:00 +01:00
}
2007-10-11 07:46:57 +02:00
function do_feed_atom ( $for_comments ) {
if ( $for_comments )
load_template ( ABSPATH . WPINC . '/feed-atom-comments.php' );
else
load_template ( ABSPATH . WPINC . '/feed-atom.php' );
2006-03-12 23:57:00 +01:00
}
2006-03-31 10:07:39 +02:00
2006-05-23 00:06:06 +02:00
function do_robots () {
2007-10-11 07:46:57 +02:00
header ( 'Content-Type: text/plain; charset=utf-8' );
2007-03-27 18:44:36 +02:00
2007-10-11 07:46:57 +02:00
do_action ( 'do_robotstxt' );
2007-03-27 18:44:36 +02:00
2007-10-11 07:46:57 +02:00
if ( '0' == get_option ( 'blog_public' ) ) {
2006-05-23 00:06:06 +02:00
echo " User-agent: * \n " ;
echo " Disallow: / \n " ;
} else {
echo " User-agent: * \n " ;
echo " Disallow: \n " ;
}
}
2007-10-11 07:46:57 +02:00
2006-03-31 10:07:39 +02:00
function is_blog_installed () {
2007-10-14 11:38:12 +02:00
global $wpdb ;
2007-10-13 20:39:28 +02:00
2008-02-05 07:47:27 +01:00
// Check cache first. If options table goes away and we have true cached, oh well.
2007-10-14 09:57:56 +02:00
if ( wp_cache_get ( 'is_blog_installed' ) )
return true ;
2007-10-13 20:39:28 +02:00
2007-12-16 22:38:24 +01:00
$show = $wpdb -> hide_errors ();
2007-10-11 07:46:57 +02:00
$installed = $wpdb -> get_var ( " SELECT option_value FROM $wpdb->options WHERE option_name = 'siteurl' " );
2007-12-16 22:38:24 +01:00
$wpdb -> show_errors ( $show );
2007-03-23 18:45:40 +01:00
2007-10-14 09:57:56 +02:00
$installed = ! empty ( $installed ) ? true : false ;
wp_cache_set ( 'is_blog_installed' , $installed );
return $installed ;
2006-03-31 10:07:39 +02:00
}
2006-04-19 05:03:27 +02:00
2007-10-11 07:46:57 +02:00
function wp_nonce_url ( $actionurl , $action = - 1 ) {
$actionurl = str_replace ( '&' , '&' , $actionurl );
return wp_specialchars ( add_query_arg ( '_wpnonce' , wp_create_nonce ( $action ), $actionurl ) );
2006-05-03 00:08:34 +02:00
}
2007-10-11 07:46:57 +02:00
function wp_nonce_field ( $action = - 1 , $name = " _wpnonce " , $referer = true ) {
$name = attribute_escape ( $name );
2008-01-04 09:46:33 +01:00
echo '<input type="hidden" id="' . $name . '" name="' . $name . '" value="' . wp_create_nonce ( $action ) . '" />' ;
2007-03-15 00:10:57 +01:00
if ( $referer )
wp_referer_field ();
2006-06-24 07:38:37 +02:00
}
2007-10-11 07:46:57 +02:00
2006-06-24 07:38:37 +02:00
function wp_referer_field () {
2007-10-11 07:46:57 +02:00
$ref = attribute_escape ( $_SERVER [ 'REQUEST_URI' ] );
2006-06-24 07:38:37 +02:00
echo '<input type="hidden" name="_wp_http_referer" value="' . $ref . '" />' ;
if ( wp_get_original_referer () ) {
2007-10-11 07:46:57 +02:00
$original_ref = attribute_escape ( stripslashes ( wp_get_original_referer () ) );
2006-06-24 07:38:37 +02:00
echo '<input type="hidden" name="_wp_original_http_referer" value="' . $original_ref . '" />' ;
}
}
2007-10-11 07:46:57 +02:00
2006-06-24 07:38:37 +02:00
function wp_original_referer_field () {
2007-10-11 07:46:57 +02:00
echo '<input type="hidden" name="_wp_original_http_referer" value="' . attribute_escape ( stripslashes ( $_SERVER [ 'REQUEST_URI' ] ) ) . '" />' ;
2006-06-24 07:38:37 +02:00
}
2007-10-11 07:46:57 +02:00
2006-06-24 07:38:37 +02:00
function wp_get_referer () {
2008-01-10 21:51:07 +01:00
if ( ! empty ( $_REQUEST [ '_wp_http_referer' ] ) )
return $_REQUEST [ '_wp_http_referer' ];
2008-02-05 07:47:27 +01:00
else if ( ! empty ( $_SERVER [ 'HTTP_REFERER' ] ) )
2008-01-10 21:51:07 +01:00
return $_SERVER [ 'HTTP_REFERER' ];
2006-06-24 07:38:37 +02:00
return false ;
}
2007-10-11 07:46:57 +02:00
2006-06-24 07:38:37 +02:00
function wp_get_original_referer () {
2007-10-11 07:46:57 +02:00
if ( ! empty ( $_REQUEST [ '_wp_original_http_referer' ] ) )
2006-06-24 07:38:37 +02:00
return $_REQUEST [ '_wp_original_http_referer' ];
return false ;
2006-05-03 00:08:34 +02:00
}
2007-10-11 07:46:57 +02:00
function wp_mkdir_p ( $target ) {
2006-06-08 01:17:59 +02:00
// from php.net/mkdir user contributed notes
2007-10-11 07:46:57 +02:00
if ( file_exists ( $target ) )
return @ is_dir ( $target );
2006-06-08 01:17:59 +02:00
// Attempting to create the directory may clutter up our display.
2007-10-11 07:46:57 +02:00
if ( @ mkdir ( $target ) ) {
$stat = @ stat ( dirname ( $target ) );
2006-06-08 01:17:59 +02:00
$dir_perms = $stat [ 'mode' ] & 0007777 ; // Get the permission bits.
2007-10-11 07:46:57 +02:00
@ chmod ( $target , $dir_perms );
2006-06-08 01:17:59 +02:00
return true ;
2007-10-11 07:46:57 +02:00
} elseif ( is_dir ( dirname ( $target ) ) ) {
2006-06-08 01:17:59 +02:00
return false ;
}
// If the above failed, attempt to create the parent node, then try again.
2007-10-11 07:46:57 +02:00
if ( wp_mkdir_p ( dirname ( $target ) ) )
return wp_mkdir_p ( $target );
2006-06-08 01:17:59 +02:00
return false ;
}
2008-02-22 18:46:03 +01:00
// Test if a give filesystem path is absolute ('/foo/bar', 'c:\windows')
function path_is_absolute ( $path ) {
// this is definitive if true but fails if $path does not exist or contains a symbolic link
if ( realpath ( $path ) == $path )
return true ;
if ( strlen ( $path ) == 0 || $path { 0 } == '.' )
return false ;
2008-03-02 21:17:30 +01:00
2008-02-22 18:46:03 +01:00
// windows allows absolute paths like this
if ( preg_match ( '#^[a-zA-Z]:\\\\#' , $path ) )
return true ;
// a path starting with / or \ is absolute; anything else is relative
return ( bool ) preg_match ( '#^[/\\\\]#' , $path );
}
// Join two filesystem paths together (e.g. 'give me $path relative to $base')
function path_join ( $base , $path ) {
if ( path_is_absolute ( $path ) )
return $path ;
2008-03-02 21:17:30 +01:00
2008-02-22 18:46:03 +01:00
return rtrim ( $base , '/' ) . '/' . ltrim ( $path , '/' );
}
2007-10-11 07:46:57 +02:00
2006-06-08 01:17:59 +02:00
// Returns an array containing the current upload directory's path and url, or an error message.
2007-12-16 22:34:48 +01:00
function wp_upload_dir ( $time = NULL ) {
2007-10-11 07:46:57 +02:00
$siteurl = get_option ( 'siteurl' );
2008-03-03 05:14:16 +01:00
$upload_path = get_option ( 'upload_path' );
if ( trim ( $upload_path ) === '' )
$upload_path = 'wp-content/uploads' ;
$dir = $upload_path ;
2008-03-02 21:17:30 +01:00
2008-02-22 18:46:03 +01:00
// $dir is absolute, $path is (maybe) relative to ABSPATH
$dir = path_join ( ABSPATH , $upload_path );
$path = str_replace ( ABSPATH , '' , trim ( $upload_path ) );
2008-02-11 07:35:24 +01:00
if ( ! $url = get_option ( 'upload_url_path' ) )
$url = trailingslashit ( $siteurl ) . $path ;
2006-06-08 01:17:59 +02:00
if ( defined ( 'UPLOADS' ) ) {
$dir = ABSPATH . UPLOADS ;
2007-10-11 07:46:57 +02:00
$url = trailingslashit ( $siteurl ) . UPLOADS ;
2006-06-08 01:17:59 +02:00
}
2008-02-22 18:46:03 +01:00
$subdir = '' ;
2007-10-11 07:46:57 +02:00
if ( get_option ( 'uploads_use_yearmonth_folders' ) ) {
2006-06-08 01:17:59 +02:00
// Generate the yearly and monthly dirs
2007-12-16 22:34:48 +01:00
if ( ! $time )
$time = current_time ( 'mysql' );
2006-06-08 01:17:59 +02:00
$y = substr ( $time , 0 , 4 );
$m = substr ( $time , 5 , 2 );
2008-02-22 18:46:03 +01:00
$subdir = " / $y / $m " ;
2006-06-08 01:17:59 +02:00
}
2008-03-02 21:17:30 +01:00
2008-02-22 18:46:03 +01:00
$dir .= $subdir ;
$url .= $subdir ;
2006-06-08 01:17:59 +02:00
// Make sure we have an uploads dir
if ( ! wp_mkdir_p ( $dir ) ) {
2007-10-11 07:46:57 +02:00
$message = sprintf ( __ ( 'Unable to create directory %s. Is its parent directory writable by the server?' ), $dir );
return array ( 'error' => $message );
2006-06-08 01:17:59 +02:00
}
2008-02-22 18:46:03 +01:00
$uploads = array ( 'path' => $dir , 'url' => $url , 'subdir' => $subdir , 'error' => false );
2007-10-11 07:46:57 +02:00
return apply_filters ( 'upload_dir' , $uploads );
2006-06-08 01:17:59 +02:00
}
2007-12-16 22:34:48 +01:00
// return a filename that is sanitized and unique for the given directory
2007-12-18 04:32:43 +01:00
function wp_unique_filename ( $dir , $filename , $unique_filename_callback = NULL ) {
2008-02-05 07:47:27 +01:00
2007-12-18 04:32:43 +01:00
// separate the filename into a name and extension
$info = pathinfo ( $filename );
2008-02-11 10:02:44 +01:00
$ext = $info [ 'extension' ];
2007-12-18 04:32:43 +01:00
$name = basename ( $filename , " . { $ext } " );
2008-02-05 07:47:27 +01:00
2007-12-16 22:34:48 +01:00
// Increment the file number until we have a unique file to save in $dir. Use $override['unique_filename_callback'] if supplied.
if ( $unique_filename_callback && function_exists ( $unique_filename_callback ) ) {
$filename = $unique_filename_callback ( $dir , $name );
} else {
$number = '' ;
$filename = str_replace ( '#' , '_' , $name );
$filename = str_replace ( array ( '\\' , " ' " ), '' , $filename );
if ( empty ( $ext ) )
$ext = '' ;
else
2008-02-11 10:02:44 +01:00
$ext = strtolower ( " . $ext " );
2007-12-16 22:34:48 +01:00
$filename = $filename . $ext ;
while ( file_exists ( $dir . " / $filename " ) ) {
if ( '' == " $number $ext " )
$filename = $filename . ++ $number . $ext ;
else
$filename = str_replace ( " $number $ext " , ++ $number . $ext , $filename );
}
$filename = str_replace ( $ext , '' , $filename );
$filename = sanitize_title_with_dashes ( $filename ) . $ext ;
}
2008-02-05 07:47:27 +01:00
2007-12-16 22:34:48 +01:00
return $filename ;
}
function wp_upload_bits ( $name , $deprecated , $bits , $time = NULL ) {
2007-10-11 07:46:57 +02:00
if ( empty ( $name ) )
return array ( 'error' => __ ( " Empty filename " ) );
2006-06-22 01:17:19 +02:00
2007-10-11 07:46:57 +02:00
$wp_filetype = wp_check_filetype ( $name );
2006-06-22 01:17:19 +02:00
if ( ! $wp_filetype [ 'ext' ] )
2007-10-11 07:46:57 +02:00
return array ( 'error' => __ ( " Invalid file type " ) );
2006-06-08 01:17:59 +02:00
2007-12-16 22:34:48 +01:00
$upload = wp_upload_dir ( $time );
2006-06-08 01:17:59 +02:00
if ( $upload [ 'error' ] !== false )
return $upload ;
2008-02-05 07:47:27 +01:00
2007-12-18 04:32:43 +01:00
$filename = wp_unique_filename ( $upload [ 'path' ], $name );
2006-06-08 01:17:59 +02:00
2007-03-09 21:14:52 +01:00
$new_file = $upload [ 'path' ] . " / $filename " ;
2007-10-11 07:46:57 +02:00
if ( ! wp_mkdir_p ( dirname ( $new_file ) ) ) {
$message = sprintf ( __ ( 'Unable to create directory %s. Is its parent directory writable by the server?' ), dirname ( $new_file ) );
return array ( 'error' => $message );
2006-06-08 01:17:59 +02:00
}
2007-10-11 07:46:57 +02:00
$ifp = @ fopen ( $new_file , 'wb' );
2006-06-08 01:17:59 +02:00
if ( ! $ifp )
2007-10-11 07:46:57 +02:00
return array ( 'error' => sprintf ( __ ( 'Could not write file %s' ), $new_file ) );
2006-06-08 01:17:59 +02:00
2007-12-06 20:49:33 +01:00
@ fwrite ( $ifp , $bits );
2007-10-11 07:46:57 +02:00
fclose ( $ifp );
2006-06-08 01:17:59 +02:00
// Set correct file permissions
2007-10-11 07:46:57 +02:00
$stat = @ stat ( dirname ( $new_file ) );
2006-06-08 01:17:59 +02:00
$perms = $stat [ 'mode' ] & 0007777 ;
$perms = $perms & 0000666 ;
2007-10-11 07:46:57 +02:00
@ chmod ( $new_file , $perms );
2006-06-08 01:17:59 +02:00
2007-03-09 21:14:52 +01:00
// Compute the URL
2006-06-08 01:17:59 +02:00
$url = $upload [ 'url' ] . " / $filename " ;
2007-10-11 07:46:57 +02:00
return array ( 'file' => $new_file , 'url' => $url , 'error' => false );
2006-06-08 01:17:59 +02:00
}
2008-02-29 07:54:15 +01:00
function wp_ext2type ( $ext ) {
$ext2type = apply_filters ( 'ext2type' , array (
'audio' => array ( 'aac' , 'ac3' , 'aif' , 'aiff' , 'mp1' , 'mp2' , 'mp3' , 'm3a' , 'm4a' , 'm4b' , 'ogg' , 'ram' , 'wav' , 'wma' ),
'video' => array ( 'asf' , 'avi' , 'divx' , 'dv' , 'mov' , 'mpg' , 'mpeg' , 'mp4' , 'mpv' , 'ogm' , 'qt' , 'rm' , 'vob' , 'wmv' ),
'document' => array ( 'doc' , 'pages' , 'odt' , 'rtf' , 'pdf' ),
'spreadsheet' => array ( 'xls' , 'numbers' , 'ods' ),
'interactive' => array ( 'ppt' , 'key' , 'odp' , 'swf' ),
'text' => array ( 'txt' ),
'archive' => array ( 'tar' , 'bz2' , 'gz' , 'cab' , 'dmg' , 'rar' , 'sea' , 'sit' , 'sqx' , 'zip' ),
2008-03-02 21:17:30 +01:00
'code' => array ( 'css' , 'html' , 'php' , 'js' ),
2008-02-29 07:54:15 +01:00
));
foreach ( $ext2type as $type => $exts )
if ( in_array ( $ext , $exts ) )
return $type ;
}
2007-10-11 07:46:57 +02:00
function wp_check_filetype ( $filename , $mimes = null ) {
2006-06-22 01:17:19 +02:00
// Accepted MIME types are set here as PCRE unless provided.
2007-10-11 07:46:57 +02:00
$mimes = ( is_array ( $mimes ) ) ? $mimes : apply_filters ( 'upload_mimes' , array (
2006-06-22 01:17:19 +02:00
'jpg|jpeg|jpe' => 'image/jpeg' ,
'gif' => 'image/gif' ,
'png' => 'image/png' ,
'bmp' => 'image/bmp' ,
'tif|tiff' => 'image/tiff' ,
'ico' => 'image/x-icon' ,
'asf|asx|wax|wmv|wmx' => 'video/asf' ,
'avi' => 'video/avi' ,
'mov|qt' => 'video/quicktime' ,
2008-02-26 20:57:00 +01:00
'mpeg|mpg|mpe|mp4' => 'video/mpeg' ,
2006-06-22 01:17:19 +02:00
'txt|c|cc|h' => 'text/plain' ,
'rtx' => 'text/richtext' ,
'css' => 'text/css' ,
'htm|html' => 'text/html' ,
2008-02-26 20:57:00 +01:00
'mp3|m4a' => 'audio/mpeg' ,
2006-06-22 01:17:19 +02:00
'ra|ram' => 'audio/x-realaudio' ,
'wav' => 'audio/wav' ,
'ogg' => 'audio/ogg' ,
'mid|midi' => 'audio/midi' ,
'wma' => 'audio/wma' ,
'rtf' => 'application/rtf' ,
'js' => 'application/javascript' ,
'pdf' => 'application/pdf' ,
'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' ,
'swf' => 'application/x-shockwave-flash' ,
'class' => 'application/java' ,
'tar' => 'application/x-tar' ,
'zip' => 'application/zip' ,
'gz|gzip' => 'application/x-gzip' ,
2007-08-23 20:28:14 +02:00
'exe' => 'application/x-msdownload' ,
// 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' ,
2007-10-11 07:46:57 +02:00
)
);
2006-06-22 01:17:19 +02:00
$type = false ;
$ext = false ;
2007-10-11 07:46:57 +02:00
foreach ( $mimes as $ext_preg => $mime_match ) {
2006-06-22 01:17:19 +02:00
$ext_preg = '!\.(' . $ext_preg . ')$!i' ;
2007-10-11 07:46:57 +02:00
if ( preg_match ( $ext_preg , $filename , $ext_matches ) ) {
2006-06-22 01:17:19 +02:00
$type = $mime_match ;
$ext = $ext_matches [ 1 ];
break ;
}
}
2007-10-11 07:46:57 +02:00
return compact ( 'ext' , 'type' );
2006-06-22 01:17:19 +02:00
}
2007-10-11 07:46:57 +02:00
function wp_explain_nonce ( $action ) {
if ( $action !== - 1 && preg_match ( '/([a-z]+)-([a-z]+)(_(.+))?/' , $action , $matches ) ) {
2006-06-27 10:06:00 +02:00
$verb = $matches [ 1 ];
$noun = $matches [ 2 ];
$trans = array ();
2008-02-13 18:39:40 +01:00
$trans [ 'update' ][ 'attachment' ] = array ( __ ( 'Your attempt to edit this attachment: "%s" has failed.' ), 'get_the_title' );
$trans [ 'add' ][ 'category' ] = array ( __ ( 'Your attempt to add this category has failed.' ), false );
$trans [ 'delete' ][ 'category' ] = array ( __ ( 'Your attempt to delete this category: "%s" has failed.' ), 'get_catname' );
$trans [ 'update' ][ 'category' ] = array ( __ ( 'Your attempt to edit this category: "%s" has failed.' ), 'get_catname' );
$trans [ 'delete' ][ 'comment' ] = array ( __ ( 'Your attempt to delete this comment: "%s" has failed.' ), 'use_id' );
$trans [ 'unapprove' ][ 'comment' ] = array ( __ ( 'Your attempt to unapprove this comment: "%s" has failed.' ), 'use_id' );
$trans [ 'approve' ][ 'comment' ] = array ( __ ( 'Your attempt to approve this comment: "%s" has failed.' ), 'use_id' );
$trans [ 'update' ][ 'comment' ] = array ( __ ( 'Your attempt to edit this comment: "%s" has failed.' ), 'use_id' );
$trans [ 'bulk' ][ 'comments' ] = array ( __ ( 'Your attempt to bulk modify comments has failed.' ), false );
$trans [ 'moderate' ][ 'comments' ] = array ( __ ( 'Your attempt to moderate comments has failed.' ), false );
$trans [ 'add' ][ 'bookmark' ] = array ( __ ( 'Your attempt to add this link has failed.' ), false );
$trans [ 'delete' ][ 'bookmark' ] = array ( __ ( 'Your attempt to delete this link: "%s" has failed.' ), 'use_id' );
$trans [ 'update' ][ 'bookmark' ] = array ( __ ( 'Your attempt to edit this link: "%s" has failed.' ), 'use_id' );
$trans [ 'bulk' ][ 'bookmarks' ] = array ( __ ( 'Your attempt to bulk modify links has failed.' ), false );
$trans [ 'add' ][ 'page' ] = array ( __ ( 'Your attempt to add this page has failed.' ), false );
$trans [ 'delete' ][ 'page' ] = array ( __ ( 'Your attempt to delete this page: "%s" has failed.' ), 'get_the_title' );
$trans [ 'update' ][ 'page' ] = array ( __ ( 'Your attempt to edit this page: "%s" has failed.' ), 'get_the_title' );
$trans [ 'edit' ][ 'plugin' ] = array ( __ ( 'Your attempt to edit this plugin file: "%s" has failed.' ), 'use_id' );
$trans [ 'activate' ][ 'plugin' ] = array ( __ ( 'Your attempt to activate this plugin: "%s" has failed.' ), 'use_id' );
$trans [ 'deactivate' ][ 'plugin' ] = array ( __ ( 'Your attempt to deactivate this plugin: "%s" has failed.' ), 'use_id' );
$trans [ 'add' ][ 'post' ] = array ( __ ( 'Your attempt to add this post has failed.' ), false );
$trans [ 'delete' ][ 'post' ] = array ( __ ( 'Your attempt to delete this post: "%s" has failed.' ), 'get_the_title' );
$trans [ 'update' ][ 'post' ] = array ( __ ( 'Your attempt to edit this post: "%s" has failed.' ), 'get_the_title' );
$trans [ 'add' ][ 'user' ] = array ( __ ( 'Your attempt to add this user has failed.' ), false );
$trans [ 'delete' ][ 'users' ] = array ( __ ( 'Your attempt to delete users has failed.' ), false );
$trans [ 'bulk' ][ 'users' ] = array ( __ ( 'Your attempt to bulk modify users has failed.' ), false );
$trans [ 'update' ][ 'user' ] = array ( __ ( 'Your attempt to edit this user: "%s" has failed.' ), 'get_author_name' );
$trans [ 'update' ][ 'profile' ] = array ( __ ( 'Your attempt to modify the profile for: "%s" has failed.' ), 'get_author_name' );
$trans [ 'update' ][ 'options' ] = array ( __ ( 'Your attempt to edit your settings has failed.' ), false );
$trans [ 'update' ][ 'permalink' ] = array ( __ ( 'Your attempt to change your permalink structure to: %s has failed.' ), 'use_id' );
$trans [ 'edit' ][ 'file' ] = array ( __ ( 'Your attempt to edit this file: "%s" has failed.' ), 'use_id' );
$trans [ 'edit' ][ 'theme' ] = array ( __ ( 'Your attempt to edit this theme file: "%s" has failed.' ), 'use_id' );
$trans [ 'switch' ][ 'theme' ] = array ( __ ( 'Your attempt to switch to this theme: "%s" has failed.' ), 'use_id' );
2007-10-11 07:46:57 +02:00
if ( isset ( $trans [ $verb ][ $noun ] ) ) {
if ( ! empty ( $trans [ $verb ][ $noun ][ 1 ] ) ) {
2006-06-27 10:06:00 +02:00
$lookup = $trans [ $verb ][ $noun ][ 1 ];
$object = $matches [ 4 ];
if ( 'use_id' != $lookup )
2007-10-11 07:46:57 +02:00
$object = call_user_func ( $lookup , $object );
2008-02-13 19:14:38 +01:00
return sprintf ( $trans [ $verb ][ $noun ][ 0 ], wp_specialchars ( $object ) );
2006-06-27 10:06:00 +02:00
} else {
return $trans [ $verb ][ $noun ][ 0 ];
}
}
}
2007-10-11 07:46:57 +02:00
return apply_filters ( 'explain_nonce_' . $verb . '-' . $noun , __ ( 'Are you sure you want to do this?' ), $matches [ 4 ] );
2006-06-27 10:06:00 +02:00
}
2007-10-11 07:46:57 +02:00
function wp_nonce_ays ( $action ) {
2007-12-06 20:49:33 +01:00
global $pagenow ;
2008-02-13 18:39:40 +01:00
$title = __ ( 'WordPress Failure Notice' );
$html .= " \t <div id='message' class='updated fade'> \n \t <p> " . wp_specialchars ( wp_explain_nonce ( $action ) ) . " </p> \n \t <p> " ;
2006-06-27 10:06:00 +02:00
if ( wp_get_referer () )
2008-02-13 18:39:40 +01:00
$html .= " <a href=' " . remove_query_arg ( 'updated' , clean_url ( wp_get_referer () ) ) . " '> " . __ ( 'Please try again.' ) . " </a> " ;
$html .= " </p> \n \t </div> \n " ;
2006-06-27 10:06:00 +02:00
$html .= " </body> \n </html> " ;
2007-10-11 07:46:57 +02:00
wp_die ( $html , $title );
2006-06-27 10:06:00 +02:00
}
2007-10-11 07:46:57 +02:00
2007-02-20 02:24:31 +01:00
function wp_die ( $message , $title = '' ) {
2006-10-07 21:12:33 +02:00
global $wp_locale ;
2007-05-22 00:50:32 +02:00
if ( function_exists ( 'is_wp_error' ) && is_wp_error ( $message ) ) {
2007-10-11 07:46:57 +02:00
if ( empty ( $title ) ) {
2007-02-20 02:24:31 +01:00
$error_data = $message -> get_error_data ();
2007-10-11 07:46:57 +02:00
if ( is_array ( $error_data ) && isset ( $error_data [ 'title' ] ) )
2007-02-20 02:24:31 +01:00
$title = $error_data [ 'title' ];
}
$errors = $message -> get_error_messages ();
2007-10-11 07:46:57 +02:00
switch ( count ( $errors ) ) :
2007-02-20 02:24:31 +01:00
case 0 :
$message = '' ;
break ;
case 1 :
$message = " <p> { $errors [ 0 ] } </p> " ;
break ;
default :
$message = " <ul> \n \t \t <li> " . join ( " </li> \n \t \t <li> " , $errors ) . " </li> \n \t </ul> " ;
break ;
endswitch ;
2007-10-11 07:46:57 +02:00
} elseif ( is_string ( $message ) ) {
2007-02-20 02:24:31 +01:00
$message = " <p> $message </p> " ;
}
2008-02-05 07:47:27 +01:00
if ( defined ( 'WP_SITEURL' ) && '' != WP_SITEURL )
$admin_dir = WP_SITEURL . '/wp-admin/' ;
2007-10-11 07:46:57 +02:00
elseif ( function_exists ( 'get_bloginfo' ) && '' != get_bloginfo ( 'wpurl' ) )
2008-02-05 07:47:27 +01:00
$admin_dir = get_bloginfo ( 'wpurl' ) . '/wp-admin/' ;
2007-10-11 07:46:57 +02:00
elseif ( strpos ( $_SERVER [ 'PHP_SELF' ], 'wp-admin' ) !== false )
2007-05-08 01:24:44 +02:00
$admin_dir = '' ;
else
$admin_dir = 'wp-admin/' ;
2007-10-11 07:46:57 +02:00
if ( ! function_exists ( 'did_action' ) || ! did_action ( 'admin_head' ) ) :
2007-09-19 06:27:56 +02:00
if ( ! headers_sent () ){
2007-10-11 07:46:57 +02:00
status_header ( 500 );
2007-09-19 06:27:56 +02:00
nocache_headers ();
2007-10-11 07:46:57 +02:00
header ( 'Content-Type: text/html; charset=utf-8' );
2007-09-19 06:27:56 +02:00
}
2006-07-05 21:13:26 +02:00
2007-10-11 07:46:57 +02:00
if ( empty ( $title ) ) {
if ( function_exists ( '__' ) )
$title = __ ( 'WordPress › Error' );
2007-09-13 08:23:23 +02:00
else
$title = 'WordPress › Error' ;
}
2006-09-19 01:40:19 +02:00
2006-07-10 07:29:10 +02:00
?>
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >
2007-10-11 07:46:57 +02:00
< html xmlns = " http://www.w3.org/1999/xhtml " < ? php if ( function_exists ( 'language_attributes' ) ) language_attributes (); ?> >
2006-07-10 07:29:10 +02:00
< head >
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " />
2008-01-06 20:15:33 +01:00
< title >< ? php echo $title ?> </title>
2007-06-13 08:33:17 +02:00
< link rel = " stylesheet " href = " <?php echo $admin_dir ; ?>css/install.css " type = " text/css " />
2007-09-04 01:32:58 +02:00
< ? php
2007-10-11 07:46:57 +02:00
if ( ( $wp_locale ) && ( 'rtl' == $wp_locale -> text_direction ) ) : ?>
2007-06-13 08:33:17 +02:00
< link rel = " stylesheet " href = " <?php echo $admin_dir ; ?>css/install-rtl.css " type = " text/css " />
2006-10-07 21:12:33 +02:00
< ? php endif ; ?>
2006-07-10 07:29:10 +02:00
</ head >
2008-02-24 05:33:51 +01:00
< body id = " error-page " >
2007-05-08 01:24:44 +02:00
< ? php endif ; ?>
2007-02-20 02:24:31 +01:00
< ? php echo $message ; ?>
2006-07-10 07:29:10 +02:00
</ body >
</ html >
< ? php
2006-07-05 21:13:26 +02:00
die ();
}
2007-10-11 07:46:57 +02:00
function _config_wp_home ( $url = '' ) {
2007-09-04 01:32:58 +02:00
if ( defined ( 'WP_HOME' ) )
2007-03-23 18:45:40 +01:00
return WP_HOME ;
2007-10-11 07:46:57 +02:00
return $url ;
2007-03-23 18:45:40 +01:00
}
2007-10-11 07:46:57 +02:00
function _config_wp_siteurl ( $url = '' ) {
2007-09-04 01:32:58 +02:00
if ( defined ( 'WP_SITEURL' ) )
2007-03-23 18:45:40 +01:00
return WP_SITEURL ;
2007-10-11 07:46:57 +02:00
return $url ;
2007-03-23 18:45:40 +01:00
}
2007-10-11 07:46:57 +02:00
2008-02-11 18:45:18 +01:00
function _mce_set_direction ( $input ) {
2006-09-21 02:34:34 +02:00
global $wp_locale ;
2006-09-27 02:51:17 +02:00
2007-10-11 07:46:57 +02:00
if ( 'rtl' == $wp_locale -> text_direction ) {
2008-02-11 18:45:18 +01:00
$input [ 'directionality' ] = 'rtl' ;
$input [ 'plugins' ] .= ',directionality' ;
2008-03-01 00:27:02 +01:00
$input [ 'theme_advanced_buttons1' ] .= ',ltr' ;
2006-09-21 02:34:34 +02:00
}
return $input ;
}
2007-03-12 22:31:24 +01:00
2007-10-11 07:46:57 +02:00
2007-03-12 22:31:24 +01:00
function smilies_init () {
global $wpsmiliestrans , $wp_smiliessearch , $wp_smiliesreplace ;
// don't bother setting up smilies if they are disabled
2007-10-11 07:46:57 +02:00
if ( ! get_option ( 'use_smilies' ) )
2007-03-12 22:31:24 +01:00
return ;
2007-10-11 07:46:57 +02:00
if ( ! isset ( $wpsmiliestrans ) ) {
2007-03-12 22:31:24 +01:00
$wpsmiliestrans = array (
':mrgreen:' => 'icon_mrgreen.gif' ,
':neutral:' => 'icon_neutral.gif' ,
':twisted:' => 'icon_twisted.gif' ,
':arrow:' => 'icon_arrow.gif' ,
':shock:' => 'icon_eek.gif' ,
':smile:' => 'icon_smile.gif' ,
':???:' => 'icon_confused.gif' ,
':cool:' => 'icon_cool.gif' ,
':evil:' => 'icon_evil.gif' ,
':grin:' => 'icon_biggrin.gif' ,
':idea:' => 'icon_idea.gif' ,
':oops:' => 'icon_redface.gif' ,
':razz:' => 'icon_razz.gif' ,
':roll:' => 'icon_rolleyes.gif' ,
':wink:' => 'icon_wink.gif' ,
':cry:' => 'icon_cry.gif' ,
':eek:' => 'icon_surprised.gif' ,
':lol:' => 'icon_lol.gif' ,
':mad:' => 'icon_mad.gif' ,
':sad:' => 'icon_sad.gif' ,
'8-)' => 'icon_cool.gif' ,
'8-O' => 'icon_eek.gif' ,
':-(' => 'icon_sad.gif' ,
':-)' => 'icon_smile.gif' ,
':-?' => 'icon_confused.gif' ,
':-D' => 'icon_biggrin.gif' ,
':-P' => 'icon_razz.gif' ,
':-o' => 'icon_surprised.gif' ,
':-x' => 'icon_mad.gif' ,
':-|' => 'icon_neutral.gif' ,
';-)' => 'icon_wink.gif' ,
'8)' => 'icon_cool.gif' ,
'8O' => 'icon_eek.gif' ,
':(' => 'icon_sad.gif' ,
':)' => 'icon_smile.gif' ,
':?' => 'icon_confused.gif' ,
':D' => 'icon_biggrin.gif' ,
':P' => 'icon_razz.gif' ,
':o' => 'icon_surprised.gif' ,
':x' => 'icon_mad.gif' ,
':|' => 'icon_neutral.gif' ,
';)' => 'icon_wink.gif' ,
':!:' => 'icon_exclaim.gif' ,
':?:' => 'icon_question.gif' ,
);
}
2007-10-11 07:46:57 +02:00
$siteurl = get_option ( 'siteurl' );
2007-03-12 22:31:24 +01:00
foreach ( ( array ) $wpsmiliestrans as $smiley => $img ) {
2007-10-11 07:46:57 +02:00
$wp_smiliessearch [] = '/(\s|^)' . preg_quote ( $smiley , '/' ) . '(\s|$)/' ;
$smiley_masked = attribute_escape ( trim ( $smiley ) );
2007-05-02 02:32:22 +02:00
$wp_smiliesreplace [] = " <img src=' $siteurl /wp-includes/images/smilies/ $img ' alt=' $smiley_masked ' class='wp-smiley' /> " ;
2007-03-12 22:31:24 +01:00
}
}
2007-10-11 07:46:57 +02:00
2007-04-10 21:52:15 +02:00
function wp_parse_args ( $args , $defaults = '' ) {
2007-10-11 07:46:57 +02:00
if ( is_object ( $args ) )
$r = get_object_vars ( $args );
elseif ( is_array ( $args ) )
2007-04-10 21:52:15 +02:00
$r =& $args ;
2007-06-15 00:46:59 +02:00
else
wp_parse_str ( $args , $r );
2007-06-14 04:25:30 +02:00
2007-06-15 00:46:59 +02:00
if ( is_array ( $defaults ) )
2007-05-10 04:33:01 +02:00
return array_merge ( $defaults , $r );
2007-10-11 07:46:57 +02:00
return $r ;
2007-04-10 21:52:15 +02:00
}
2007-10-11 07:46:57 +02:00
2007-05-01 03:58:18 +02:00
function wp_maybe_load_widgets () {
if ( ! function_exists ( 'dynamic_sidebar' ) ) {
2007-10-11 07:46:57 +02:00
require_once ( ABSPATH . WPINC . '/widgets.php' );
2007-05-06 22:36:11 +02:00
add_action ( '_admin_menu' , 'wp_widgets_add_menu' );
2007-05-01 03:58:18 +02:00
}
2007-05-01 03:13:06 +02:00
}
2007-10-11 07:46:57 +02:00
2007-05-06 22:36:11 +02:00
function wp_widgets_add_menu () {
2007-05-03 02:52:14 +02:00
global $submenu ;
2007-05-19 06:38:51 +02:00
$submenu [ 'themes.php' ][ 7 ] = array ( __ ( 'Widgets' ), 'switch_themes' , 'widgets.php' );
2007-10-11 07:46:57 +02:00
ksort ( $submenu [ 'themes.php' ], SORT_NUMERIC );
2007-05-03 02:52:14 +02:00
}
2007-10-11 07:46:57 +02:00
2007-05-13 00:06:31 +02:00
// For PHP 5.2, make sure all output buffers are flushed
// before our singletons our destroyed.
2007-10-11 07:46:57 +02:00
function wp_ob_end_flush_all () {
2007-05-13 00:06:31 +02:00
while ( @ ob_end_flush () );
}
2007-10-11 07:46:57 +02:00
2007-10-06 10:18:33 +02:00
/*
* require_wp_db () - require_once the correct database class file .
*
* This function is used to load the database class file either at runtime or by wp - admin / setup - config . php
* We must globalise $wpdb to ensure that it is defined globally by the inline code in wp - db . php
*
* @ global $wpdb
*/
2007-10-11 07:46:57 +02:00
function require_wp_db () {
2007-10-06 10:18:33 +02:00
global $wpdb ;
2007-10-11 07:46:57 +02:00
if ( file_exists ( ABSPATH . 'wp-content/db.php' ) )
require_once ( ABSPATH . 'wp-content/db.php' );
2007-10-06 10:18:33 +02:00
else
2007-10-11 07:46:57 +02:00
require_once ( ABSPATH . WPINC . '/wp-db.php' );
2007-10-06 10:18:33 +02:00
}
2007-12-21 03:53:57 +01:00
function dead_db () {
global $wpdb ;
// Load custom DB error template, if present.
if ( file_exists ( ABSPATH . 'wp-content/db-error.php' ) ) {
require_once ( ABSPATH . 'wp-content/db-error.php' );
die ();
}
// If installing or in the admin, provide the verbose message.
if ( defined ( 'WP_INSTALLING' ) || defined ( 'WP_ADMIN' ) )
wp_die ( $wpdb -> error );
// Otherwise, be terse.
status_header ( 500 );
nocache_headers ();
header ( 'Content-Type: text/html; charset=utf-8' );
?>
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >
< html xmlns = " http://www.w3.org/1999/xhtml " < ? php if ( function_exists ( 'language_attributes' ) ) language_attributes (); ?> >
< head >
2008-01-06 20:15:33 +01:00
< meta http - equiv = " Content-Type " content = " text/html; charset=utf-8 " />
2007-12-21 03:53:57 +01:00
< title > Database Error </ title >
2008-02-05 07:47:27 +01:00
2007-12-21 03:53:57 +01:00
</ head >
< body >
< h1 > Error establishing a database connection </ h1 >
</ body >
</ html >
< ? php
die ();
}
2007-10-11 07:46:57 +02:00
2007-10-11 00:11:18 +02:00
/**
* Converts input to an absolute integer
* @ param mixed $maybeint data you wish to have convered to an absolute integer
* @ return int an absolute integer
*/
2007-10-11 07:46:57 +02:00
function absint ( $maybeint ) {
return abs ( intval ( $maybeint ) );
2007-10-11 00:11:18 +02:00
}
2007-11-17 12:21:34 +01:00
/**
* Determines if the blog can be accessed over SSL
* @ return bool whether of not SSL access is available
*/
function url_is_accessable_via_ssl ( $url )
{
if ( in_array ( 'curl' , get_loaded_extensions ())) {
$ssl = preg_replace ( '/^http:\/\//' , 'https://' , $url );
$ch = curl_init ();
curl_setopt ( $ch , CURLOPT_URL , $ssl );
curl_setopt ( $ch , CURLOPT_FAILONERROR , true );
curl_setopt ( $ch , CURLOPT_RETURNTRANSFER , true );
curl_setopt ( $ch , CURLOPT_SSL_VERIFYPEER , false );
2007-12-06 20:49:33 +01:00
curl_exec ( $ch );
2007-11-17 12:21:34 +01:00
$status = curl_getinfo ( $ch , CURLINFO_HTTP_CODE );
curl_close ( $ch );
if ( $status == 200 || $status == 401 ) {
return true ;
}
}
return false ;
}
function atom_service_url_filter ( $url )
{
if ( url_is_accessable_via_ssl ( $url ) )
return preg_replace ( '/^http:\/\//' , 'https://' , $url );
2007-11-17 12:27:01 +01:00
else
return $url ;
2007-11-17 12:21:34 +01:00
}
2007-12-21 03:53:57 +01:00
2007-12-28 22:17:42 +01:00
/**
* _deprecated_function () - Marks a function as deprecated and informs when it has been used .
*
2008-02-05 07:47:27 +01:00
* There is a hook deprecated_function_run that will be called that can be used to get the backtrace
2007-12-28 22:17:42 +01:00
* up to what file and function called the deprecated function .
*
* The current behavior is to trigger an user error if WP_DEBUG is defined and is true .
2008-02-05 07:47:27 +01:00
*
2007-12-28 22:17:42 +01:00
* This function is to be used in every function in depreceated . php
*
* @ package WordPress
* @ package Debug
2008-02-10 08:59:34 +01:00
* @ since 2.5
2007-12-28 22:17:42 +01:00
* @ access private
*
* @ uses do_action () Calls 'deprecated_function_run' and passes the function name and what to use instead .
* @ uses apply_filters () Calls 'deprecated_function_trigger_error' and expects boolean value of true to do trigger or false to not trigger error .
*
* @ param string $function The function that was called
* @ param string $version The version of WordPress that depreceated the function
* @ param string $replacement Optional . The function that should have been called
*/
function _deprecated_function ( $function , $version , $replacement = null ) {
do_action ( 'deprecated_function_run' , $function , $replacement );
// Allow plugin to filter the output error trigger
if ( defined ( 'WP_DEBUG' ) && ( true === WP_DEBUG ) && apply_filters ( 'deprecated_function_trigger_error' , true )) {
if ( ! is_null ( $replacement ) )
2008-02-27 18:19:58 +01:00
trigger_error ( printf ( __ ( " %1 $s is <strong>deprecated</strong> since version %2 $s ! Use %3 $s instead. " ), $function , $version , $replacement ) );
2007-12-28 22:17:42 +01:00
else
2008-02-27 18:19:58 +01:00
trigger_error ( printf ( __ ( " %1 $s is <strong>deprecated</strong> since version %2 $s with no alternative available. " ), $function , $version ) );
2007-12-28 22:17:42 +01:00
}
}
/**
* _deprecated_file () - Marks a file as deprecated and informs when it has been used .
*
2008-02-05 07:47:27 +01:00
* There is a hook deprecated_file_included that will be called that can be used to get the backtrace
2007-12-28 22:17:42 +01:00
* up to what file and function included the deprecated file .
*
* The current behavior is to trigger an user error if WP_DEBUG is defined and is true .
2008-02-05 07:47:27 +01:00
*
2007-12-28 22:17:42 +01:00
* This function is to be used in every file that is depreceated
*
* @ package WordPress
* @ package Debug
2008-02-10 08:59:34 +01:00
* @ since 2.5
2007-12-28 22:17:42 +01:00
* @ access private
*
* @ uses do_action () Calls 'deprecated_file_included' and passes the file name and what to use instead .
* @ uses apply_filters () Calls 'deprecated_file_trigger_error' and expects boolean value of true to do trigger or false to not trigger error .
*
* @ param string $file The file that was included
* @ param string $version The version of WordPress that depreceated the function
* @ param string $replacement Optional . The function that should have been called
*/
function _deprecated_file ( $file , $version , $replacement = null ) {
do_action ( 'deprecated_file_included' , $file , $replacement );
// Allow plugin to filter the output error trigger
if ( defined ( 'WP_DEBUG' ) && ( true === WP_DEBUG ) && apply_filters ( 'deprecated_file_trigger_error' , true )) {
if ( ! is_null ( $replacement ) )
2008-02-27 18:19:58 +01:00
trigger_error ( printf ( __ ( " %1 $s is <strong>deprecated</strong> since version %2 $s ! Use %3 $s instead. " ), $file , $version , $replacement ) );
2007-12-28 22:17:42 +01:00
else
2008-02-27 18:19:58 +01:00
trigger_error ( printf ( __ ( " %1 $s is <strong>deprecated</strong> since version %2 $s with no alternative available. " ), $file , $version ) );
2007-12-28 22:17:42 +01:00
}
}
2007-11-17 12:21:34 +01:00
?>