2007-08-17 12:33:52 +02:00
< ? php
2008-10-10 20:21:16 +02:00
/**
* WordPress Administration Update API
*
* @ package WordPress
* @ subpackage Admin
*/
2007-08-17 12:33:52 +02:00
2008-03-11 17:13:07 +01:00
// The admin side of our 1.1 update system
2007-08-17 12:33:52 +02:00
2008-10-31 19:51:06 +01:00
/**
* Selects the first update version from the update_core option
*
* @ return object the response from the API
*/
function get_preferred_from_update_core () {
$updates = get_core_updates ();
if ( ! is_array ( $updates ) )
return false ;
if ( empty ( $updates ) )
return ( object ) array ( 'response' => 'latest' );
return $updates [ 0 ];
}
/**
* Get available core updates
*
* @ param array $options Set $options [ 'dismissed' ] to true to show dismissed upgrades too ,
* set $options [ 'available' ] to false to skip not - dimissed updates .
* @ return array Array of the update objects
*/
function get_core_updates ( $options = array () ) {
$options = array_merge ( array ( 'available' => true , 'dismissed' => false ), $options );
$dismissed = get_option ( 'dismissed_update_core' );
if ( ! is_array ( $dismissed ) ) $dismissed = array ();
2009-02-06 19:06:20 +01:00
$from_api = get_transient ( 'update_core' );
2008-11-04 18:12:03 +01:00
if ( empty ( $from_api ) )
return false ;
2009-04-15 21:55:41 +02:00
if ( ! isset ( $from_api -> updates ) || ! is_array ( $from_api -> updates ) ) return false ;
2008-11-04 18:12:03 +01:00
$updates = $from_api -> updates ;
if ( ! is_array ( $updates ) ) return false ;
2008-10-31 19:51:06 +01:00
$result = array ();
2008-11-04 18:12:03 +01:00
foreach ( $updates as $update ) {
2008-10-31 19:51:06 +01:00
if ( array_key_exists ( $update -> current . '|' . $update -> locale , $dismissed ) ) {
if ( $options [ 'dismissed' ] ) {
$update -> dismissed = true ;
$result [] = $update ;
}
} else {
if ( $options [ 'available' ] ) {
$update -> dismissed = false ;
$result [] = $update ;
}
}
}
return $result ;
}
function dismiss_core_update ( $update ) {
$dismissed = get_option ( 'dismissed_update_core' );
$dismissed [ $update -> current . '|' . $update -> locale ] = true ;
return update_option ( 'dismissed_update_core' , $dismissed );
}
function undismiss_core_update ( $version , $locale ) {
$dismissed = get_option ( 'dismissed_update_core' );
$key = $version . '|' . $locale ;
if ( ! isset ( $dismissed [ $key ] ) ) return false ;
unset ( $dismissed [ $key ] );
return update_option ( 'dismissed_update_core' , $dismissed );
}
function find_core_update ( $version , $locale ) {
2009-02-06 19:06:20 +01:00
$from_api = get_transient ( 'update_core' );
2008-11-04 18:12:03 +01:00
if ( ! is_array ( $from_api -> updates ) ) return false ;
$updates = $from_api -> updates ;
foreach ( $updates as $update ) {
2008-10-31 19:51:06 +01:00
if ( $update -> current == $version && $update -> locale == $locale )
return $update ;
}
return false ;
}
2008-01-04 20:36:34 +01:00
function core_update_footer ( $msg = '' ) {
2007-08-30 20:21:03 +02:00
if ( ! current_user_can ( 'manage_options' ) )
2009-05-12 08:10:08 +02:00
return sprintf ( __ ( 'Version %s' ), $GLOBALS [ 'wp_version' ] );
2007-08-30 20:21:03 +02:00
2008-10-31 19:51:06 +01:00
$cur = get_preferred_from_update_core ();
2008-08-08 19:05:10 +02:00
if ( ! isset ( $cur -> current ) )
$cur -> current = '' ;
if ( ! isset ( $cur -> url ) )
$cur -> url = '' ;
2007-08-17 12:33:52 +02:00
2008-11-15 19:41:27 +01:00
if ( ! isset ( $cur -> response ) )
$cur -> response = '' ;
2007-08-17 12:33:52 +02:00
switch ( $cur -> response ) {
case 'development' :
2008-11-06 04:31:41 +01:00
return sprintf ( __ ( 'You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.' ), $GLOBALS [ 'wp_version' ], 'update-core.php' );
2007-08-17 12:33:52 +02:00
break ;
case 'upgrade' :
2008-03-11 17:13:07 +01:00
if ( current_user_can ( 'manage_options' ) ) {
2008-11-06 04:31:41 +01:00
return sprintf ( '<strong>' . __ ( '<a href="%1$s">Get Version %2$s</a>' ) . '</strong>' , 'update-core.php' , $cur -> current );
2008-03-11 17:13:07 +01:00
break ;
}
2007-08-17 12:33:52 +02:00
case 'latest' :
2007-08-30 18:25:50 +02:00
default :
2008-10-22 00:27:41 +02:00
return sprintf ( __ ( 'Version %s' ), $GLOBALS [ 'wp_version' ] );
2007-08-17 12:33:52 +02:00
break ;
}
}
add_filter ( 'update_footer' , 'core_update_footer' );
function update_nag () {
2008-11-13 22:10:53 +01:00
global $pagenow ;
if ( 'update-core.php' == $pagenow )
return ;
2008-10-31 19:51:06 +01:00
$cur = get_preferred_from_update_core ();
2007-08-20 09:01:15 +02:00
2007-08-30 20:21:03 +02:00
if ( ! isset ( $cur -> response ) || $cur -> response != 'upgrade' )
return false ;
2007-08-20 09:01:15 +02:00
2007-08-30 20:21:03 +02:00
if ( current_user_can ( 'manage_options' ) )
2008-11-06 04:31:41 +01:00
$msg = sprintf ( __ ( 'WordPress %1$s is available! <a href="%2$s">Please update now</a>.' ), $cur -> current , 'update-core.php' );
2007-08-30 20:21:03 +02:00
else
2008-08-09 00:49:35 +02:00
$msg = sprintf ( __ ( 'WordPress %1$s is available! Please notify the site administrator.' ), $cur -> current );
2007-08-30 20:21:03 +02:00
echo " <div id='update-nag'> $msg </div> " ;
2007-08-17 12:33:52 +02:00
}
2008-11-10 19:17:47 +01:00
add_action ( 'admin_notices' , 'update_nag' , 3 );
2007-08-17 12:33:52 +02:00
2008-03-11 17:13:07 +01:00
// Called directly from dashboard
function update_right_now_message () {
2008-10-31 19:51:06 +01:00
$cur = get_preferred_from_update_core ();
2008-03-11 17:13:07 +01:00
2008-10-31 05:23:17 +01:00
$msg = sprintf ( __ ( 'You are using <span class="b">WordPress %s</span>.' ), $GLOBALS [ 'wp_version' ] );
2008-03-11 17:13:07 +01:00
if ( isset ( $cur -> response ) && $cur -> response == 'upgrade' && current_user_can ( 'manage_options' ) )
2008-11-06 04:31:41 +01:00
$msg .= " <a href='update-core.php' class='button'> " . sprintf ( __ ( 'Update to %s' ), $cur -> current ? $cur -> current : __ ( 'Latest' ) ) . '</a>' ;
2008-03-11 17:13:07 +01:00
echo " <span id='wp-version-message'> $msg </span> " ;
}
2008-06-04 20:09:31 +02:00
function wp_plugin_update_row ( $file , $plugin_data ) {
2009-02-06 19:06:20 +01:00
$current = get_transient ( 'update_plugins' );
2007-08-22 12:48:48 +02:00
if ( ! isset ( $current -> response [ $file ] ) )
return false ;
$r = $current -> response [ $file ];
2009-05-11 06:50:36 +02:00
$plugins_allowedtags = array ( 'a' => array ( 'href' => array (), 'title' => array ()), 'abbr' => array ( 'title' => array ()), 'acronym' => array ( 'title' => array ()), 'code' => array (), 'em' => array (), 'strong' => array ());
$plugin_name = wp_kses ( $plugin_data [ 'Name' ], $plugins_allowedtags );
2009-05-25 01:47:49 +02:00
2008-08-04 23:01:09 +02:00
$details_url = admin_url ( 'plugin-install.php?tab=plugin-information&plugin=' . $r -> slug . '&TB_iframe=true&width=600&height=800' );
2009-06-04 04:08:34 +02:00
echo '<tr class="plugin-update-tr"><td colspan="3" class="plugin-update"><div class="update-message">' ;
2008-06-06 21:21:35 +02:00
if ( ! current_user_can ( 'update_plugins' ) )
2009-05-18 18:00:33 +02:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s Details</a>.' ), $plugin_name , esc_url ( $details_url ), esc_attr ( $plugin_name ), $r -> new_version );
2008-03-21 00:54:17 +01:00
else if ( empty ( $r -> package ) )
2009-05-18 18:00:33 +02:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s Details</a> <em>automatic upgrade unavailable for this plugin</em>.' ), $plugin_name , esc_url ( $details_url ), esc_attr ( $plugin_name ), $r -> new_version );
2008-03-21 00:43:54 +01:00
else
2009-05-18 18:00:33 +02:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%3$s">View version %4$s Details</a> or <a href="%5$s">upgrade automatically</a>.' ), $plugin_name , esc_url ( $details_url ), esc_attr ( $plugin_name ), $r -> new_version , wp_nonce_url ( 'update.php?action=upgrade-plugin&plugin=' . $file , 'upgrade-plugin_' . $file ) );
2009-05-25 01:47:49 +02:00
2009-05-05 07:19:53 +02:00
do_action ( " in_plugin_update_message- $file " , $plugin_data , $r );
2009-05-25 01:47:49 +02:00
2009-05-19 03:27:34 +02:00
echo '</div></td></tr>' ;
2007-08-22 12:48:48 +02:00
}
2008-06-04 20:09:31 +02:00
add_action ( 'after_plugin_row' , 'wp_plugin_update_row' , 10 , 2 );
2007-08-22 12:48:48 +02:00
2008-02-11 06:45:54 +01:00
function wp_update_plugin ( $plugin , $feedback = '' ) {
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
2009-04-19 21:36:28 +02:00
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ;
$upgrader = new Plugin_Upgrader ();
return $upgrader -> upgrade ( $plugin );
2008-02-11 06:45:54 +01:00
}
2008-09-26 08:43:53 +02:00
function wp_update_theme ( $theme , $feedback = '' ) {
2009-04-20 20:18:39 +02:00
2008-09-26 08:43:53 +02:00
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
2009-04-19 21:36:28 +02:00
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ;
$upgrader = new Theme_Upgrader ();
return $upgrader -> upgrade ( $theme );
2008-09-26 08:43:53 +02:00
}
2008-10-31 19:51:06 +01:00
function wp_update_core ( $current , $feedback = '' ) {
2009-04-20 20:18:39 +02:00
2008-08-09 00:49:35 +02:00
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
2009-04-19 21:36:28 +02:00
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' ;
$upgrader = new Core_Upgrader ();
return $upgrader -> upgrade ( $current );
2008-08-09 00:49:35 +02:00
}
2008-10-26 00:22:29 +02:00
function maintenance_nag () {
global $upgrading ;
if ( ! isset ( $upgrading ) )
return false ;
if ( current_user_can ( 'manage_options' ) )
2008-11-06 04:31:41 +01:00
$msg = sprintf ( __ ( 'An automated WordPress update has failed to complete - <a href="%s">please attempt the update again now</a>.' ), 'update-core.php' );
2008-10-26 00:22:29 +02:00
else
$msg = __ ( 'An automated WordPress update has failed to complete! Please notify the site administrator.' );
echo " <div id='update-nag'> $msg </div> " ;
}
add_action ( 'admin_notices' , 'maintenance_nag' );
2008-03-21 00:54:17 +01:00
?>