From 3a4570b0fc8b3d6339bef71d17d7701554e0bbf7 Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 12 Oct 2007 16:21:15 +0000 Subject: Merge with WP 2.3 - testing use only! Move pluggable functions out of wpmu-functions and into pluggable.php, fixes #439 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1069 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-admin/includes/update.php | 122 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100644 wp-admin/includes/update.php (limited to 'wp-admin/includes/update.php') diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php new file mode 100644 index 0000000..cbd0d4a --- /dev/null +++ b/wp-admin/includes/update.php @@ -0,0 +1,122 @@ +response ) { + case 'development' : + return sprintf( '| '.__( 'You are using a development version (%s). Cool! Please stay updated.' ), $GLOBALS['wp_version'], 'http://wordpress.org/download/svn/' ); + break; + + case 'upgrade' : + return sprintf( '| '.__( 'Your WordPress %s is out of date. Please update.' ).'', $GLOBALS['wp_version'], $cur->url ); + break; + + case 'latest' : + default : + return sprintf( '| '.__( 'Version %s' ), $GLOBALS['wp_version'] ); + break; + } +} +add_filter( 'update_footer', 'core_update_footer' ); + +function update_nag() { + $cur = get_option( 'update_core' ); + + if ( ! isset( $cur->response ) || $cur->response != 'upgrade' ) + return false; + + if ( current_user_can('manage_options') ) + $msg = sprintf( __('A new version of WordPress is available! Please update now.'), $cur->url ); + else + $msg = __('A new version of WordPress is available! Please notify the site administrator.'); + + echo "
$msg
"; +} +add_action( 'admin_notices', 'update_nag', 3 ); + +function wp_update_plugins() { + global $wp_version; + + if ( !function_exists('fsockopen') ) + return false; + + $plugins = get_plugins(); + $active = get_option( 'active_plugins' ); + $current = get_option( 'update_plugins' ); + + $new_option = ''; + $new_option->last_checked = time(); + + $plugin_changed = false; + foreach ( $plugins as $file => $p ) { + $new_option->checked[ $file ] = $p['Version']; + + if ( !isset( $current->checked[ $file ] ) ) { + $plugin_changed = true; + continue; + } + + if ( $current->checked[ $file ] != $p['Version'] ) + $plugin_changed = true; + } + + if ( + isset( $current->last_checked ) && + 43200 > ( time() - $current->last_checked ) && + !$plugin_changed + ) + return false; + + $to_send->plugins = $plugins; + $to_send->active = $active; + $send = serialize( $to_send ); + + $request = 'plugins=' . urlencode( $send ); + $http_request = "POST /plugins/update-check/1.0/ HTTP/1.0\r\n"; + $http_request .= "Host: api.wordpress.org\r\n"; + $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=" . get_option('blog_charset') . "\r\n"; + $http_request .= "Content-Length: " . strlen($request) . "\r\n"; + $http_request .= 'User-Agent: WordPress/' . $wp_version . '; ' . get_bloginfo('url') . "\r\n"; + $http_request .= "\r\n"; + $http_request .= $request; + + $response = ''; + if( false != ( $fs = @fsockopen( 'api.wordpress.org', 80, $errno, $errstr, 3) ) && is_resource($fs) ) { + fwrite($fs, $http_request); + + while ( !feof($fs) ) + $response .= fgets($fs, 1160); // One TCP-IP packet + fclose($fs); + $response = explode("\r\n\r\n", $response, 2); + } + + $response = unserialize( $response[1] ); + + if ( $response ) + $new_option->response = $response; + + update_option( 'update_plugins', $new_option ); +} +add_action( 'load-plugins.php', 'wp_update_plugins' ); + +function wp_plugin_update_row( $file ) { + global $plugin_data; + $current = get_option( 'update_plugins' ); + if ( !isset( $current->response[ $file ] ) ) + return false; + + $r = $current->response[ $file ]; + + echo ""; + printf( __('There is a new version of %s available. Download version %s here.'), $plugin_data['Name'], $r->url, $r->new_version ); + echo ""; +} +add_action( 'after_plugin_row', 'wp_plugin_update_row' ); +*/ +?> -- cgit